:root {
  --blue: #0d5bff;
  --blue-dark: #0a3fcc;
  --blue-tint: #edf3ff;
  --blue-soft: #eef4ff;
  --blue-soft-2: #dfeaff;
  --blue-border: rgba(13, 91, 255, 0.16);
  --orange: #ff7a00;
  --navy: #0b0f19;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --white: #ffffff;
  --line: #e7eaf2;
  --surface: #f7f9fd;
  --text-primary: #0b0f19;
  --text-muted: #6b7280;
  --section-surface: #f8fbff;
  --section-surface-soft: #f3f7ff;
  --radius: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 15, 25, 0.05), 0 1px 1px rgba(11, 15, 25, 0.03);
  --shadow-md: 0 12px 32px -8px rgba(13, 91, 255, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(11, 15, 25, 0.25);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(13, 91, 255, 0.04), transparent 32%),
    var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: rgba(13, 91, 255, 0.18);
  color: var(--navy);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }

.wrap { width: min(100%, 1180px); margin: 0 auto; padding: 0 24px; }
p, li, .body-copy, .card p, .footer p, .footer a, .hero-sub, .mobile-overview-content p {
  overflow-wrap: anywhere;
}
main { padding-top: 88px; }
section { position: relative; scroll-margin-top: 100px; }
.section-pad { padding: 96px 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 4vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.5rem); }
p, li, .body-copy {
  color: var(--text-muted);
  line-height: 1.8;
}
strong { color: var(--navy); }

.section-heading,
.section-head,
.page-title {
  margin-bottom: 32px;
}
.section-heading h2,
.section-head h2,
.page-title h2 {
  color: var(--navy);
  margin-bottom: 12px;
}

.eyebrow,
.service-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.why-choose-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #02070d 0%, #07121f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(13, 91, 255, 0.12), transparent 24%), radial-gradient(circle at 85% 25%, rgba(13, 91, 255, 0.08), transparent 20%);
  pointer-events: none;
}
.why-choose-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.why-choose-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--white);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.why-card {
  position: relative;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.25);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
  border-color: rgba(13, 91, 255, 0.28);
}
.why-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 3px dashed rgba(13, 91, 255, 0.18);
  border-radius: 50%;
  left: -170px;
  top: 40px;
  opacity: .45;
  pointer-events: none;
}
.why-card:nth-child(2)::before,
.why-card:nth-child(4)::before {
  border-color: rgba(255, 255, 255, 0.18);
}
.why-card:last-child::before {
  left: auto;
  right: -170px;
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.why-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.industries-focus-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}
.industries-focus-section h2 {
  font-size: clamp(32px, 4vw, 46px);
  max-width: 900px;
  margin-bottom: 48px;
  color: var(--navy);
}
.industries-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.industry-focus-card {
  background: var(--white);
  border: 1px solid rgba(13, 91, 255, 0.14);
  border-radius: 28px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.industry-focus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 91, 255, 0.24);
}
.industry-focus-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(13, 91, 255, 0.08);
}
.industry-focus-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--navy);
}
.industry-focus-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
}
.industry-focus-card strong {
  color: var(--navy);
}

@media (max-width: 1100px) {
  .industries-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .industries-focus-grid {
    grid-template-columns: 1fr;
  }
}

.web-process-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.web-process-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.web-process-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy);
}
.web-process-wrapper {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.web-process-loop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 1080px);
  height: 460px;
}
.web-process-line {
  position: absolute;
  left: 220px;
  width: 640px;
  height: 52px;
  background: linear-gradient(90deg, var(--blue), #0b0f19, #0a3fcc);
  border-radius: 40px;
}
.web-process-line-top { top: 0; }
.web-process-line-bottom { bottom: 0; }
.web-process-curve {
  position: absolute;
  top: 0;
  width: 330px;
  height: 460px;
  border: 52px solid transparent;
  border-radius: 240px;
}
.web-process-curve-left {
  left: 0;
  border-left: 52px solid #0b0f19;
  border-top: 52px solid #0b0f19;
  border-bottom: 52px solid #0a3fcc;
}
.web-process-curve-right {
  right: 0;
  border-right: 52px solid #0b0f19;
  border-top: 52px solid #0b0f19;
  border-bottom: 52px solid var(--blue);
}
.web-process-step {
  position: absolute;
  width: min(300px, 100%);
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 91, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(11, 15, 25, 0.08);
  backdrop-filter: blur(6px);
}
.web-process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(13, 91, 255, 0.1);
  pointer-events: none;
}
.web-process-step h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--navy);
}
.web-process-step p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}
.web-process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(13, 91, 255, 0.2);
  margin-bottom: 16px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.web-process-step-1 {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.web-process-step-1 .web-process-number { margin: 0 auto 16px; }
.web-process-step-2 { right: 0; top: 190px; }
.web-process-step-3 { right: 0; bottom: 60px; }
.web-process-step-4 { bottom: 0; left: 50%; transform: translateX(-50%); text-align: center; }
.web-process-step-4 .web-process-number { margin: 0 auto 16px; }
.web-process-step-5 { left: 0; bottom: 60px; }
.web-process-step-6 { left: 0; top: 190px; }

@media (max-width: 1100px) {
  .web-process-wrapper {
    min-height: auto;
    padding: 20px 0;
  }
  .web-process-loop {
    display: none;
  }
  .web-process-step {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    text-align: left;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
  }
  .web-process-step-1 .web-process-number,
  .web-process-step-4 .web-process-number {
    margin: 0 0 16px;
  }
}

@media (max-width: 1400px) {
  .why-choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-choose-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 650px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    text-align: center;
  }
  .why-card::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

h1, h2, h3, h4, .display {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}
p { color: var(--gray); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Manrope, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--orange);
}
.accent { color: var(--orange); }
.blue-text { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: 0 20px 40px -10px rgba(13, 91, 255, 0.35); }
.btn-ghost {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-arrow { transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(231, 234, 242, 0.8);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 12px 30px -20px rgba(11, 15, 25, 0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo img {
    display: block;
    width: auto;
    height: 35PX;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(13, 91, 255, 0.12));
}

.site-header.scrolled .logo img {
    height: 30px;
}

@media (max-width: 992px) {
    .logo img {
        height: 30px;
        max-width: 170px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 26px;
        max-width: 140px;
    }

    .site-header {
        padding: 10px 0;
    }
}
.nav-links { display: flex; align-items: center; gap: 22px; }

.instagram-section {
  background: linear-gradient(180deg, rgba(237, 243, 255, 0.55) 0%, rgba(255, 255, 255, 0.98) 100%);
}
.instagram-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.instagram-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 40px);
}
.instagram-heading p {
  max-width: 680px;
  font-size: 17px;
}
.instagram-feed-shell {
  min-height: 120px;
}
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.instagram-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.instagram-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.instagram-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--blue-soft);
}
.instagram-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}
.instagram-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.instagram-card-caption {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.instagram-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 700;
  color: var(--blue);
}
.instagram-card-link:hover {
  color: var(--blue-dark);
}
.instagram-loading,
.instagram-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--blue-border);
  border-radius: 24px;
  background: rgba(237, 243, 255, 0.55);
  text-align: center;
  color: var(--gray);
}
.instagram-embed-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.instagram-embed-card iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  background: var(--white);
}
.instagram-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
}
.instagram-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .instagram-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .instagram-feed {
    grid-template-columns: 1fr;
  }
}
.nav-links a { font-size: 14px; font-weight: 600; color: var(--navy); }
.nav-links a:hover { color: var(--blue); }
.nav-dropdown { position: relative; }
.nav-link-dropdown { display: inline-flex; align-items: center; gap: 6px; }
.nav-link-dropdown i { font-size: 11px; transition: transform .2s ease; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px -24px rgba(11,15,25,0.36);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-link-dropdown i,
.nav-dropdown:focus-within .nav-link-dropdown i,
.nav-dropdown.active .nav-link-dropdown i {
  transform: rotate(180deg);
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 4px;
}
.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  transition: background .2s ease, color .2s ease;
}
.social-links a:hover {
  background: rgba(13, 91, 255, 0.18);
  color: var(--blue-dark);
}
.social-links svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .social-links { display: none; }
}
.nav-toggle { display: none; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s var(--ease), opacity .35s ease, visibility .35s ease;
  pointer-events: none;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-services-trigger { display: flex; justify-content: space-between; align-items: center; position: relative; }
.mobile-services-trigger::after { 
  content: ''; 
  display: inline-block; 
  width: 8px; 
  height: 8px; 
  border-right: 2px solid var(--navy); 
  border-bottom: 2px solid var(--navy); 
  transform: rotate(-45deg) translateY(-2px); 
  transition: transform 0.3s ease; 
  margin-left: 8px; 
}
.mobile-services-trigger.active::after { transform: rotate(135deg) translateY(2px); }
.mobile-services { display: none; flex-direction: column; gap: 4px; margin: 0 0 6px 12px; }
.mobile-services.active { display: flex; }
.mobile-services a { padding: 8px 0; border: 0; font-size: 13px; font-weight: 600; color: var(--navy); }
.mobile-services a:hover { color: var(--blue); }

.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 14, 35, 0.88) 0%, rgba(13, 91, 255, 0.8) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 24, 0.92) 0%, rgba(4, 10, 24, 0.65) 50%, rgba(4, 10, 24, 0.4) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { font-size: clamp(34px, 4.5vw, 56px); margin-bottom: 20px; color: var(--white); }
.hero-sub { font-size: 18px; margin-bottom: 28px; max-width: 560px; color: rgba(255,255,255,0.9); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 24px; }
.hstat b { display: block; font-size: 25px; font-family: Manrope, sans-serif; color: var(--white); }
.hstat span { color: rgba(255,255,255,0.8); font-size: 13px; }
.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 244, 255, 0.95) 100%);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  border: 1px solid var(--blue-border);
  box-shadow: 0 22px 56px -24px rgba(13, 91, 255, 0.28);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.hero-card.hero-visual {
  display: none;
}
.hero-card .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card .mini-card { padding: 16px; border-radius: 18px; background: var(--surface); }
.hero-card .mini-card strong { display: block; margin-bottom: 4px; }

.page-hero {
  padding: 110px 0 44px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.08) 0%, #ffffff 90%);
}
.page-hero h1 { font-size: clamp(30px, 3.8vw, 44px); margin-bottom: 16px; }
.page-hero p { font-size: 17px; max-width: 720px; }

.page-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px -20px rgba(13, 91, 255, 0.2);
}

.page-hero-ai {
  padding: 120px 0 44px;
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.12) 0%, #ffffff 90%);
}

.page-hero-ai .page-hero-container {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 91, 255, 0.12);
  box-shadow: 0 32px 80px -42px rgba(13, 91, 255, 0.28);
  border-radius: 32px;
  padding: 40px;
  align-items: center;
}

.page-hero-ai .hero-copy h1 {
  color: var(--navy);
  font-size: clamp(36px, 4.8vw, 60px);
  margin-bottom: 20px;
  max-width: 720px;
}

.page-hero-ai .hero-copy p {
  color: var(--gray);
  font-size: 18px;
  max-width: 620px;
  margin-top: 24px;
}

.page-hero-ai .hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.mobile-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 56px;
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url("../images/Mobile Application (2).png") center center/cover no-repeat;
  overflow: hidden;
}

.mobile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 24, 0.72) 0%, rgba(4, 10, 24, 0.22) 70%, rgba(4, 10, 24, 0.1) 100%);
}

.mobile-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 46px 44px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
}

.mobile-hero-content h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 62px);
  margin-bottom: 20px;
  max-width: 820px;
}

.mobile-hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 28px;
}

.mobile-hero .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: transform .3s ease, background .3s ease;
}

.mobile-hero .hero-btn:hover {
  background: #ff9c2b;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .mobile-hero {
    min-height: 640px;
    padding-bottom: 36px;
  }

  .mobile-hero-content {
    padding: 32px 24px;
  }
}

/* AI motion and visual polish for page-wide sections */
.hero,
.page-hero,
.page-hero-ai,
.mobile-hero,
.section-pad,
.services-section,
.why-choose-section,
.industry-focus-section {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero-ai::before,
.mobile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(13, 91, 255, 0.18), transparent 20%),
    radial-gradient(circle at 82% 16%, rgba(255, 122, 0, 0.12), transparent 18%);
  pointer-events: none;
  opacity: 0.75;
  mix-blend-mode: screen;
}

.hero::after,
.page-hero-ai::after,
.mobile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 48%, rgba(255, 255, 255, 0.05));
  transform: translateX(-100%);
  animation: shineSlide 12s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes shineSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.9; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-4px) scale(1.01); }
}

.page-hero-image,
.hero-card,
.ai-service-card,
.service-card,
.job-card,
.faq-card,
.contact-left,
.contact-right {
  will-change: transform, box-shadow;
}

.page-hero-image {
  animation: floatSoft 12s ease-in-out infinite;
}

.ai-service-card,
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.ai-service-card::before,
.service-card::before,
.job-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(13, 91, 255, 0.12), transparent 30%);
  mix-blend-mode: screen;
}

.ai-service-card {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.ai-service-card:hover,
.service-card:hover,
.job-card:hover,
.faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(13, 91, 255, 0.18);
}

.ai-service-card .ai-service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.58) 100%);
  color: #ffffff;
  z-index: 1;
}

.ai-service-card h3,
.ai-service-card p,
.service-card h3,
.service-card p,
.job-card h3,
.job-card p,
.faq-card h3,
.faq-card p {
  position: relative;
  z-index: 1;
}

.card,
.ai-service-card,
.service-card,
.job-card,
.faq-card {
  animation: pulseGlow 18s ease-in-out infinite;
}

.section-heading::after,
.section-head::after,
.page-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.section-pad [data-reveal],
.page-hero [data-reveal],
.mobile-hero [data-reveal],
.why-choose-section [data-reveal],
.industries-focus-section [data-reveal] {
  transition-duration: 0.85s;
  transition-timing-function: var(--reveal-ease);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .page-hero-ai::after,
  .mobile-hero::after,
  .page-hero-image,
  .hero-card,
  .ai-service-card,
  .service-card,
  .job-card,
  .faq-card {
    animation: none !important;
  }
}

@media (max-width: 680px) {
  .mobile-hero {
    min-height: 560px;
  }

  .mobile-hero-content h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .mobile-hero-content p {
    font-size: 16px;
  }
}

.page-hero-dynamics {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 55px;
  background: url("../images/Dynamics.png") center center/cover no-repeat;
  overflow: hidden;
}

.page-hero-dynamics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 36, 0.68);
}

.page-hero-dynamics .hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: auto;
  padding: 48px 42px 56px;
  border-radius: 32px;
  background: rgba(12, 44, 112, 0.24);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero-dynamics .hero-content span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero-dynamics .hero-content h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 920px;
}

.page-hero-dynamics .hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-hero-dynamics .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  transition: transform .3s ease, background .3s ease;
}

.page-hero-dynamics .hero-btn:hover {
  background: #ff9c2b;
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .page-hero-dynamics {
    min-height: 640px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-hero-dynamics {
    padding: 48px 0 32px;
    min-height: 560px;
  }

  .page-hero-dynamics .hero-content {
    padding: 28px 22px 32px;
    border-radius: 24px;
  }

  .page-hero-dynamics .hero-content h1 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .page-hero-dynamics .hero-btn {
    width: fit-content;
    font-size: 15px;
    padding: 14px 28px;
  }
}

.floating-btn {
  position: fixed;
  right: 20px;
  top: 45%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 18px 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  z-index: 999;
  box-shadow: 0 20px 50px rgba(13, 91, 255, 0.22);
}

.floating-btn:hover {
  background: var(--blue-dark);
}

.overview-section {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.05) 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}

.overview-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.overview-content p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.9;
  max-width: 660px;
  margin-bottom: 32px;
}

.overview-content h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 24px;
  max-width: 680px;
}

.skills {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.skills li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--navy);
}

.skills li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.skills strong {
  color: var(--navy);
}

.overview-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.tech-stack {
  padding: 112px 0 80px;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.04) 0%, #ffffff 100%);
}

.tech-stack-head {
  max-width: 840px;
  margin-bottom: 52px;
}

.tech-stack-head h2 {
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 60px);
  margin-bottom: 20px;
  max-width: 720px;
}

.tech-stack-head p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

/* Insightful Analytics Method section */
.analytics-method {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13,91,255,0.04) 0%, #ffffff 100%);
}
.analytics-method::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  width: 720px;
  height: 720px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,91,255,0.18) 0%, rgba(13,91,255,0.08) 28%, rgba(255,255,255,0) 68%);
  pointer-events: none;
}
.analytics-method-inner {
  position: relative;
  z-index: 1;
}
.analytics-method .section-title {
  max-width: 420px;
  margin-bottom: 48px;
}
.analytics-method .section-title h2 {
  color: var(--navy);
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.05;
  margin: 18px 0 14px;
}
.analytics-method .section-title .body-copy {
  max-width: 620px;
  color: var(--gray);
}
.analytics-method-grid {
  position: relative;
  min-height: 960px;
}
.analytics-method .beam {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 300px;
  height: 700px;
  transform: translateX(-50%);
}
.analytics-method .beam-shape {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 100%, 0 100%);
  background: linear-gradient(to bottom, rgba(13,91,255,0.9), rgba(13,91,255,0.65), rgba(10,63,204,0.9));
  opacity: 0.95;
  filter: drop-shadow(0 20px 30px rgba(13,91,255,0.25));
}
.analytics-method .ring {
  position: absolute;
  left: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  transform: translateX(-50%);
}
.analytics-method .ring1 { width: 80px; height: 22px; top: 70px; }
.analytics-method .ring2 { width: 120px; height: 32px; top: 135px; }
.analytics-method .ring3 { width: 170px; height: 42px; top: 210px; }
.analytics-method .ring4 { width: 220px; height: 54px; top: 295px; }
.analytics-method .ring5 { width: 270px; height: 68px; top: 395px; }
.analytics-method .ring6 { width: 320px; height: 82px; top: 510px; }
.analytics-method .core {
  position: absolute;
  left: 50%;
  top: 440px;
  transform: translate(-50%, -50%);
}
.analytics-method .center-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--white);
  border: 12px solid var(--blue);
  box-shadow: 0 0 35px rgba(13,91,255,0.25), 0 0 80px rgba(13,91,255,0.12);
}
.analytics-method .orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(13,91,255,0.25);
}
.analytics-method .o1 { width: 190px; height: 190px; left: -20px; top: -20px; }
.analytics-method .o2 { width: 240px; height: 240px; left: -45px; top: -45px; }
.analytics-method .o3 { width: 290px; height: 290px; left: -70px; top: -70px; }
.analytics-method .o4 { width: 340px; height: 340px; left: -95px; top: -95px; }
.analytics-method .step {
  position: absolute;
  width: 340px;
}
.analytics-method .step .content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.analytics-method .step .content p {
  color: var(--gray);
  line-height: 1.75;
  font-size: 15px;
}
.analytics-method .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
}
.analytics-method .s1 { left: 120px; top: 90px; }
.analytics-method .s1 .dot { right: -48px; top: 25px; }
.analytics-method .s2 { left: 180px; top: 330px; }
.analytics-method .s2 .dot { right: -48px; top: 35px; }
.analytics-method .s3 { left: 220px; top: 560px; }
.analytics-method .s3 .dot { right: -48px; top: 35px; }
.analytics-method .s4 { left: 270px; top: 810px; }
.analytics-method .s4 .dot { right: -48px; top: 35px; }
.analytics-method .s5 { right: 250px; top: 70px; }
.analytics-method .s5 .dot { left: -48px; top: 35px; }
.analytics-method .s6 { right: 180px; top: 320px; }
.analytics-method .s6 .dot { left: -48px; top: 35px; }
.analytics-method .s7 { right: 120px; top: 560px; }
.analytics-method .s7 .dot { left: -48px; top: 35px; }
.analytics-method .s8 { right: 60px; top: 800px; }
.analytics-method .s8 .dot { left: -48px; top: 35px; }

@media (max-width: 1100px) {
  .analytics-method .analytics-method-grid {
    min-height: 1200px;
  }
  .analytics-method .s1,
  .analytics-method .s2,
  .analytics-method .s3,
  .analytics-method .s4,
  .analytics-method .s5,
  .analytics-method .s6,
  .analytics-method .s7,
  .analytics-method .s8 {
    position: static;
    width: auto;
    margin-bottom: 28px;
  }
  .analytics-method .dot {
    display: none;
  }
  .analytics-method .beam,
  .analytics-method .core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 32px;
  }
  .analytics-method .beam {
    width: 220px;
    height: 520px;
  }
  .analytics-method .ring1 { top: 40px; }
  .analytics-method .ring2 { top: 90px; }
  .analytics-method .ring3 { top: 150px; }
  .analytics-method .ring4 { top: 210px; }
  .analytics-method .ring5 { top: 280px; }
  .analytics-method .ring6 { top: 360px; }
  .analytics-method .core { margin-top: -120px; }
}

.card-body h4 { margin: 0 0 6px; color: var(--navy); font-size: 1.05rem; }
.card-body p { margin: 0; color: var(--gray); }
.insight-visual {
  width: 100%;
  max-width: 460px;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,91,255,0.04);
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(237,243,255,0.9));
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.insight-visual-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13,91,255,0.08);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}
.insight-visual-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95), rgba(13,91,255,0.15));
  border: 10px solid rgba(13,91,255,0.12);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.8), 0 24px 45px rgba(13,91,255,0.12);
}
.insight-visual-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.insight-visual-stats span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(13,91,255,0.08);
}
.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(13,91,255,0.08);
}
.insight-footer p {
  margin: 0;
  color: var(--gray);
}

@media (max-width: 1000px) {
  .insight-header { flex-direction: column; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-right { order: -1; }
  .insight-visual { min-height: 280px; }
  .insight-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .insight-shell { padding: 22px; }
  .insight-visual-circle { width: 140px; height: 140px; }
}

/* Analytics Across Domains section */
.domains-section {
  background: linear-gradient(180deg, #ffffff 0%, rgba(237,243,255,0.6) 100%);
  border-top: 1px solid var(--line);
}
.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.domain-card {
  padding: 36px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(13,91,255,0.09);
  box-shadow: 0 18px 50px rgba(13,91,255,0.06), inset 0 1px 0 0 rgba(255,255,255,0.5);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s ease;
}
.domain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(13,91,255,0.12), inset 0 1px 0 0 rgba(255,255,255,0.5);
  border-color: rgba(13,91,255,0.16);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.domain-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13,91,255,0.14), rgba(13,91,255,0.06));
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 36px;
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.6), 0 12px 30px rgba(13,91,255,0.1);
  transition: transform 0.3s var(--ease);
}
.domain-card:hover .domain-icon {
  transform: scale(1.05);
}
.domain-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.domain-card p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .domains-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .domains-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .domain-card {
    padding: 24px 18px;
  }
  .domain-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
  .domain-card h3 {
    font-size: 1.1rem;
  }
}
/* Page-wide Data Analytics polish */
.analytics-section {
  padding: 120px 0 64px;
  background: linear-gradient(90deg, rgba(13,91,255,0.03) 0%, rgba(255,255,255,0.98) 100%);
  border-bottom: 1px solid var(--line);
}
.analytics-section .overlay-card {
  max-width: 760px;
  padding: 48px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.98));
  border: 1px solid rgba(13,91,255,0.07);
  box-shadow: 0 24px 60px -20px rgba(13,91,255,0.12);
}
.analytics-section .overlay-card h1 { margin-top: 6px; margin-bottom: 14px; }

.mobile-overview-section { padding: 72px 0; }
.mobile-overview-container { display: grid; grid-template-columns: 1fr 520px; gap: 36px; align-items: center; }
.mobile-overview-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.mobile-overview-content h2 { margin-top: 12px; margin-bottom: 18px; }
.mobile-feature-list li { margin-bottom: 12px; }

.data-driven-section { padding: 88px 0; }
.data-grid { display: grid; grid-template-columns: 1fr 420px 1fr; gap: 32px; align-items: center; }
.data-list { display: grid; gap: 18px; }
.data-item { display: flex; gap: 16px; align-items: flex-start; }
.badge { min-width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(180deg, var(--blue), var(--blue-dark)); color: var(--white); display: grid; place-items: center; font-weight: 800; box-shadow: 0 18px 40px rgba(13,91,255,0.12); font-size: 18px; }
.data-copy h4 { margin: 0 0 6px; color: var(--navy); font-size: 1.05rem; }
.data-copy p { margin: 0; color: var(--gray); }

.data-pillars { display: flex; align-items: center; justify-content: center; }
.pillar-visual { width: 100%; max-width: 420px; height: 360px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 50%, rgba(13,91,255,0.06), transparent 20%), linear-gradient(180deg, #ffffff 0%, rgba(237,243,255,0.8) 100%); border: 1px solid rgba(13,91,255,0.06); box-shadow: var(--shadow-sm); }
.pillar-visual .sphere { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(180deg, var(--blue), var(--blue-dark)); box-shadow: 0 20px 50px rgba(13,91,255,0.18); border: 4px solid rgba(255,255,255,0.9); }

@media (max-width: 1100px) {
  .data-grid { grid-template-columns: 1fr; gap: 22px; }
  .pillar-visual { height: 260px; }
}

.card { background: var(--white); border: 1px solid var(--line); padding: 26px; border-radius: 16px; box-shadow: var(--shadow-sm); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }

@media (max-width: 1000px) {
  .mobile-overview-container { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.logo-card {
  min-height: 160px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(234, 242, 255, 0.98) 100%);
  border: 1px solid rgba(13, 91, 255, 0.16);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 18px 48px rgba(13, 91, 255, 0.10);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 91, 255, 0.08) 0%, rgba(255, 140, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}

.logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 91, 255, 0.26);
  box-shadow: 0 28px 68px rgba(13, 91, 255, 0.16);
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}

.logo-card:hover::before {
  opacity: 1;
}

.logo-card span {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.second-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.tech-stack .btn-primary {
  padding: 16px 34px;
}

.mobile-overview-section {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.04) 0%, #ffffff 100%);
}

.mobile-overview-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.mobile-overview-content p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 660px;
}

.mobile-overview-content h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.8vw, 40px);
  margin-bottom: 24px;
}

.mobile-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.ecommerce-why {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(13,91,255,0.04) 0%, #ffffff 100%);
}

.ecommerce-why .section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.ecommerce-why .section-heading h2 {
  color: var(--navy);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.ecommerce-why .why-wrapper {
  display: grid;
  grid-template-columns: 1fr 520px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  min-height: 900px;
}

.ecommerce-why .left-side,
.ecommerce-why .right-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 850px;
}

.ecommerce-why .feature {
  max-width: 340px;
  min-height: 220px;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(13,91,255,0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ecommerce-why .left-side .feature {
  margin-left: auto;
  text-align: left;
}

.ecommerce-why .right-side .feature {
  margin-right: auto;
  text-align: left;
}

.ecommerce-why .feature h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.ecommerce-why .feature p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
}

.ecommerce-why .feature:hover {
  transform: translateY(-8px);
  border-color: rgba(13,91,255,0.24);
}

.ecommerce-why .feature:hover h3 {
  color: var(--blue);
}

.ecommerce-why .center-pyramid {
  position: relative;
  width: 520px;
  height: 620px;
  margin: auto;
}

.ecommerce-why .line {
  position: absolute;
  border-top: 2px dashed rgba(13,91,255,0.32);
}

.ecommerce-why .line::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
}

.ecommerce-why .line1 {
  width: 190px;
  top: 95px;
  left: calc(50% - 260px);
}

.ecommerce-why .line1::after {
  right: -5px;
  top: -6px;
}

.ecommerce-why .line2 {
  width: 230px;
  top: 295px;
  left: calc(50% - 300px);
}

.ecommerce-why .line2::after {
  right: -5px;
  top: -6px;
}

.ecommerce-why .line3 {
  width: 180px;
  top: 500px;
  left: calc(50% - 240px);
}

.ecommerce-why .line3::after {
  right: -5px;
  top: -6px;
}

.ecommerce-why .line4 {
  width: 160px;
  top: 785px;
  left: calc(50% - 180px);
}

.ecommerce-why .line4::after {
  right: -5px;
  top: -6px;
}

.ecommerce-why .line5 {
  width: 190px;
  top: 110px;
  right: calc(50% - 260px);
}

.ecommerce-why .line5::after {
  left: -5px;
  top: -6px;
}

.ecommerce-why .line6 {
  width: 230px;
  top: 355px;
  right: calc(50% - 300px);
}

.ecommerce-why .line6::after {
  left: -5px;
  top: -6px;
}

.ecommerce-why .line7 {
  width: 180px;
  top: 620px;
  right: calc(50% - 240px);
}

.ecommerce-why .line7::after {
  left: -5px;
  top: -6px;
}

.ecommerce-why .line8 {
  width: 160px;
  top: 820px;
  right: calc(50% - 180px);
}

.ecommerce-why .line8::after {
  left: -5px;
  top: -6px;
}

.ecommerce-why .feature1 { margin-top: 0; }
.ecommerce-why .feature2 { margin-top: 10px; }
.ecommerce-why .feature3 { margin-top: 20px; }
.ecommerce-why .feature4 { margin-top: 30px; }
.ecommerce-why .feature5 { margin-top: 0; }
.ecommerce-why .feature6 { margin-top: 40px; }
.ecommerce-why .feature7 { margin-top: 50px; }
.ecommerce-why .feature8 { margin-top: 40px; }

@media (max-width: 1200px) {
  .ecommerce-why .why-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ecommerce-why .left-side,
  .ecommerce-why .right-side {
    height: auto;
    gap: 40px;
    align-items: center;
  }

  .ecommerce-why .left-side .feature,
  .ecommerce-why .right-side .feature {
    margin: auto;
  }

  .ecommerce-why .line {
    display: none;
  }

  .ecommerce-why .center-pyramid {
    order: -1;
    margin: 60px auto;
  }

  .ecommerce-why .section-heading h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .ecommerce-why .section-heading h2 {
    font-size: clamp(1.75rem, 6vw, 2.6rem);
  }

  .ecommerce-why .feature h3 {
    font-size: 20px;
  }

  .ecommerce-why .feature p {
    font-size: 15px;
  }

  .ecommerce-why .center-pyramid {
    width: 340px;
    height: 420px;
  }
}

.mobile-feature-list li {
  position: relative;
  padding-left: 26px;
    color: var(--navy);
  font-size: 16px;
  line-height: 1.8;
}

.mobile-feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-size: 24px;
}

.mobile-feature-list strong {
  color: var(--navy);
}

.mobile-overview-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.mobile-overview-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(243,247,255,1) 100%);
  border: 1px solid rgba(13,91,255,0.12);
  border-radius: 32px;
  padding: 96px 0;
}

.mobile-overview-container {
  align-items: center;
}

.mobile-overview-content {
  max-width: 620px;
}

.mobile-overview-content p {
  margin-bottom: 24px;
}

.mobile-feature-list li {
  position: relative;
  padding: 18px 20px 18px 28px;
  border-radius: 18px;
  background: rgba(13,91,255,0.05);
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.8;
}

.mobile-feature-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .mobile-overview-container {
    grid-template-columns: 1fr;
  }

  .mobile-overview-image img {
    min-height: 360px;
  }
}

/* Data-Driven Success section */
.data-driven-section{
  padding:96px 0;
  background: linear-gradient(180deg, #010914 0%, #07121f 100%);
  color:var(--white);
}
.data-driven-section .section-head h2{ color:var(--white); margin-bottom:28px; text-align:center; }
.data-grid{ display:grid; grid-template-columns: 1fr 520px 1fr; gap:28px; align-items:center; }
.data-list{ display:flex; flex-direction:column; gap:34px; }
.data-item{ display:flex; gap:18px; align-items:flex-start; max-width:420px; }
.badge{ width:44px; height:44px; border-radius:50%; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color:var(--white); display:grid; place-items:center; font-weight:800; box-shadow:0 8px 20px rgba(13,91,255,0.18); flex:0 0 44px; }
.data-copy h4{ margin:0 0 6px 0; color:var(--white); font-size:20px; }
.data-copy p{ margin:0; color:rgba(255,255,255,0.78); line-height:1.6; }

.data-pillars{ display:grid; place-items:center; min-height:460px; position:relative; }
.pillar{ position:relative; display:inline-block; background: linear-gradient(180deg, rgba(2,18,28,0.95), rgba(2,18,28,0.8)); box-shadow: 0 30px 60px rgba(2,8,12,0.6); border-radius:8px; }
.p1{ width:92px; height:420px; background: linear-gradient(180deg, #0b3f44, #06323a); margin-left:40px; }
.p2{ width:140px; height:500px; background: linear-gradient(180deg, #0f544b, #07403a); margin:0 12px; }
.p3{ width:110px; height:360px; background: linear-gradient(180deg, #0b3f44, #06323a); margin-right:40px; }
.pillar::before{ content:""; position:absolute; left:0; right:0; top:-18px; height:18px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)); border-top-left-radius:8px; border-top-right-radius:8px; }
.sphere{ width:78px; height:78px; border-radius:50%; background: radial-gradient(circle at 30% 25%, rgba(13,191,255,0.9), rgba(8,63,80,1)); position:absolute; top: -64px; box-shadow: 0 18px 44px rgba(13,91,255,0.18); }

@media (max-width:1100px){
  .data-grid{ grid-template-columns:1fr; gap:24px; }
  .data-pillars{ min-height:360px; }
  .data-item{ align-items:center; text-align:center; margin:0 auto; }
  .data-list{ align-items:center; }
}

@media (max-width:680px){
  .data-driven-section{ padding:64px 0; }
  .p2{ height:360px; }
  .p1{ height:300px; }
  .p3{ height:240px; }
  .sphere{ top:-54px; }
}

.staff-models-section {
  padding: 24px 0 96px;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.04) 0%, #ffffff 100%);
}

.staff-models-section .section-head {
  margin-bottom: 36px;
  text-align: center;
}

.staff-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.staff-model-card {
  background: linear-gradient(145deg, #f9fbff 0%, #eef4ff 100%);
  border: 1px solid var(--blue-border);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.staff-model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.staff-model-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--navy);
}

.staff-model-card p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) {
  .staff-models-grid {
    grid-template-columns: 1fr;
  }

  .staff-model-card {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .staff-models-section {
    padding: 16px 0 72px;
  }

  .staff-model-card {
    padding: 28px 22px;
  }
}

.partner-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #030711 0%, #07101f 55%, #041625 100%);
  color: #ffffff;
}

.partner-heading {
  text-align: center;
  margin-bottom: 56px;
}

.partner-heading .eyebrow {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.partner-heading h2 {
  font-size: clamp(32px, 3.8vw, 50px);
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  align-items: center;
  gap: 28px;
}

.partner-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.partner-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 22px;
  backdrop-filter: blur(10px);
}

.partner-item h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 10px;
}

.partner-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.partner-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-ring-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue) 0%, #1fc8d7 100%);
  box-shadow: 0 0 0 14px rgba(13, 91, 255, 0.2), 0 0 40px rgba(31, 200, 215, 0.18);
}

.partner-ring-right {
  background: linear-gradient(135deg, #b38228 0%, #1ec8d7 100%);
  box-shadow: 0 0 0 14px rgba(42, 176, 106, 0.2), 0 0 40px rgba(12, 74, 80, 0.16);
}

.partner-arrow {
  font-size: 72px;
  color: #2dd8e7;
  font-weight: 700;
  animation: partnerPulse 1.6s infinite;
}

@keyframes partnerPulse {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(10px); opacity: 1; }
}

@media (max-width: 1100px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partner-center {
    order: -1;
  }

  .partner-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 680px) {
  .partner-section {
    padding: 72px 0;
  }

  .partner-ring {
    width: 150px;
    height: 150px;
    font-size: 20px;
  }

  .partner-item {
    padding: 20px 18px;
  }
}

.allocation-process {
  padding: 96px 0 112px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.allocation-title {
  text-align: center;
  margin-bottom: 56px;
}

.allocation-title .eyebrow {
  margin-bottom: 12px;
}

.allocation-title h2 {
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--navy);
  margin-bottom: 16px;
}

.allocation-title p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
}

.allocation-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 28px;
  align-items: center;
}

.allocation-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.allocation-left {
  align-items: flex-end;
  text-align: right;
}

.allocation-right {
  align-items: flex-start;
  text-align: left;
}

.allocation-box {
  background: #ffffff;
  border: 1px solid rgba(13, 91, 255, 0.14);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.allocation-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, #29b7eb 100%);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}

.allocation-box h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.allocation-box p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.allocation-center {
  display: flex;
  justify-content: center;
}

.allocation-hexagon {
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--blue) 0%, #0b2b55 100%);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 0 45px rgba(13, 91, 255, 0.2);
}

@media (max-width: 1100px) {
  .allocation-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .allocation-left,
  .allocation-right {
    align-items: stretch;
    text-align: left;
  }

  .allocation-center {
    order: -1;
  }
}

@media (max-width: 680px) {
  .allocation-process {
    padding: 72px 0 88px;
  }

  .allocation-box {
    padding: 22px 18px;
  }

  .allocation-hexagon {
    width: 200px;
    height: 200px;
    font-size: 20px;
  }
}

.expertise-section {
  padding: 112px 0 96px;
  background: linear-gradient(135deg, #030711 0%, #07101f 55%, #041625 100%);
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -220px;
  transform: translateX(-50%);
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 91, 255, 0.85) 0%, rgba(13, 91, 255, 0.28) 38%, rgba(255,255,255,0.12) 42%, transparent 62%);
  opacity: 0.95;
}

.expertise-section h2 {
  color: var(--white);
  text-align: center;
  font-size: clamp(32px, 4.1vw, 48px);
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
}

.expertise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.expertise-item {
  padding: 28px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.expertise-item h3 {
  color: #7bdcff;
  font-size: 22px;
  margin-bottom: 10px;
}

.expertise-item p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 780px) {
  .expertise-section {
    padding: 72px 0 60px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

.process-section {
  padding: 112px 0 96px;
  background: linear-gradient(135deg, #030711 0%, #07101f 48%, #041625 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-section .wrap {
  position: relative;
  z-index: 1;
  padding: 30px 24px;
  border-radius: 32px;
  background: rgba(2, 8, 20, 0.7);
  border: 1px solid rgba(123, 220, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 26px 60px rgba(3, 7, 17, 0.3);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(13, 91, 255, 0.16) 0%, transparent 38%);
  pointer-events: none;
}

.process-intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.process-intro .eyebrow {
  margin-bottom: 14px;
}

.process-intro h2 {
  text-align: center;
  font-size: clamp(34px, 4.4vw, 50px);
  margin-bottom: 16px;
  color: #f6fbff;
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 18px rgba(13, 91, 255, 0.16);
}

.process-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 242, 255, 0.86);
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(123, 220, 255, 0.9), rgba(13, 91, 255, 0.2));
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  position: relative;
}

.process-step-number {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.95) 0%, rgba(123, 220, 255, 0.95) 100%);
  color: #04111f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-step-content {
  padding-top: 2px;
}

.process-step-content h3 {
  color: #dff6ff;
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 700;
}

.process-step-content p {
  color: rgba(235, 243, 255, 0.86);
  font-size: 14px;
  line-height: 1.7;
  max-width: 700px;
}

@media (max-width: 980px) {
  .process-flow {
    gap: 10px;
  }

  .process-step-content h3 {
    font-size: 16px;
  }

  .process-step-content p {
    font-size: 13px;
  }
}

.closing-section {
  padding: 0 0 96px;
}

.closing-card {
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.12) 0%, rgba(7, 18, 36, 0.96) 100%);
  border: 1px solid rgba(123, 220, 255, 0.2);
  border-radius: 28px;
  padding: 42px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(3, 7, 17, 0.24);
}

.closing-card h3 {
  color: #f6fbff;
  font-size: clamp(26px, 3.2vw, 34px);
  margin-bottom: 14px;
}

.closing-card p {
  color: rgba(235, 243, 255, 0.9);
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 24px;
}

.workflow-section {
  padding: 112px 0 96px;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.05) 0%, #ffffff 100%);
}

.workflow-head {
  max-width: 860px;
  margin-bottom: 56px;
}

.workflow-head h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.workflow-head p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
}

.workflow-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 91, 255, 0.12);
  box-shadow: 0 16px 40px rgba(13, 91, 255, 0.08);
}

.workflow-step p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  min-height: 110px;
}

.workflow-circle {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  box-shadow: 0 18px 46px rgba(13, 91, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.workflow-circle::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.workflow-circle.large {
  width: 154px;
  height: 154px;
}

.workflow-arrow {
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
  background: rgba(13, 91, 255, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.erp-industries {
  padding: 112px 0 96px;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.03) 0%, #ffffff 100%);
}

.erp-industries-head {
  max-width: 860px;
  margin-bottom: 48px;
}

.erp-industries-head h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.erp-industries-head p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
}

.erp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.erp-card {
  background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(13, 91, 255, 0.14);
  border-radius: 24px;
  padding: 32px 24px;
  min-height: 280px;
  box-shadow: 0 16px 44px rgba(13, 91, 255, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.erp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 91, 255, 0.14);
}

.erp-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.14) 0%, rgba(13, 91, 255, 0.06) 100%);
  color: var(--blue);
  font-size: 22px;
  border: 1px solid rgba(13, 91, 255, 0.16);
}

.erp-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
}

.erp-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .workflow-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-arrow {
    display: none;
  }

  .erp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .workflow-section {
    padding: 72px 0 60px;
  }

  .workflow-head p {
    font-size: 16px;
  }

  .workflow-step p {
    min-height: auto;
  }

  .erp-industries {
    padding: 72px 0 60px;
  }

  .erp-grid {
    grid-template-columns: 1fr;
  }

  .erp-card {
    min-height: auto;
  }
}

@media (max-width: 1100px) {
  .workflow-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-arrow {
    display: none;
  }
}

@media (max-width: 780px) {
  .workflow-section {
    padding: 72px 0 60px;
  }

  .workflow-head p {
    font-size: 16px;
  }

  .workflow-step p {
    min-height: auto;
  }
}

@media (max-width: 1100px) {
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .tech-stack {
    padding: 72px 0 56px;
  }

  .tech-stack-head h2 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .second-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .overview-container {
    grid-template-columns: 1fr;
  }

  .overview-image img {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .overview-section {
    padding: 72px 0;
  }

  .overview-content p {
    font-size: 16px;
  }

  .overview-content h2 {
    font-size: 30px;
  }

  .skills li {
    font-size: 15px;
  }
}

.ai-catalyst-section {
  padding: 112px 0 96px;
  background: linear-gradient(180deg, #031827 0%, #042a3b 100%);
  color: var(--white);
}

.ai-catalyst-title {
  text-align: center;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--white);
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ai-catalyst-grid {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-catalyst-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle, rgba(13,91,255,0.06) 0%, rgba(255,255,255,0) 60%);
  box-shadow: 0 20px 60px rgba(2,45,75,0.25), inset 0 0 40px rgba(13, 91, 255, 0.06);
}

.ring-1 { transform: scale(1); }
.ring-2 { transform: scale(0.72); }
.ring-3 { transform: scale(0.46); }
.ring-4 { transform: scale(0.24); }

.orbit-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 28px rgba(13, 91, 255, 0.5), 0 0 8px rgba(13, 91, 255, 0.25);
}

.ai-catalyst-item {
  position: absolute;
  width: min(320px, 92%);
  text-align: center;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(4,20,36,0.6);
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 18px 40px -20px rgba(2,45,75,0.6);
}

.ai-catalyst-item h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.ai-catalyst-item p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}

.top-item { top: 0; left: 50%; transform: translateX(-50%); }
.left-item { left: 8%; top: 42%; }
.right-item { right: 8%; top: 42%; }
.bottom-left-item { left: 16%; bottom: 0; }
.bottom-right-item { right: 16%; bottom: 0; }

.process-section {
  padding: 96px 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(13, 91, 255, 0.04) 100%);
}

.process-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}

.left-title h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--navy);
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.step {
  position: relative;
  min-width: 150px;
  flex: 1;
}

.step.top { padding-bottom: 140px; }
.step.bottom { padding-top: 140px; }

.line {
  width: 2px;
  height: 70px;
  background: rgba(11, 15, 25, 0.25);
  margin: 16px auto;
  position: relative;
}

.line::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.step.top .line::before { bottom: -6px; }
.step.bottom .line::before { top: -6px; }

.content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.process-section .left-title .eyebrow,
.process-section .content .eyebrow {
  color: var(--blue);
}

.box {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.16), rgba(255,255,255,0.88));
  border: 1px solid var(--blue-border);
  border-radius: 20px;
  box-shadow: 0 18px 40px -24px rgba(13, 91, 255, 0.32);
}

.h1 { height: 220px; }
.h2 { height: 250px; }
.h3 { height: 190px; }
.h4 { height: 270px; }
.h5 { height: 240px; }

@media (max-width: 980px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }

  .left-title {
    text-align: center;
    margin-bottom: 24px;
  }
}

@media (max-width: 680px) {
  .process-section {
    padding: 72px 0 96px;
  }

  .timeline {
    gap: 16px;
  }

  .step {
    min-width: 130px;
  }

  .content h3 {
    font-size: 15px;
  }

  .content p {
    font-size: 13px;
  }
}

.industry-section {
  padding: 96px 0 120px;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.03) 0%, #ffffff 100%);
}

.industry-title {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy);
  margin: 8px 0 40px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(13, 91, 255, 0.2);
  border-left: 1px solid rgba(13, 91, 255, 0.2);
}

.industry-grid-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0;
}

.industry-card {
  padding: 36px 28px;
  background: var(--white);
  border-right: 1px solid rgba(13, 91, 255, 0.2);
  border-bottom: 1px solid rgba(13, 91, 255, 0.2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.04) 0%, #ffffff 100%);
  box-shadow: 0 20px 48px -28px rgba(13, 91, 255, 0.28);
}

.industry-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--navy);
}

.industry-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

@media (max-width: 980px) {
  .ai-catalyst-grid {
    min-height: auto;
    display: grid;
    gap: 24px;
    justify-items: center;
  }

  .ai-catalyst-orbit {
    position: relative;
    inset: auto;
    width: 320px;
    height: 320px;
    transform: none;
    margin: 20px auto 8px;
  }

  .ai-catalyst-item {
    position: static;
    transform: none;
    width: 100%;
    max-width: 520px;
  }

  .industry-grid,
  .industry-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .industry-section {
    padding: 72px 0 96px;
  }

  .industry-grid,
  .industry-grid-bottom {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 28px 20px;
  }
}

.staff-section {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 56px;
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/Staff Augamtion.png') center center/cover no-repeat;
  overflow: hidden;
}

.staff-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 24, 0.72) 0%, rgba(4, 10, 24, 0.22) 70%, rgba(4, 10, 24, 0.1) 100%);
}

.overlay-card {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  max-width: 1200px;
  padding: 46px 44px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.overlay-card .subtitle {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.overlay-card h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 1000px;
  margin-bottom: 35px;
  color: #ffffff;
}

.overlay-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  transition: transform .3s ease, background .3s ease, box-shadow .3s var(--ease);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.overlay-card .btn:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(13, 91, 255, 0.35);
}

@media (max-width: 900px) {
  .staff-section {
    min-height: 640px;
    padding-bottom: 36px;
  }

  .overlay-card {
    padding: 32px 24px;
  }
}

.custom-why-section {
  padding: 96px 0 88px;
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.04) 0%, #ffffff 100%);
}

.custom-why-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.custom-why-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy);
}

.custom-why-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}

.custom-why-circle {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.custom-why-circle::before {
  content: "";
  position: absolute;
  inset: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 91, 255, 0.08) 0%, rgba(255, 255, 255, 0) 72%);
}

.custom-why-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -20deg, var(--blue) 0deg, #1f86ff 85deg, var(--navy) 210deg, transparent 210deg, transparent 360deg);
  -webkit-mask: radial-gradient(circle, transparent 0 148px, #000 149px);
  mask: radial-gradient(circle, transparent 0 148px, #000 149px);
}

.custom-why-core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(11, 15, 25, 0.08);
}

.custom-why-icon {
  position: absolute;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(11, 15, 25, 0.12);
  font-size: 24px;
}

.custom-why-icon.icon1 { top: 34px; right: 88px; }
.custom-why-icon.icon2 { top: 140px; right: 10px; }
.custom-why-icon.icon3 { top: 260px; right: -6px; }
.custom-why-icon.icon4 { bottom: 90px; right: 40px; }
.custom-why-icon.icon5 { bottom: 2px; right: 154px; }

.custom-why-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 360px;
}

.custom-why-item {
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.custom-why-item h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.custom-why-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .custom-why-wrapper {
    gap: 44px;
  }

  .custom-why-content {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .custom-why-section {
    padding: 76px 0 72px;
  }

  .custom-why-circle {
    width: min(100%, 360px);
  }

  .custom-why-ring {
    -webkit-mask: radial-gradient(circle, transparent 0 100px, #000 101px);
    mask: radial-gradient(circle, transparent 0 100px, #000 101px);
  }

  .custom-why-icon {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }

  .custom-why-icon.icon1 { top: 20px; right: 54px; }
  .custom-why-icon.icon2 { top: 96px; right: -4px; }
  .custom-why-icon.icon3 { top: 182px; right: -8px; }
  .custom-why-icon.icon4 { bottom: 56px; right: 18px; }
  .custom-why-icon.icon5 { bottom: -2px; right: 92px; }

  .custom-why-item {
    padding: 16px 18px;
  }
}

.custom-approach-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #02070d 0%, #07121f 100%);
  color: var(--white);
}

.custom-approach-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.custom-approach-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
}

.custom-approach-layout {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: center;
  gap: 32px;
}

.custom-approach-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.custom-approach-side.right-side {
  align-items: flex-end;
}

.custom-approach-item {
  max-width: 320px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.38);
}

.custom-approach-item h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.custom-approach-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.custom-approach-process {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.custom-approach-process::before {
  content: "";
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 91, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
}

.custom-approach-core {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(11, 15, 25, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-approach-logo {
  width: min(100%, 110px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(11, 15, 25, 0.15));
}

.custom-approach-segment {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
  font-size: 24px;
}

.segment-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.segment-2 { top: 118px; right: 24px; }
.segment-3 { bottom: 118px; right: 24px; }
.segment-4 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.segment-5 { top: 118px; left: 24px; }

@media (max-width: 980px) {
  .custom-approach-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .custom-approach-side,
  .custom-approach-side.right-side {
    align-items: center;
    text-align: center;
  }

  .custom-approach-item {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .custom-approach-section {
    padding: 76px 0;
  }

  .custom-approach-process {
    width: min(100%, 320px);
  }

  .custom-approach-segment {
    width: 72px;
    height: 72px;
    font-size: 20px;
  }

  .segment-2 { top: 92px; right: 10px; }
  .segment-3 { bottom: 92px; right: 10px; }
  .segment-5 { top: 92px; left: 10px; }
}

.custom-industries-section {
  padding: 96px 0 112px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.custom-industries-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.custom-industries-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy);
}

.custom-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.custom-industries-card {
  padding: 32px 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(13, 91, 255, 0.14);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.custom-industries-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 91, 255, 0.24);
  box-shadow: var(--shadow-md);
}

.custom-industries-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  font-size: 24px;
}

.custom-industries-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.custom-industries-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
}

@media (max-width: 980px) {
  .custom-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .custom-industries-grid {
    grid-template-columns: 1fr;
  }

  .custom-industries-card {
    padding: 28px 20px;
  }
}

.devops-operational-section {
  padding: 96px 0 104px;
  background: linear-gradient(135deg, #010914 0%, #07121f 60%, #020b16 100%);
  color: var(--white);
}

.devops-operational-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.devops-operational-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
}

.devops-operational-layout {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: center;
  gap: 32px;
}

.devops-operational-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.devops-operational-side.right-side {
  align-items: flex-end;
}

.devops-operational-box {
  padding: 24px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px -28px rgba(0, 0, 0, 0.45);
}

.devops-operational-box h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.devops-operational-box p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.devops-operational-center {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.devops-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 30px rgba(13, 91, 255, 0.08);
}

.orbit-1 { inset: 16px; }
.orbit-2 { inset: 58px; }
.orbit-3 { inset: 94px; }
.orbit-4 { inset: 132px; }
.orbit-5 { inset: 172px; }

.devops-operational-core {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(13, 91, 255, 0.24);
  font-size: 30px;
}

.devops-operational-bottom {
  text-align: center;
  max-width: 640px;
  margin: 42px auto 0;
}

.devops-operational-bottom h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.devops-operational-bottom p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .devops-operational-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .devops-operational-side,
  .devops-operational-side.right-side {
    align-items: center;
    text-align: center;
  }

  .devops-operational-box {
    max-width: 560px;
  }
}

@media (max-width: 680px) {
  .devops-operational-section {
    padding: 76px 0 92px;
  }

  .devops-operational-center {
    width: min(100%, 320px);
  }

  .devops-operational-core {
    width: 90px;
    height: 90px;
    font-size: 24px;
  }
}

.devops-pipeline-section {
  padding: 96px 0 112px;
  background: linear-gradient(135deg, #010914 0%, #07121f 60%, #020b16 100%);
  color: var(--white);
}

.devops-pipeline-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.devops-pipeline-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
}

.devops-pipeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 26px;
  align-items: center;
}

.devops-pipeline-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.devops-pipeline-side.right-side {
  align-items: flex-end;
}

.devops-pipeline-step {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px -28px rgba(0, 0, 0, 0.45);
}

.devops-step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  font-weight: 700;
}

.devops-pipeline-step h3 {
  font-size: 1.08rem;
  color: var(--white);
  margin-bottom: 8px;
}

.devops-pipeline-step p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.devops-pipeline-center {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.devops-pipeline-line {
  position: absolute;
  left: 50%;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.8), rgba(255,255,255,0.16));
  transform: translateX(-50%);
}

.line-1 { top: 24px; height: 70px; width: 2px; }
.line-2 { top: 98px; height: 54px; width: 2px; }
.line-3 { top: 156px; height: 54px; width: 2px; }
.line-4 { top: 214px; height: 54px; width: 2px; }
.line-5 { top: 272px; height: 54px; width: 2px; }

.devops-pipeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(13, 91, 255, 0.45);
}

.node-1 { top: 16px; }
.node-2 { top: 88px; }
.node-3 { top: 146px; }
.node-4 { top: 204px; }
.node-5 { bottom: 16px; }

@media (max-width: 980px) {
  .devops-pipeline-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .devops-pipeline-side,
  .devops-pipeline-side.right-side {
    align-items: center;
    text-align: center;
  }

  .devops-pipeline-center {
    order: -1;
    width: min(100%, 280px);
  }
}

@media (max-width: 680px) {
  .devops-pipeline-section {
    padding: 76px 0 92px;
  }

  .devops-pipeline-step {
    padding: 18px 20px;
  }
}

.devops-industries-section {
  padding: 96px 0 112px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.devops-industries-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.devops-industries-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy);
}

.devops-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.devops-industries-card {
  padding: 32px 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(13, 91, 255, 0.14);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.devops-industries-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 91, 255, 0.24);
  box-shadow: var(--shadow-md);
}

.devops-industries-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  font-size: 24px;
}

.devops-industries-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.devops-industries-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
}

@media (max-width: 980px) {
  .devops-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .devops-industries-grid {
    grid-template-columns: 1fr;
  }

  .devops-industries-card {
    padding: 28px 20px;
  }
}

/* Cybersecurity section adapted to site theme */
.cyber-section{
  position:relative;
  overflow:hidden;
  padding:70px 0 100px;
  min-height:100vh;
  background:
    radial-gradient(circle at 70% 15%, rgba(13,91,255,0.10), transparent 40%),
    linear-gradient(90deg, #000 0%, #07121f 55%, #0a2a40 100%);
  color:var(--white);
}

.cyber-section::before{
  content:"";
  position:absolute;
  left:0;top:0;width:100%;height:100%;
  background-image:radial-gradient(circle, rgba(13,247,255,0.9) 1px, transparent 1px);
  background-size:120px 120px;
  opacity:.06;
  pointer-events:none;
}

.cyber-title{ text-align:center; color:var(--white); font-size:clamp(28px,4vw,56px); font-weight:700; margin-bottom:56px; }

.cyber-why-grid{ display:grid; grid-template-columns:1fr 560px 1fr; gap:36px; align-items:center; }
.cyber-features-left, .cyber-features-right{ display:flex; flex-direction:column; gap:28px; }
.cyber-feature h4{ font-size:20px; margin-bottom:8px; color:var(--white); font-weight:700; }
.cyber-feature p{ color:rgba(255,255,255,0.78); line-height:1.6; font-size:15px; }

.cyber-center-graphic{ display:grid; place-items:center; }
.cyber-graphic-shell{ position:relative; width:520px; height:740px; display:grid; place-items:center; }
.cyber-ring{ position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,0.06); animation:cyberSpin 20s linear infinite; }
.cyber-ring.big{ width:520px; height:520px; }
.cyber-ring.med{ width:360px; height:360px; animation-duration:14s; }
.cyber-ring.small{ width:220px; height:220px; animation-duration:10s; }
.cyber-glow{ position:absolute; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle, rgba(13,91,255,0.14) 0%, rgba(255,255,255,0) 72%); }
.cyber-core-graphic{ width:140px; height:140px; border-radius:50%; display:grid; place-items:center; background:linear-gradient(135deg,var(--blue),var(--blue-dark)); color:var(--white); box-shadow:0 24px 60px rgba(13,91,255,0.22); font-size:34px; }

@keyframes cyberSpin{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }

@media (max-width:980px){
  .cyber-why-grid{ grid-template-columns:1fr; gap:28px; }
  .cyber-features-left, .cyber-features-right{ align-items:center; text-align:center; }
  .cyber-graphic-shell{ width:360px; height:420px; }
}

@media (max-width:680px){
  .cyber-section{ padding:56px 0 72px; }
  .cyber-graphic-shell{ width:280px; height:320px; }
  .cyber-core-graphic{ width:92px; height:92px; font-size:22px; }
}

/* Gameplay features section (left graphic, right bullets) */
.gameplay-features-section{ padding:96px 0; background:var(--white); color:var(--navy); }
.gameplay-wrap .gameplay-head h2{ text-align:center; margin-bottom:36px; color:var(--navy); }
.gameplay-grid{ display:grid; grid-template-columns: 1fr 520px; gap:48px; align-items:center; }
.gameplay-graphic{ display:flex; justify-content:flex-start; padding-left:24px; }
.rings-shell{ position:relative; width:520px; height:520px; display:grid; place-items:center; }
.ring{ position:absolute; border-radius:50%; filter:blur(18px); opacity:0.95; }
.ring-1{ width:180px; height:180px; background: radial-gradient(circle, rgba(13,191,255,0.95) 0%, rgba(13,191,255,0.35) 40%, rgba(255,255,255,0) 70%); }
.ring-2{ width:300px; height:300px; background: radial-gradient(circle, rgba(13,191,255,0.85) 0%, rgba(13,191,255,0.28) 40%, rgba(255,255,255,0) 70%); }
.ring-3{ width:380px; height:380px; background: radial-gradient(circle, rgba(13,191,255,0.7) 0%, rgba(13,191,255,0.22) 40%, rgba(255,255,255,0) 70%); }
.ring-4{ width:480px; height:480px; background: radial-gradient(circle, rgba(13,191,255,0.5) 0%, rgba(13,191,255,0.16) 36%, rgba(255,255,255,0) 72%); }

.gameplay-list{ padding-right:24px; display:flex; flex-direction:column; gap:18px; }
.gameplay-item{ display:flex; gap:18px; align-items:flex-start; padding:18px 0; }
.dot{ width:16px; height:16px; border-radius:50%; background:var(--navy); margin-top:6px; flex:0 0 16px; }
.gameplay-copy h4{ font-size:20px; margin-bottom:6px; color:var(--navy); }
.gameplay-copy p{ color:var(--text-muted); line-height:1.6; }
.gameplay-list hr{ border:0; height:1px; background:linear-gradient(90deg, transparent, rgba(13,191,255,0.5), transparent); margin:8px 0; }

@media (max-width:980px){
  .gameplay-grid{ grid-template-columns:1fr; }
  .gameplay-graphic{ justify-content:center; padding:0; }
  .rings-shell{ width:360px; height:360px; }
}

@media (max-width:680px){
  .gameplay-features-section{ padding:64px 0; }
  .rings-shell{ width:260px; height:260px; }
  .gameplay-copy h4{ font-size:18px; }
}

/* Game Development Process - dark themed */
.game-process-section{ padding:96px 0; background: linear-gradient(180deg,#02070d 0%, #07121f 100%); color:var(--white); }
.game-process-section .section-head h2{ color:var(--white); margin-bottom:36px; }
.game-process-grid{ display:grid; grid-template-columns: 1fr 540px 1fr; gap:32px; align-items:center; }
.process-column{ display:flex; flex-direction:column; gap:30px; padding:12px 24px; }
.process-item h4{ color:var(--white); font-size:20px; margin-bottom:10px; }
.process-item p{ color:rgba(255,255,255,0.78); line-height:1.6; }
.process-center{ display:grid; place-items:center; }
.process-rings{ position:relative; width:540px; height:540px; display:grid; place-items:center; }
.ring{ position:absolute; border-radius:50%; filter: blur(12px); }
.ring.large{ width:520px; height:520px; background: radial-gradient(circle, rgba(13,191,255,0.12) 0%, rgba(13,191,255,0.06) 40%, rgba(255,255,255,0) 70%); }
.ring.med{ width:380px; height:380px; background: radial-gradient(circle, rgba(13,191,255,0.16) 0%, rgba(13,191,255,0.06) 40%, rgba(255,255,255,0) 70%); }
.ring.small{ width:260px; height:260px; background: radial-gradient(circle, rgba(13,191,255,0.3) 0%, rgba(13,191,255,0.08) 40%, rgba(255,255,255,0) 70%); }
.ring.core{ width:120px; height:120px; background: radial-gradient(circle, rgba(13,191,255,0.6) 0%, rgba(13,191,255,0.25) 40%, rgba(255,255,255,0) 70%); box-shadow: 0 20px 60px rgba(13,191,255,0.14); }

@media (max-width:1100px){
  .game-process-grid{ grid-template-columns: 1fr; }
  .process-rings{ width:360px; height:360px; }
  .process-column{ align-items:center; text-align:center; }
}

@media (max-width:680px){
  .game-process-section{ padding:64px 0; }
  .process-rings{ width:260px; height:260px; }
  .process-item h4{ font-size:18px; }
}

/* Risk mitigation process section */
.risk-mitigation-section{ padding:96px 0; background:linear-gradient(180deg,#02070d 0%, #07121f 100%); color:var(--white); }
.risk-mitigation-section .section-head h2{ color:var(--white); text-align:center; margin-bottom:42px; }
.risk-grid{ display:grid; grid-template-columns: repeat(6, 1fr); gap:32px; align-items:start; }
.risk-item{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:16px; }
.risk-item h4{ font-size:18px; font-weight:700; color:var(--white); margin-bottom:6px; }
.risk-item p{ color:rgba(255,255,255,0.78); font-size:14px; line-height:1.6; max-width:220px; }
.risk-hex{ width:160px; height:140px; background:linear-gradient(135deg, rgba(13,91,255,0.12), rgba(13,91,255,0.9)); clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%); box-shadow: 0 24px 50px rgba(2,9,18,0.6), inset 0 -40px 80px rgba(13,91,255,0.15); border:1px solid rgba(255,255,255,0.06); }
.risk-hex::after{ content:''; display:block; width:100%; height:100%; border-radius:inherit; background: linear-gradient(160deg, rgba(13,91,255,0.06), rgba(13,91,255,0.0) 60%); mix-blend-mode:overlay; }

@media (max-width:1200px){
  .risk-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:680px){
  .risk-grid{ grid-template-columns: 1fr; gap:28px; }
  .risk-item p{ max-width:520px; }
  .risk-hex{ width:220px; height:180px; }
}

@media (max-width: 680px) {
  .staff-section {
    min-height: 560px;
  }

  .overlay-card h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .overlay-card .btn {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 16px;
  }
}

/* Service Hero Sections */
.uxui-section,
.website-section,
.custom-software-section,
.devops-section,
.cybersecurity-section,
.game-section,
.analytics-section,
.shopify-section {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 56px;
  overflow: hidden;
}

.uxui-section {
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/UIUX.png') center center/cover no-repeat;
}

.website-section {
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/Website.png') center center/cover no-repeat;
}

.custom-software-section {
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/Custom.png') center center/cover no-repeat;
}

.devops-section {
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/Devops.png') center center/cover no-repeat;
}

.cybersecurity-section {
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/Cyber\ Security\ .png') center center/cover no-repeat;
}

.game-section {
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/Game\ .png') center center/cover no-repeat;
}

.analytics-section {
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/Data\ Analystic.png') center center/cover no-repeat;
}

.shopify-section {
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.86) 0%, rgba(13, 91, 255, 0.72) 100%), url('../images/Shpify\ .png') center center/cover no-repeat;
}

.shopify-section .overlay-card {
  max-width: 720px;
  width: 100%;
  padding: 40px 36px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 91, 255, 0.12);
  box-shadow: 0 40px 80px rgba(13, 91, 255, 0.12);
  backdrop-filter: blur(12px);
}

.shopify-section .subtitle {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shopify-section h1 {
  color: var(--navy);
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1.03;
  max-width: 720px;
  margin-bottom: 24px;
}

.shopify-section p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 30px;
}

.shopify-section .btn {
  padding: 16px 34px;
  box-shadow: 0 18px 36px rgba(13, 91, 255, 0.16);
}

.shopify-services {
  background: linear-gradient(180deg, rgba(13,91,255,0.04) 0%, #ffffff 100%);
}

.shopify-services .section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.shopify-services .section-head p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
}

.shopify-services .service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.shopify-services .card {
  background: var(--white);
  border: 1px solid rgba(13,91,255,0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 32px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.shopify-services .card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,91,255,0.2);
  box-shadow: var(--shadow-md);
}

.shopify-services .card h3 {
  color: var(--navy);
  margin-bottom: 16px;
}

.shopify-services .card p {
  color: var(--gray);
  line-height: 1.8;
}

.shopify-services-cta {
  text-align: center;
  margin-top: 36px;
}

.shopify-process {
  background: linear-gradient(180deg, rgba(13,91,255,0.03) 0%, #ffffff 100%);
}

.shopify-process .section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.shopify-process-layout {
  position: relative;
  min-height: 760px;
  max-width: 1100px;
  margin: 0 auto;
}

.shopify-process-wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(360px, 58vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(from 180deg, rgba(13,91,255,0.18) 0deg 60deg, rgba(13,91,255,0.28) 60deg 120deg, rgba(13,91,255,0.12) 120deg 240deg, rgba(13,91,255,0.24) 240deg 300deg, rgba(13,91,255,0.16) 300deg 360deg);
  box-shadow: 0 30px 70px rgba(13,91,255,0.14);
  border: 1px solid rgba(13,91,255,0.14);
}

.shopify-process-wheel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(13,91,255,0.08);
}

.wheel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 18px solid rgba(255,255,255,0.75);
}

.wheel-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 24px;
}

.wheel-core span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.wheel-core strong {
  font-size: 1.4rem;
  color: var(--navy);
}

.wheel-core em {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gray);
}

.shopify-process-card {
  position: absolute;
  width: min(260px, 42vw);
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(13,91,255,0.12);
  box-shadow: var(--shadow-sm);
}

.shopify-process-card .process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.shopify-process-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.1rem;
}

.shopify-process-card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.75;
  font-size: 0.95rem;
}

.shopify-process-card.card-a { left: 20px; top: 60px; }
.shopify-process-card.card-b { left: 40px; bottom: 70px; }
.shopify-process-card.card-c { right: 20px; top: 60px; }
.shopify-process-card.card-d { right: 40px; bottom: 70px; }
.shopify-process-card.card-e { left: 50%; top: 0; transform: translateX(-50%); }
.shopify-process-card.card-f { left: 50%; bottom: 0; transform: translateX(-50%); }

.shopify-industries {
  background: linear-gradient(180deg, rgba(13,91,255,0.025) 0%, #ffffff 100%);
}

.shopify-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.shopify-industry-card {
  background: var(--white);
  border: 1px solid rgba(13,91,255,0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.shopify-industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,91,255,0.24);
  box-shadow: var(--shadow-md);
}

.shopify-industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(13,91,255,0.12), rgba(13,91,255,0.04));
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.shopify-industry-card h3 {
  color: var(--navy);
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.shopify-industry-card p {
  color: var(--gray);
  line-height: 1.75;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .shopify-services .service-grid {
    grid-template-columns: 1fr;
  }

  .shopify-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shopify-process-layout {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shopify-process-wheel {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 20px auto 10px;
    width: min(280px, 70vw);
  }

  .shopify-process-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
  }

  .uxui-section,
  .website-section,
  .custom-software-section,
  .devops-section,
  .cybersecurity-section,
  .game-section,
  .analytics-section,
  .shopify-section {
    min-height: 640px;
    padding-bottom: 36px;
  }
}

@media (max-width: 680px) {
  .uxui-section,
  .website-section,
  .custom-software-section,
  .devops-section,
  .cybersecurity-section,
  .game-section,
  .analytics-section,
  .shopify-section {
    min-height: 560px;
  }

  .shopify-industries-grid {
    grid-template-columns: 1fr;
  }
}


.industries-section {
  padding: 96px 0 120px;
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.04) 0%, #ffffff 100%);
}

.industries-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.industries-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
  color: var(--navy);
}

.industries-heading p {
  font-size: 17px;
  max-width: 680px;
  color: var(--gray);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.industry-card-item {
  background: var(--white);
  border: 1px solid rgba(13, 91, 255, 0.16);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease;
}

.industry-card-item:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.04) 0%, #ffffff 100%);
  box-shadow: var(--shadow-md);
}

.industry-card-item .industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  margin-bottom: 18px;
}

.industry-card-item .industry-icon svg {
  width: 24px;
  height: 24px;
}

.industry-card-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--navy);
}

.industry-card-item p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

@media (max-width: 980px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .industries-section {
    padding: 72px 0 96px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card-item {
    padding: 24px;
  }
}

.careers-hero {
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.12) 0%, #ffffff 80%);
}

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }

.careers-section {
  padding-top: 20px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.job-card {
  background: linear-gradient(145deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid var(--blue-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 91, 255, 0.2);
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.job-type {
  display: inline-block;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.job-card h3 {
  font-size: 20px;
  margin: 0;
  color: var(--navy);
}

.job-location {
  font-size: 13px;
  color: var(--blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

.job-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.job-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.job-bullets li {
  padding-left: 16px;
  position: relative;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.6;
}

.job-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.application-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.application-modal.open {
  display: flex;
}

.application-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 20, 0.6);
  backdrop-filter: blur(6px);
}

.application-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 32px 90px rgba(8, 15, 35, 0.24);
}

.application-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue);
  cursor: pointer;
}

.application-modal-head {
  margin-bottom: 20px;
}

.application-modal-head h3 {
  font-size: 24px;
  margin: 8px 0 6px;
  color: var(--navy);
}

.application-modal-head p {
  color: var(--muted);
  margin: 0;
}

.application-form {
  display: grid;
  gap: 16px;
}

.application-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
}

.application-form input,
.application-form textarea,
.application-form .file-upload input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--navy);
  background: #fbfdff;
}

.application-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.file-upload {
  padding: 12px 14px;
  border: 1px dashed var(--blue-border);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(13, 91, 255, 0.04), rgba(13, 91, 255, 0.08));
}

.file-upload input {
  border: 0;
  padding: 0;
  background: transparent;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.form-success {
  display: none;
  margin: 0;
  color: #0f8a3d;
  font-weight: 700;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

/*=============================
        SERVICES SECTION
=============================*/

.services-section {
  padding: 90px 0;
  background: linear-gradient(to right, #ffffff, #e8ffff);
}

.services-heading {
  margin-bottom: 50px;
}

.service-tag {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.services-heading h2 {
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #fff;
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: .35s ease;
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  transition: .4s;
}

.service-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  z-index: 2;
  text-shadow: 0 6px 18px rgba(2,6,23,0.5);
}

.service-card:hover img {
  transform: none;
}

.service-card:hover .overlay {
  background: rgba(0, 0, 0, .25);
}

.partners-section {
  padding-top: 20px;
}

.partners-heading {
  margin-bottom: 32px;
}

.partners-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.partners-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--navy);
  font-size: 17px;
}

.center.partners-heading h2 {
  color: var(--blue-dark);
}

.center.partners-heading p {
  color: var(--navy);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.partner-card {
  background: linear-gradient(145deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid var(--blue-border);
  border-radius: 18px;
  padding: 18px 20px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 91, 255, 0.25);
}

.partner-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 78px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.1) contrast(1.05);
  opacity: 0.95;
}

/* Tablet */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .services-heading h2 {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 120px;
    padding: 16px;
  }

  .partner-card img {
    max-height: 64px;
  }

  .job-card {
    padding: 20px;
  }

  .job-card-top {
    flex-direction: column;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

.ai-service-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 44px -24px rgba(11, 15, 25, 0.3);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.ai-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 30, 0.06) 0%, rgba(5, 15, 30, 0.8) 100%);
  z-index: 0;
}

.ai-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -24px rgba(13, 91, 255, 0.28);
}

.ai-service-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px;
  color: var(--white);
}

.ai-service-overlay h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.ai-service-overlay p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s var(--ease);
}

.ai-service-card:hover .ai-service-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.card {
  background: linear-gradient(145deg, var(--white) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }

.portfolio-showcase {
  background: linear-gradient(180deg, rgba(13, 91, 255, 0.04) 0%, #ffffff 100%);
}
.portfolio-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.portfolio-intro h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  margin-bottom: 16px;
  color: var(--navy);
}
.portfolio-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.portfolio-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--blue-soft);
}
.portfolio-body {
  padding: 24px;
}
.portfolio-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.portfolio-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--navy);
}
.portfolio-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card img {
    height: 200px;
  }
}

.design-excellence-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #02070d 0%, #07121f 100%);
  color: var(--white);
}
.design-excellence-section .section-head {
  margin-bottom: 52px;
}
.design-excellence-section .section-head .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.design-excellence-section .section-head h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--white);
}
.design-excellence-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
  margin-top: 16px;
}
.design-grid {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 36px;
  align-items: center;
}
.design-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.design-panel .feature-card {
  background: rgba(7, 17, 34, 0.92);
  border: 1px solid rgba(13, 91, 255, 0.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.design-panel .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  border-color: rgba(13, 91, 255, 0.26);
}
.design-panel .feature-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--white);
}
.design-panel .feature-card p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.design-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.design-circle {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 80px rgba(13, 91, 255, 0.1), 0 0 45px rgba(13, 91, 255, 0.12);
  display: grid;
  place-items: center;
}
.design-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(13, 91, 255, 0.22), transparent 58%);
}
.petal {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(13, 91, 255, 0.95), rgba(13, 91, 255, 0.18));
  opacity: 0.72;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.petal1 { top: 44px; left: 92px; }
.petal2 { top: 92px; right: 44px; }
.petal3 { bottom: 44px; left: 92px; }
.petal4 { left: 44px; top: 92px; }
.center-dot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #0d5bff, #7cc5ff);
  box-shadow: 0 0 32px rgba(13, 91, 255, 0.35);
  z-index: 1;
}
.design-circle:hover .petal {
  transform: scale(1.08);
  opacity: 0.92;
}
.design-circle:hover {
  box-shadow: inset 0 0 100px rgba(13, 91, 255, 0.14), 0 0 55px rgba(13, 91, 255, 0.16);
}
.design-bottom {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.design-bottom .feature-card.wide {
  max-width: 760px;
  text-align: center;
  padding: 36px 32px;
  background: rgba(7, 17, 34, 0.96);
  border: 1px solid rgba(13, 91, 255, 0.18);
}
.design-bottom .feature-card.wide h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--white);
}
.design-bottom .feature-card.wide p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
}

.process-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #02070d 0%, #07121f 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(13, 91, 255, 0.18), transparent 20%), radial-gradient(circle at 20% 30%, rgba(13, 91, 255, 0.08), transparent 25%);
  pointer-events: none;
}
.process-wrap {
  position: relative;
  z-index: 2;
}
.process-title {
  text-align: center;
  margin-bottom: 70px;
}
.process-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  color: var(--white);
}
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.process-cards-top {
  margin-bottom: 48px;
}
.process-cards-bottom {
  margin-top: 48px;
}
.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}
.process-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--white);
}
.process-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 15px;
}
.process-label {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  position: relative;
  margin: 60px 0;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 4px;
  background: linear-gradient(90deg, rgba(13, 91, 255, 0.2), rgba(13, 91, 255, 0.45), rgba(13, 91, 255, 0.2));
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(13, 91, 255, 0.18);
}
.process-step {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.process-sphere {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #18f0f2 0%, #0ec8cc 18%, #0a8e95 48%, #04373d 100%);
  box-shadow: 0 0 30px rgba(13, 91, 255, 0.28), inset -18px -18px 40px rgba(0, 0, 0, 0.45), inset 12px 12px 25px rgba(255, 255, 255, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.process-step:hover .process-sphere {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 38px rgba(13, 91, 255, 0.38), inset -18px -18px 40px rgba(0, 0, 0, 0.45), inset 12px 12px 25px rgba(255, 255, 255, 0.08);
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
  .process-grid::before {
    display: none;
  }
  .process-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-cards-top {
    margin-bottom: 30px;
  }
  .process-cards-bottom {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 72px 24px;
  }
  .process-title h2 {
    font-size: 38px;
  }
  .process-sphere {
    width: 120px;
    height: 120px;
  }
  .process-card h3 {
    font-size: 20px;
  }
  .process-card p {
    font-size: 14px;
  }
}

.industries-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.industries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 28%, rgba(13, 91, 255, 0.08), transparent 18%), radial-gradient(circle at 18% 72%, rgba(13, 91, 255, 0.04), transparent 22%);
  pointer-events: none;
}
.industries-section .section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.industries-section .section-head h2 {
  font-size: clamp(34px, 4vw, 50px);
  color: var(--navy);
}
.industries-section .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.industry-card {
  background: #ffffff;
  border: 1px solid rgba(13, 91, 255, 0.14);
  border-radius: 28px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 91, 255, 0.28);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  box-shadow: 0 10px 30px rgba(13, 91, 255, 0.08);
  font-size: 24px;
}
.industry-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--navy);
}
.industry-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.85;
}

@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 72px 24px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    padding: 28px 24px;
  }
  .industry-card h3 {
    font-size: 24px;
  }
  .industry-card p {
    font-size: 15px;
  }
}

@media (max-width: 1180px) {
  .design-grid { grid-template-columns: 1fr; text-align: center; }
  .design-center { order: -1; margin-bottom: 40px; }
}
@media (max-width: 768px) {
  .design-excellence-section { padding: 72px 0; }
  .design-panel { gap: 22px; }
  .design-circle { width: 300px; height: 300px; }
  .petal { width: 120px; height: 120px; }
  .petal1 { top: 32px; left: 64px; }
  .petal2 { top: 64px; right: 32px; }
  .petal3 { bottom: 32px; left: 64px; }
  .petal4 { left: 32px; top: 64px; }
  .center-dot { width: 90px; height: 90px; }
  .design-bottom .feature-card.wide { padding: 28px 24px; }
  .design-panel .feature-card h3 { font-size: 22px; }
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 15px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: linear-gradient(145deg, var(--white) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--blue-border);
  border-radius: 28px;
  padding: 28px 22px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 91, 255, 0.16);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-name {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 800;
}
.team-role {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.team-company {
  color: var(--blue-dark);
  font-size: 13.5px;
  font-weight: 700;
}
.org-tree {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}
.org-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.org-card {
  border-radius: 28px;
  padding: 28px 24px;
  background: linear-gradient(145deg, var(--white) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--blue-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.org-lead {
  position: relative;
}
.org-avatar {
  width: 124px;
  height: 124px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(13, 91, 255, 0.16);
}
.org-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.org-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.org-role {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.75;
}
.org-branches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.branch-card {
  border-radius: 26px;
  padding: 24px;
  background: rgba(13, 91, 255, 0.06);
  border: 1px solid rgba(13, 91, 255, 0.16);
  text-align: center;
}
.branch-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.branch-person {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.branch-role {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.6;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { margin-bottom: 14px; font-size: 14.5px; }
.card-link { color: var(--blue); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }

.feature-list { display: grid; gap: 18px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.achievements-section {
  padding-top: 20px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--blue-border);
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 24px 70px -32px rgba(10, 63, 204, 0.24);
}

.achievement-content h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.15;
  margin: 12px 0 16px;
  color: var(--navy);
}

.achievement-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 560px;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-box {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid var(--blue-border);
  box-shadow: 0 16px 35px -24px rgba(13, 91, 255, 0.3);
  min-height: 138px;
}

.stat-box h3 {
  font-size: 30px;
  line-height: 1;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 992px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .achievement-grid {
    padding: 24px;
  }

  .achievement-stats {
    grid-template-columns: 1fr;
  }
}

.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; }

.pricing-card { display: flex; flex-direction: column; height: 100%; }
.pricing-card.featured { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pricing-card.featured p, .pricing-card.featured li { color: #aab4cc; }
.pricing-amount { font-size: 34px; font-weight: 800; margin: 18px 0 20px; }
.pricing-amount span { font-size: 14px; color: var(--gray); }
.pricing-card.featured .pricing-amount span { color: #8891a8; }
.price-list { display: grid; gap: 10px; margin-bottom: 20px; }
.price-list li { display: flex; gap: 8px; align-items: flex-start; }
.price-list svg { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.pricing-card.featured svg { color: var(--orange); }

.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-weight: 700; padding-right: 6px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding-top: 10px; }
.faq-item.open .faq-answer { max-height: 180px; }

.contact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-left h2 {
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}

.contact-intro {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.image-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 620px;
  background: radial-gradient(circle at top left, rgba(13, 91, 255, 0.08), transparent 34%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 91, 255, 0.12);
}

.image-box::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13, 91, 255, 0.22) 2px, transparent 3px);
  background-size: 18px 18px;
  opacity: 0.7;
  top: -80px;
  left: -80px;
}

.shape-circle,
.shape-ring {
  position: absolute;
  border-radius: 50%;
}

.shape-circle {
  width: 380px;
  height: 380px;
  background: rgba(13, 91, 255, 0.06);
  top: 30px;
  left: 45px;
}

.shape-ring {
  width: 260px;
  height: 260px;
  border: 20px solid rgba(13, 91, 255, 0.1);
  top: 130px;
  right: 20px;
}

/* logo removed from image-box */

.image-box img {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  max-height: 1000px;
  width: auto;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.contact-right h2 {
  font-size: clamp(34px, 3.5vw, 42px);
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.service-pill {
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid rgba(13, 91, 255, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-pill:hover,
.service-pill.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--white);
  border-radius: 32px;
  padding: 36px;
  border: 1px solid rgba(13, 91, 255, 0.12);
  box-shadow: 0 24px 70px rgba(13, 91, 255, 0.08);
}

.contact-group {
  margin-bottom: 22px;
}

.contact-group.full-width {
  margin-bottom: 28px;
}

.contact-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.13em;
  color: var(--blue-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-group input,
.contact-group textarea {
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(13, 91, 255, 0.18);
  background: rgba(13, 91, 255, 0.06);
  color: var(--navy);
  font: inherit;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-group input:focus,
.contact-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13, 91, 255, 0.12);
}

.contact-group textarea {
  min-height: 140px;
  resize: none;
}

.contact-group input::placeholder,
.contact-group textarea::placeholder {
  color: rgba(11, 15, 25, 0.45);
}

.submit-btn {
  margin-top: 10px;
  background: var(--blue-dark);
  color: #ffffff;
  padding: 18px 35px;
  border: none;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(13, 91, 255, 0.22);
}

.submit-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left h2 {
    font-size: 46px;
  }

  .image-box {
    height: 520px;
  }

  .image-box img {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .contact-left h2 {
    font-size: 34px;
  }

  .contact-right h2 {
    font-size: 30px;
  }

  .contact-services {
    justify-content: center;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

.cta-banner {
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--white) 100%);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #0d5bff 0%, #0a3fcc 52%, #10182b 100%);
  border-radius: 32px;
  margin-bottom: 24px;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -10%;
  width: 120%;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-shape-one {
  right: -120px;
  top: -30px;
  width: 780px;
  height: 340px;
  border: 90px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-20deg);
}

.cta-shape-two {
  right: 20px;
  top: 110px;
  width: 520px;
  height: 240px;
  border: 70px solid rgba(255, 255, 255, 0.15);
  transform: rotate(-20deg);
}

.cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 8px;
}

.cta-section .subtitle {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  max-width: 720px;
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a3fcc;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 63, 204, 0.24);
}

.cta-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d5bff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 992px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: clamp(28px, 5vw, 44px);
  }

  .cta-shape-one,
  .cta-shape-two {
    display: none;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 48px 0;
  }

  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.tech-marquee-section {
  padding: 28px 0 8px;
}

.tech-marquee-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.tech-marquee-head h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 6px;
}

.tech-marquee {
  overflow: hidden;
  border: 1px solid var(--blue-border);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 91, 255, 0.06) 0%, rgba(13, 91, 255, 0.14) 100%);
  padding: 14px 0;
  position: relative;
}

.tech-track {
  display: flex;
  gap: 14px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: techScroll 18s linear infinite;
}

.tech-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

@keyframes techScroll {
  from { transform: translateX(4%); }
  to { transform: translateX(-50%); }
}

.testimonials {
  padding: 64px 0;
  margin: 12px auto 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0a3fcc 0%, #0d5bff 45%, #4f46e5 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 38%);
  pointer-events: none;
}

.team-performance {
  padding-top: 20px;
}

.team-performance-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--blue-border);
  background: linear-gradient(135deg, rgba(13, 91, 255, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 24px 80px -36px rgba(10, 63, 204, 0.25);
}

.team-performance-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(13, 91, 255, 0.16), transparent 42%);
  pointer-events: none;
}

.team-performance-copy {
  position: relative;
  z-index: 1;
}

.team-performance-copy h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.2;
  margin: 10px 0 16px;
  color: var(--navy);
}

.team-performance-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

.team-performance-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.team-performance-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--blue-border);
  box-shadow: 0 10px 24px -16px rgba(13, 91, 255, 0.22);
}

.team-performance-stats strong {
  display: block;
  font-size: 22px;
  color: var(--blue-dark);
}

.team-performance-stats span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.team-performance-visual {
  position: relative;
  min-height: 340px;
}

.perf-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--blue-border);
  background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 100%);
  box-shadow: 0 20px 45px -24px rgba(13, 91, 255, 0.25);
}

.perf-card-main {
  position: absolute;
  left: 10px;
  top: 20px;
  width: min(88%, 320px);
  z-index: 2;
}

.perf-card-side {
  position: absolute;
  right: 0;
  top: 110px;
  width: min(76%, 260px);
  background: linear-gradient(140deg, var(--navy) 0%, #15213d 100%);
  color: #ffffff;
  z-index: 3;
}

.perf-card-floating {
  position: absolute;
  left: 30px;
  bottom: 0;
  width: min(72%, 250px);
  z-index: 1;
}

.perf-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.perf-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 91, 255, 0.08);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.perf-score {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-dark);
}

.perf-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 110px;
  margin: 14px 0;
}

.perf-chart span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  animation: pulseBar 2.2s ease-in-out infinite;
}

.perf-chart span:nth-child(1) { height: 45%; animation-delay: 0s; }
.perf-chart span:nth-child(2) { height: 72%; animation-delay: 0.15s; }
.perf-chart span:nth-child(3) { height: 58%; animation-delay: 0.3s; }
.perf-chart span:nth-child(4) { height: 88%; animation-delay: 0.45s; }

.perf-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.perf-card-side h3,
.perf-card-floating h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.perf-card-side p {
  color: rgba(255, 255, 255, 0.8);
}

.perf-card-floating p {
  color: var(--muted);
}

@keyframes pulseBar {
  0%, 100% { transform: scaleY(1); opacity: 0.95; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

.center {
  text-align: center;
  margin: 0 auto 60px;
}

.center h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 18px 0;
  font-weight: 800;
  color: #ffffff;
}

.center p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(4, 12, 30, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(4, 12, 30, 0.16);
}

.stars {
  display: flex;
  gap: 7px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.stars i {
  font-size: 17px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #47506b;
  margin-bottom: 28px;
}

.client-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.client-info span {
  color: #6b7280;
  font-size: 15px;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .center h2 {
    font-size: 40px;
  }
}

 .foot-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:60px;
    margin-bottom:40px;
}

.foot-col h5{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:none;
    letter-spacing:0;
}

.foot-col ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.foot-col ul li a{
    color:#98a4b3;
    font-size:15px;
    transition:.3s ease;
}

.foot-col ul li a:hover{
    color:var(--blue);
    padding-left:6px;
}

.foot-col p{
    color:#98a4b3;
    line-height:1.8;
}

.foot-social{
    display:flex;
    gap:14px;
    margin-top:22px;
}

.foot-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111d30;
    color:#fff;
    transition:.3s;
}

.foot-social a:hover{
    background:var(--blue);
    transform:translateY(-4px);
}

.foot-social svg{
    width:18px;
    height:18px;
}

.foot-col input{
    width:100%;
    height:48px;
    padding:0 16px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.1);
    background:#101d30;
    color:#fff;
    outline:none;
    margin-bottom:15px;
}

.foot-col input::placeholder{
    color:#8b94a8;
}

.foot-col input:focus{
    border-color:var(--blue);
}

.foot-col .btn{
    width:100%;
}

.foot-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:24px;
    margin-top:30px;
    color:#8f99ad;
    font-size:14px;
    flex-wrap:wrap;
    gap:15px;
}

.foot-bottom a{
    color:#8f99ad;
    transition:.3s;
}

.foot-bottom a:hover{
    color:#fff;
}

@media (max-width:992px){

    .foot-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

@media (max-width:768px){

    footer{
        padding:60px 0 25px;
    }

    .foot-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .logo{
        justify-content:center;
    }

    .foot-social{
        justify-content:center;
    }

    .foot-bottom{
        flex-direction:column;
        text-align:center;
    }

}
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

body.no-scroll { overflow: hidden; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 35px rgba(18, 140, 126, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(18, 140, 126, 0.34);
}

.whatsapp-float i {
  font-size: 28px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Footer class aliases for legacy HTML structure */
.footer{
    background:#08111f;
    color:#c8d1dc;
    padding:80px 0 30px;
    margin-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:60px;
    margin-bottom:40px;
}

.footer-column h4{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-column ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-column ul li a{
    color:#98a4b3;
    font-size:15px;
    transition:.3s ease;
}

.footer-column ul li a:hover{
    color:var(--blue);
    padding-left:6px;
}

.footer-column p{
    color:#98a4b3;
    line-height:1.8;
}

.footer-social{
    display:flex;
    gap:14px;
    margin-top:22px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111d30;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--blue);
    transform:translateY(-4px);
}

.footer-social svg, .footer-social i{
    width:18px;
    height:18px;
}

.footer-column input{
    width:100%;
    height:48px;
    padding:0 16px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.1);
    background:#101d30;
    color:#fff;
    outline:none;
    margin-bottom:15px;
}

.footer-column input::placeholder{
    color:#8b94a8;
}

.footer-column input:focus{
    border-color:var(--blue);
}

.footer-column .btn{
    width:100%;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:24px;
    margin-top:30px;
    color:#8f99ad;
    font-size:14px;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom a{
    color:#8f99ad;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#fff;
}

@media (max-width:992px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

@media (max-width:768px){

    .footer{
        padding:60px 0 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .logo{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}
