:root {
  --brand-navy: #174f82;
  --brand-blue: #3477d8;
  --brand-blue-dark: #0f3d68;
  --ink: #102236;
  --muted: #5d6b7d;
  --line: #d9e5f1;
  --surface: #ffffff;
  --soft-blue: #edf7ff;
  --soft-cyan: #e8fbff;
  --soft-green: #e9f8f1;
  --teal: #138d8a;
  --amber: #d89122;
  --footer: #0c2238;
  --shadow: 0 18px 45px rgba(16, 34, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: #f8fbff;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
a,
span,
strong {
  overflow-wrap: break-word;
}

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

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

p {
  margin: 0 0 18px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: 3.35rem;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.08rem;
}

.container {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
  text-align: center;
}

.section {
  padding: 86px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--brand-navy);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(217, 229, 241, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 82px;
}

.brand img {
  width: 132px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--brand-navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.primary-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a,
.nav-list > li > .nav-dropdown-trigger {
  display: block;
  padding: 10px 7px;
  border: 0;
  border-radius: 6px;
  color: #24384d;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  background: transparent;
  cursor: default;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus,
.nav-list > li > a.is-active,
.nav-list > li > .nav-dropdown-trigger:hover,
.nav-list > li > .nav-dropdown-trigger:focus,
.nav-list > li > .nav-dropdown-trigger.is-active {
  color: var(--brand-navy);
  background: var(--soft-blue);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 22px;
  width: min(720px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  background: #fff;
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mega-menu.single-menu {
  grid-template-columns: minmax(240px, 1fr);
  width: min(380px, calc(100vw - 48px));
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-column {
  display: grid;
  gap: 2px;
}

.mega-column p {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.mega-column a {
  padding: 7px 9px;
  border-radius: 6px;
  color: #435469;
  font-size: 0.9rem;
  line-height: 1.25;
}

.mega-column a:hover,
.mega-column a:focus {
  color: var(--brand-navy);
  background: var(--soft-blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--brand-navy);
  box-shadow: 0 10px 25px rgba(23, 79, 130, 0.2);
}

.header-cta {
  min-height: 44px;
  padding-inline: 14px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--brand-blue-dark);
}

.btn-secondary {
  color: var(--brand-navy);
  border-color: rgba(52, 119, 216, 0.32);
  background: #fff;
}

.btn-secondary:hover {
  border-color: var(--brand-blue);
  background: var(--soft-blue);
}

.btn-light {
  color: var(--brand-navy);
  background: #fff;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-navy);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--brand-blue);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background: linear-gradient(135deg, #f5fbff 0%, #ffffff 44%, #eaf6ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(52, 119, 216, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(52, 119, 216, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.18), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
}

.hero-grid > *,
.page-hero-grid > *,
.split-grid > *,
.pillar-grid > *,
.section-head-row > *,
.cta-grid > *,
.footer-grid > * {
  min-width: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  font-size: 1.05rem;
}

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

.hero-media img {
  border: 1px solid rgba(52, 119, 216, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 86px;
  background: linear-gradient(135deg, #f5fbff 0%, #ffffff 48%, #eaf6ff 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(52, 119, 216, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(52, 119, 216, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.18), transparent 64%);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 54px;
}

.page-hero h1 {
  font-size: 3.15rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.04rem;
}

.about-hero-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(52, 119, 216, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-hero-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.service-hero-card img {
  aspect-ratio: 16 / 10;
}

.design-showcase-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(52, 119, 216, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(22, 61, 104, 0.12);
}

.design-showcase-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-card-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.hero-card-band span {
  padding: 14px 8px;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  background: #fff;
}

.trust-strip {
  padding: 26px 0;
  background: var(--brand-navy);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  align-items: center;
  gap: 28px;
}

.trust-strip p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-strip li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #e9f5ff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.client-section {
  background: #fff;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.client-card {
  display: grid;
  min-height: 126px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 14px 32px rgba(9, 31, 58, 0.07);
  text-align: center;
}

.client-logo {
  display: block;
  width: auto;
  max-width: 148px;
  max-height: 58px;
  object-fit: contain;
}

.client-card span {
  color: #31445b;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.25;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 56px;
}

.reverse {
  align-items: stretch;
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-panel div,
.card-grid article,
.process-track article,
.testimonial-grid blockquote,
.blog-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.06);
}

.metric-panel div {
  min-height: 148px;
  padding: 22px;
}

.metric-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-panel strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.25;
}

.intro-section,
.who-section,
.mission-vision-section,
.difference-section,
.trust-experience-section {
  background: #fff;
}

.highlight-stack {
  display: grid;
  gap: 14px;
}

.highlight-stack div {
  position: relative;
  padding: 22px 22px 22px 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.06);
}

.highlight-stack span {
  position: absolute;
  left: 22px;
  top: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: var(--brand-blue);
}

.highlight-stack strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.highlight-stack p {
  margin: 0;
}

.services-intro-section,
.service-list-section,
.advanced-tech-section,
.decision-section,
.service-why-section {
  background: #fff;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-grid span {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid rgba(52, 119, 216, 0.2);
  border-radius: 8px;
  color: var(--brand-navy);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #edf7ff);
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.06);
}

.capability-grid,
.values-grid,
.team-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-grid article,
.values-grid article,
.team-grid article,
.statement-card,
.difference-panel div,
.trust-card-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.06);
}

.capability-grid article,
.values-grid article,
.team-grid article {
  padding: 24px;
}

.capability-grid span {
  display: inline-grid;
  min-width: 44px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--soft-blue);
}

.capability-grid p,
.values-grid p,
.team-grid p {
  margin: 12px 0 0;
}

.statement-block {
  max-width: 900px;
  margin-top: 34px;
  padding: 28px;
  border-left: 5px solid var(--brand-blue);
  border-radius: 8px;
  background: var(--soft-blue);
}

.statement-block p {
  margin: 0;
  color: #244254;
  font-size: 1.15rem;
  font-weight: 700;
}

.services-overview {
  background: #eef7ff;
}

.about-services {
  background: #eef7ff;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pillar-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-category-grid .pillar-card {
  display: flex;
  flex-direction: column;
}

.pillar-card.development {
  border-top: 5px solid var(--brand-blue);
}

.pillar-card.growth {
  border-top: 5px solid var(--teal);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: var(--brand-navy);
}

.growth .card-icon {
  background: var(--teal);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.check-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #435469;
  font-weight: 700;
  line-height: 1.35;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.growth .check-list li::before,
.growth-focus .benefit-grid span::before {
  background: var(--teal);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 28px;
}

.tag-cloud span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #36516b;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  background: #f8fbff;
}

.service-category-grid .btn {
  margin-top: auto;
}

.focus-section {
  background: #fff;
}

.growth-focus {
  background: linear-gradient(135deg, #f6fcff 0%, #eaf8f4 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-grid span {
  position: relative;
  min-height: 82px;
  padding: 18px 18px 18px 42px;
  border: 1px solid rgba(19, 141, 138, 0.2);
  border-radius: 8px;
  color: #244254;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.78);
}

.benefit-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.development-focus {
  background: #f8fbff;
}

.platform-visual {
  min-height: 470px;
  padding: 28px;
  border: 1px solid rgba(52, 119, 216, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, #0f2944, #18548a);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b9d9f5;
}

.code-row {
  width: 68%;
  height: 14px;
  margin-bottom: 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
}

.code-row.wide {
  width: 88%;
}

.code-row.short {
  width: 48%;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.app-grid span {
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.mission-vision-section {
  background: linear-gradient(135deg, #f6fcff 0%, #eff8ff 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.statement-card {
  padding: 34px;
}

.statement-card h2 {
  margin-bottom: 18px;
}

.mission-card {
  border-top: 5px solid var(--brand-blue);
}

.vision-card {
  border-top: 5px solid var(--teal);
}

.values-section {
  background: #fff;
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.values-grid article {
  min-height: 248px;
}

.values-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-weight: 900;
}

.development-list-section {
  background: #fff;
}

.growth-list-section {
  background: #f8fbff;
}

.service-card-grid,
.advanced-card-grid,
.decision-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.service-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advanced-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decision-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.service-card-grid article,
.advanced-card-grid article,
.decision-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.06);
}

.service-card-grid article,
.advanced-card-grid article {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: 24px;
}

.service-card-grid span,
.advanced-card-grid span {
  display: inline-grid;
  min-width: 46px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  align-self: flex-start;
  border-radius: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--brand-navy);
}

.growth-list-section .service-card-grid span {
  background: var(--teal);
}

.advanced-card-grid span {
  background: linear-gradient(135deg, var(--brand-navy), var(--teal));
}

.service-card-grid h3,
.advanced-card-grid h3 {
  min-height: 48px;
}

.service-card-grid p,
.advanced-card-grid p {
  margin: 12px 0 20px;
}

.service-card-grid .text-link {
  margin-top: auto;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.advanced-tech-section {
  background: linear-gradient(135deg, #f6fcff 0%, #eff8ff 100%);
}

.decision-section {
  background: #fff;
}

.decision-grid article {
  padding: 20px;
}

.decision-grid span {
  display: block;
  min-height: 88px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.decision-grid strong {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--brand-navy);
  line-height: 1.35;
}

.webapp-service-grid article {
  min-height: 360px;
}

.webapp-service-grid ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.webapp-service-grid li {
  position: relative;
  padding-left: 18px;
  color: #435469;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.webapp-service-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.solutions-section,
.features-section,
.security-section,
.stack-section,
.maintenance-section {
  background: #fff;
}

.technical-section,
.integration-support-section {
  background: #f8fbff;
}

.compact-list-grid,
.feature-cloud,
.tech-stack-grid {
  display: grid;
  gap: 12px;
}

.compact-list-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.split-grid .compact-list-grid {
  margin-top: 0;
}

.compact-list-grid span,
.feature-cloud span,
.tech-stack-grid span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #263d56;
  font-weight: 800;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.05);
}

.feature-cloud {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.app-feature-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.app-feature-columns article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.06);
}

.app-feature-columns h3 {
  margin-bottom: 16px;
}

.app-feature-columns ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.app-feature-columns li {
  position: relative;
  padding-left: 20px;
  color: #435469;
  font-weight: 700;
  line-height: 1.35;
}

.app-feature-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.technical-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.06);
}

.process-track-eight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-stack-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 34px;
}

.solutions-section {
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef8ff 100%);
}

.solutions-section .compact-list-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.solutions-section .compact-list-grid span {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  padding: 24px 18px 20px 76px;
  border-color: rgba(52, 119, 216, 0.16);
  color: var(--brand-navy);
  font-size: 0.95rem;
  line-height: 1.4;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 251, 255, 0.98) 100%),
    linear-gradient(135deg, rgba(44, 182, 163, 0.12), transparent 62%);
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.solutions-section .compact-list-grid span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  box-shadow: 0 14px 28px rgba(23, 79, 130, 0.18);
}

.solutions-section .compact-list-grid span::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 38px;
  width: 19px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.58), 0 16px 0 rgba(255, 255, 255, 0.36);
}

.solutions-section .compact-list-grid span:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 87, 145, 0.3);
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.13);
}

.solutions-section .app-feature-columns,
.solutions-section .technical-grid {
  gap: 20px;
  margin-top: 34px;
}

.solutions-section .app-feature-columns article,
.solutions-section .technical-grid article {
  position: relative;
  overflow: hidden;
  padding: 30px 26px 26px;
  border-color: rgba(52, 119, 216, 0.16);
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.solutions-section .app-feature-columns article::before,
.solutions-section .technical-grid article::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-blue), var(--teal));
  box-shadow: 0 14px 28px rgba(23, 79, 130, 0.18);
}

.solutions-section .app-feature-columns article::after,
.solutions-section .technical-grid article::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 55px;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 0 rgba(255, 255, 255, 0.58), 0 20px 0 rgba(255, 255, 255, 0.34);
}

.solutions-section .app-feature-columns article:hover,
.solutions-section .technical-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 87, 145, 0.3);
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.13);
}

.solutions-section .app-feature-columns h3,
.solutions-section .technical-grid h3 {
  color: var(--brand-navy);
}

.tech-section {
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 50%, #eef8ff 100%);
}

.tech-section .technical-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.tech-section .technical-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 30px 26px 26px;
  border-color: rgba(52, 119, 216, 0.16);
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tech-section .technical-grid article::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  box-shadow: 0 14px 28px rgba(23, 79, 130, 0.18);
}

.tech-section .technical-grid article::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 55px;
  width: 25px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 0 rgba(255, 255, 255, 0.58), 0 20px 0 rgba(255, 255, 255, 0.34);
}

.tech-section .technical-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 87, 145, 0.3);
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.13);
}

.tech-section .technical-grid h3 {
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.tech-section .technical-grid p {
  margin: 0;
  color: #536579;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.6;
}

.stack-section .tech-stack-grid {
  gap: 14px;
}

.stack-section .tech-stack-grid span {
  position: relative;
  min-height: 78px;
  padding: 18px 16px 16px 52px;
  border-color: rgba(52, 119, 216, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 34px rgba(16, 34, 54, 0.07);
}

.stack-section .tech-stack-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand-blue), var(--teal));
}

.stack-section {
  background: linear-gradient(135deg, #f6fcff 0%, #eff8ff 100%);
}

.single-testimonial {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.difference-section {
  background: #f8fbff;
}

.difference-panel {
  display: grid;
  gap: 14px;
}

.difference-panel div {
  padding: 24px;
}

.difference-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-navy);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.difference-panel p {
  margin: 0;
}

.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.differentiator-grid span,
.trust-card-grid span {
  display: block;
  padding: 18px;
  color: #263d56;
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid article {
  padding: 24px;
}

.card-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-weight: 900;
}

.card-grid p {
  margin: 12px 0 0;
}

.section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  align-items: end;
  gap: 28px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.industry-grid a,
.industry-grid > span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #263d56;
  font-weight: 800;
  background: #fff;
}

.industry-grid a:hover,
.industry-grid > span:hover {
  border-color: var(--brand-blue);
  color: var(--brand-navy);
}

.industries-section .industry-grid:not(.home-industry-grid) {
  gap: 18px;
}

.industries-section .industry-grid:not(.home-industry-grid) a,
.industries-section .industry-grid:not(.home-industry-grid) > span,
.industries-section .compact-list-grid span {
  position: relative;
  display: grid;
  min-height: 154px;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  padding: 24px 20px 44px 82px;
  border-color: rgba(52, 119, 216, 0.16);
  color: var(--brand-navy);
  font-size: 0.96rem;
  line-height: 1.35;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 251, 255, 0.98) 100%),
    linear-gradient(135deg, rgba(44, 182, 163, 0.12), transparent 62%);
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.industries-section .industry-grid:not(.home-industry-grid) a::before,
.industries-section .industry-grid:not(.home-industry-grid) > span::before,
.industries-section .compact-list-grid span::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  box-shadow: 0 14px 28px rgba(23, 79, 130, 0.18);
}

.industries-section .industry-grid:not(.home-industry-grid) a::after,
.industries-section .compact-list-grid span::after {
  position: absolute;
  left: 82px;
  right: 20px;
  bottom: 18px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.industries-section .industry-grid:not(.home-industry-grid) a::after {
  content: "Explore industry ->";
}

.industries-section .compact-list-grid span::after {
  content: "Industry focus";
}

.industries-section .industry-grid:not(.home-industry-grid) a:hover,
.industries-section .industry-grid:not(.home-industry-grid) > span:hover,
.industries-section .compact-list-grid span:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 87, 145, 0.3);
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.13);
}

.home-industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-industry-grid .industry-card {
  --industry-accent: var(--brand-blue);
  --industry-soft: #eef6ff;
  position: relative;
  display: grid;
  min-height: 238px;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  padding: 26px;
  border-color: rgba(23, 79, 130, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.98) 100%),
    linear-gradient(135deg, var(--industry-soft), transparent 62%);
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-industry-grid .industry-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--industry-accent), var(--teal));
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.home-industry-grid .industry-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--industry-accent) 42%, #ffffff);
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.14);
}

.home-industry-grid .industry-card:hover::after {
  transform: scaleX(1);
}

.industry-card-icon {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--industry-accent), var(--brand-blue-dark));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--industry-accent) 24%, transparent);
}

.industry-card-icon::before,
.industry-card-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.industry-card-icon::before {
  width: 20px;
  height: 3px;
  left: 16px;
  top: 16px;
  box-shadow: 0 9px 0 rgba(255, 255, 255, 0.64), 0 18px 0 rgba(255, 255, 255, 0.38);
}

.industry-card-icon::after {
  width: 8px;
  height: 8px;
  left: 9px;
  top: 13px;
  border-radius: 3px;
  box-shadow: 0 9px 0 rgba(255, 255, 255, 0.58), 0 18px 0 rgba(255, 255, 255, 0.38);
}

.home-industry-grid .industry-card strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.home-industry-grid .industry-card p {
  margin: 0;
  color: #536579;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.home-industry-grid .industry-card em {
  align-self: end;
  color: var(--industry-accent);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.home-industry-grid .industry-card em::after {
  content: " ->";
}

.home-industry-grid .healthcare,
.home-industry-grid .local-service {
  --industry-accent: #2cb6a3;
  --industry-soft: #e9f8f5;
}

.home-industry-grid .aesthetic,
.home-industry-grid .travel {
  --industry-accent: #3477d8;
  --industry-soft: #edf5ff;
}

.home-industry-grid .education,
.home-industry-grid .startups {
  --industry-accent: #5368c6;
  --industry-soft: #f0f2ff;
}

.home-industry-grid .real-estate,
.home-industry-grid .facility {
  --industry-accent: #0f6f9f;
  --industry-soft: #edf8fc;
}

.home-industry-grid .retail,
.home-industry-grid .professional {
  --industry-accent: #1b5791;
  --industry-soft: #eef6ff;
}

.home-industry-grid .manufacturing,
.home-industry-grid .logistics {
  --industry-accent: #407c8c;
  --industry-soft: #eef8fa;
}

.home-platform-section {
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef8ff 100%);
}

.home-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.platform-card {
  --platform-accent: var(--brand-blue);
  position: relative;
  display: grid;
  min-height: 248px;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(52, 119, 216, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--platform-accent), var(--teal));
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 87, 145, 0.32);
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.13);
}

.platform-card-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-top: 4px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--platform-accent), var(--brand-blue-dark));
  box-shadow: 0 14px 28px rgba(23, 79, 130, 0.18);
}

.platform-card-icon::before,
.platform-card-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
}

.platform-card-icon::before {
  left: 13px;
  right: 13px;
  bottom: 14px;
  height: 4px;
  border-radius: 999px;
  box-shadow: 0 -10px 0 rgba(255, 255, 255, 0.58), 0 -20px 0 rgba(255, 255, 255, 0.34);
}

.platform-card-icon::after {
  width: 9px;
  height: 9px;
  right: 12px;
  top: 12px;
  border-radius: 50%;
  box-shadow: -14px 12px 0 rgba(255, 255, 255, 0.48);
}

.platform-card small {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0f5f66;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(44, 182, 163, 0.14);
}

.platform-card h3 {
  margin: 0;
  color: var(--brand-navy);
}

.platform-card p {
  margin: 0;
  color: #536579;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.6;
}

.platform-card.analytics,
.platform-card.tag-manager {
  --platform-accent: #3477d8;
}

.platform-card.speed,
.platform-card.schema {
  --platform-accent: #2cb6a3;
}

.platform-card.crawler {
  --platform-accent: #5368c6;
}

.process-section {
  background: #fff;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.process-track article {
  padding: 20px;
}

.process-track span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: var(--brand-blue);
}

.process-track p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.home-process-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, #f7fbff 0%, #ffffff 46%, #eef8ff 100%);
}

.home-process-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.home-process-journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 119, 216, 0.12), var(--brand-blue), var(--teal), rgba(52, 119, 216, 0.12));
  transform: translateY(-50%);
}

.journey-core,
.journey-step {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(52, 119, 216, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
}

.journey-core {
  display: grid;
  min-height: 220px;
  align-content: center;
  gap: 12px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 41, 68, 0.98), rgba(24, 84, 138, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: auto, 34px 34px;
}

.journey-core span {
  color: #b9e9ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-core strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.25;
}

.journey-core p {
  margin: 0;
  color: #d8e8f8;
  font-weight: 600;
}

.journey-step {
  --step-accent: var(--brand-blue);
  display: grid;
  min-height: 240px;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.journey-step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--step-accent), var(--teal));
}

.journey-step:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 87, 145, 0.32);
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.13);
}

.journey-step > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--step-accent), var(--brand-blue-dark));
  box-shadow: 0 12px 28px rgba(23, 79, 130, 0.22);
}

.journey-step small {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0f5f66;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(44, 182, 163, 0.14);
}

.journey-step h3 {
  margin: 0;
  color: var(--brand-navy);
}

.journey-step p {
  margin: 0;
  color: #536579;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.6;
}

.journey-step.plan,
.journey-step.optimize {
  --step-accent: #3477d8;
}

.journey-step.design,
.journey-step.grow {
  --step-accent: #2cb6a3;
}

.journey-step.develop {
  --step-accent: #5368c6;
}

.seo-process-section {
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef8ff 100%);
}

.seo-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.seo-process-flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 119, 216, 0.16), var(--brand-blue), var(--teal), rgba(52, 119, 216, 0.16));
}

.seo-process-flow article {
  position: relative;
  z-index: 1;
  min-height: 292px;
  padding: 24px;
  border: 1px solid rgba(52, 119, 216, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 45px rgba(16, 34, 54, 0.08);
}

.seo-process-flow article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--teal));
}

.seo-process-flow span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  box-shadow: 0 12px 28px rgba(23, 79, 130, 0.24);
}

.seo-process-flow small {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand-navy);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: var(--soft-blue);
}

.seo-process-flow h3 {
  min-height: 48px;
}

.seo-process-flow p {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.local-seo-process-flow article {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.local-seo-process-flow span {
  background: linear-gradient(135deg, var(--brand-blue), var(--teal));
}

.local-seo-process-flow small {
  color: #0f5f66;
  background: rgba(44, 182, 163, 0.14);
}

.testimonials-section {
  background: var(--soft-blue);
}

.team-section {
  background: var(--soft-blue);
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.team-grid article:first-child {
  grid-column: 1 / -1;
}

.team-grid div {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
}

.team-grid article > div {
  margin-inline: auto;
}

.team-photo {
  width: 150px;
  aspect-ratio: 1;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--soft-blue);
  box-shadow: 0 18px 40px rgba(16, 34, 54, 0.16);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-grid article:first-child .team-photo {
  width: 170px;
}

.team-grid h3,
.team-grid span {
  text-align: center;
}

.team-grid span {
  display: block;
  margin-top: 8px;
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.team-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin: 12px auto 8px;
  padding: 6px 12px;
  border: 1px solid rgba(10, 102, 194, 0.22);
  border-radius: 999px;
  color: #0a66c2;
  font-size: 0.84rem;
  font-weight: 900;
  background: #f5faff;
}

.team-linkedin i {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  font-style: normal;
  font-size: 0.72rem;
  line-height: 1;
  background: #0a66c2;
}

.team-linkedin:hover {
  color: #fff;
  border-color: #0a66c2;
  background: #0a66c2;
}

.team-linkedin:hover i {
  color: #0a66c2;
  background: #fff;
}

.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
}

.testimonial-grid p {
  color: #263d56;
}

.testimonial-grid cite {
  color: var(--brand-navy);
  font-style: normal;
  font-weight: 800;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid article {
  overflow: hidden;
}

.blog-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft-blue);
}

.blog-grid h3,
.blog-grid p,
.blog-grid a {
  margin-left: 18px;
  margin-right: 18px;
}

.blog-grid h3 {
  margin-top: 18px;
}

.blog-grid p {
  margin-top: 12px;
}

.blog-grid a {
  margin-bottom: 20px;
}

.blog-page-hero {
  background:
    linear-gradient(135deg, rgba(237, 247, 255, 0.96), rgba(232, 251, 255, 0.72)),
    #f8fbff;
}

.blog-hero-visual img {
  border: 1px solid rgba(52, 119, 216, 0.18);
  box-shadow: 0 24px 60px rgba(16, 34, 54, 0.12);
}

.blog-listing-section {
  background: #fff;
}

.featured-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-blog-grid article {
  display: flex;
  flex-direction: column;
  border-color: rgba(52, 119, 216, 0.16);
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.featured-blog-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 87, 145, 0.3);
  box-shadow: 0 24px 58px rgba(16, 34, 54, 0.13);
}

.featured-blog-grid img {
  border-bottom: 1px solid rgba(52, 119, 216, 0.12);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.blog-grid .blog-card-body h3,
.blog-grid .blog-card-body p,
.blog-grid .blog-card-body a {
  margin-left: 0;
  margin-right: 0;
}

.blog-grid .blog-card-body h3 {
  margin-top: 12px;
}

.blog-grid .blog-card-body p {
  margin-top: 12px;
}

.blog-category {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--brand-navy);
  font-size: 0.76rem;
  font-weight: 900;
  background: var(--soft-blue);
}

.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 20px;
  padding: 0;
  list-style: none;
}

.blog-topic-list li {
  padding: 6px 9px;
  border: 1px solid rgba(52, 119, 216, 0.16);
  border-radius: 999px;
  color: #263d56;
  font-size: 0.78rem;
  font-weight: 800;
  background: #f8fbff;
}

.blog-card-body .text-link {
  margin-top: auto;
}

.blog-growth-section {
  background: var(--soft-blue);
}

.blog-detail-hero {
  background:
    linear-gradient(135deg, rgba(237, 247, 255, 0.96), rgba(255, 255, 255, 0.76)),
    #f8fbff;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(52, 119, 216, 0.16);
  border-radius: 999px;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 900;
  background: #fff;
}

.blog-article-section {
  background: #fff;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.article-content {
  padding: 34px;
  border: 1px solid rgba(52, 119, 216, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 34, 54, 0.08);
}

.article-content h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.article-content h3 {
  margin-top: 22px;
  color: var(--brand-navy);
}

.article-content p,
.article-content li {
  color: #263d56;
}

.article-content ol,
.article-content ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-content li::marker {
  color: var(--brand-blue);
  font-weight: 900;
}

.article-sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 18px;
}

.article-sidebar div {
  padding: 24px;
  border: 1px solid rgba(52, 119, 216, 0.16);
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 12px 34px rgba(16, 34, 54, 0.07);
}

.article-sidebar h2 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.article-sidebar a:not(.btn) {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(52, 119, 216, 0.14);
  color: var(--brand-navy);
  font-weight: 900;
}

.article-sidebar .btn {
  width: 100%;
}

.faq-section {
  background: #fff;
}

.trust-experience-section {
  background: #fff;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-top: 34px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand-blue);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 24px 22px;
  margin: 0;
}

.final-cta {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-navy) 62%, #0b2a48);
}

.contact-cards-section,
.locations-section,
.service-guidance-section,
.map-section,
.business-hours-section {
  background: #fff;
}

.contact-form-section,
.contact-process-section,
.business-hours-section {
  background: #f8fbff;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.contact-card,
.contact-form-panel,
.contact-support-panel,
.location-card-grid article,
.consultation-note,
.business-hours-card,
.contact-map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 54, 0.06);
}

.contact-card {
  min-height: 188px;
  padding: 24px;
}

.contact-card span {
  display: inline-grid;
  min-width: 48px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--brand-blue);
}

.contact-card a {
  color: var(--brand-navy);
  font-weight: 900;
}

.contact-card p {
  margin: 10px 0 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.contact-form-panel,
.contact-support-panel {
  padding: 30px;
}

.contact-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(52, 119, 216, 0.18);
  border-color: var(--brand-blue);
}

.contact-form .btn {
  margin-top: 20px;
}

.full-field {
  grid-column: 1 / -1;
}

.form-success {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(19, 141, 138, 0.22);
  border-radius: 8px;
  color: #166253;
  font-weight: 800;
  background: var(--soft-green);
}

.sticky-enquiry-button {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 154px;
  padding: 16px 12px;
  border: 0;
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  box-shadow: 0 18px 42px rgba(16, 34, 54, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
}

.sticky-enquiry-button:hover,
.sticky-enquiry-button:focus-visible {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
}

.sticky-enquiry-button:focus-visible,
.enquiry-close:focus-visible {
  outline: 3px solid rgba(52, 119, 216, 0.24);
  outline-offset: 3px;
}

.enquiry-panel {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1000;
  width: min(430px, calc(100vw - 26px));
  height: auto;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 20px;
  border-left: 1px solid rgba(52, 119, 216, 0.18);
  border-radius: 10px 0 0 10px;
  background:
    linear-gradient(160deg, rgba(237, 247, 255, 0.86), rgba(255, 255, 255, 0) 44%),
    #fff;
  box-shadow: -24px 0 60px rgba(16, 34, 54, 0.18);
  transform: translate(110%, -50%);
  visibility: hidden;
  transition: transform 0.24s ease, visibility 0.24s ease;
}

.enquiry-panel.is-open {
  transform: translate(0, -50%);
  visibility: visible;
}

.enquiry-panel.is-submitted {
  display: flex;
  flex-direction: column;
}

.enquiry-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.enquiry-panel.is-submitted .enquiry-panel-head {
  justify-content: flex-end;
  margin-bottom: 0;
}

.enquiry-panel.is-submitted .enquiry-panel-head > div {
  display: none;
}

.enquiry-panel-head .eyebrow {
  margin-bottom: 5px;
}

.enquiry-panel-head h2 {
  font-size: 1.2rem;
}

.enquiry-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand-navy);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  background: #f7fbff;
  cursor: pointer;
}

.enquiry-close:hover {
  color: #fff;
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin-top: 0;
}

.enquiry-form[hidden],
.enquiry-panel.is-submitted .enquiry-form {
  display: none;
}

.enquiry-form label {
  gap: 5px;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.enquiry-form label:nth-of-type(5),
.enquiry-form label:nth-of-type(6),
.enquiry-form .captcha-status,
.enquiry-form .bot-field,
.enquiry-form .btn {
  grid-column: 1 / -1;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  min-height: 39px;
  padding: 8px 10px;
  font-size: 0.9rem;
}

.enquiry-form textarea {
  height: 64px;
  min-height: 64px;
  resize: none;
}

.enquiry-form .captcha-field {
  gap: 6px;
  padding: 9px;
}

.captcha-field {
  padding: 14px;
  border: 1px solid rgba(52, 119, 216, 0.18);
  border-radius: 8px;
  background: #f7fbff;
}

.captcha-question {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 2px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--brand-navy);
  font-weight: 900;
  background: var(--soft-blue);
}

.enquiry-form .captcha-question {
  min-height: 26px;
  padding: 3px 9px;
}

.captcha-status {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.enquiry-form .captcha-status {
  margin: -3px 0 2px;
  font-size: 0.76rem;
}

.captcha-status.is-valid {
  color: #166253;
}

.captcha-status.is-invalid {
  color: #a33d24;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form .btn {
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
}

.enquiry-success-view {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 300px;
  padding: 44px 10px 34px;
  text-align: center;
}

.enquiry-success-view[hidden] {
  display: none;
}

.enquiry-success-view span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(19, 141, 138, 0.22);
  border-radius: 999px;
  color: #166253;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--soft-green);
}

.enquiry-success-view h2 {
  max-width: 320px;
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.enquiry-success-view p {
  max-width: 330px;
  margin-bottom: 0;
  color: #263d56;
  font-weight: 700;
}

.contact-support-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-support-list span {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #263d56;
  font-weight: 800;
  background: #f8fbff;
}

.location-card-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.location-card-grid article {
  padding: 24px;
}

.location-card-grid p {
  margin: 10px 0 16px;
}

.consultation-note {
  margin-top: 20px;
  padding: 22px 26px;
  border-left: 5px solid var(--brand-blue);
}

.consultation-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-navy);
  font-size: 1.04rem;
}

.consultation-note p {
  margin: 0;
}

.contact-process-track {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 28px;
  background:
    linear-gradient(rgba(52, 119, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 119, 216, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, #eaf6ff);
  background-size: 44px 44px, 44px 44px, auto;
}

.route-line {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 52%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--teal));
  transform: rotate(-18deg);
}

.map-pin-card {
  position: absolute;
  z-index: 2;
  width: min(260px, 44%);
  padding: 18px;
  border: 1px solid rgba(52, 119, 216, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-pin-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50% 50% 50% 0;
  background: var(--brand-blue);
  transform: rotate(-45deg);
}

.map-pin-card strong,
.map-pin-card span {
  display: block;
}

.map-pin-card strong {
  margin-bottom: 6px;
  color: var(--brand-navy);
}

.map-pin-card span {
  color: var(--muted);
  font-weight: 700;
}

.map-pin-card.noida {
  left: 26px;
  top: 42px;
}

.map-pin-card.delhi {
  right: 26px;
  bottom: 42px;
}

.business-hours-card {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.46fr);
  align-items: center;
  gap: 28px;
  padding: 34px;
}

.business-hours-card p:last-child,
.response-note p {
  margin-bottom: 0;
}

.response-note {
  padding: 22px;
  border-radius: 8px;
  background: var(--soft-blue);
}

.response-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-navy);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  opacity: 0.88;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  color: #d8e8f8;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px 0 36px;
}

.footer-brand img {
  width: 148px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 18px;
  color: #b9cfe5;
}

.footer-social {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.footer-social > span {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer .social-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-footer .social-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-footer .social-icon:hover,
.site-footer .social-icon:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  background: #eef6ff;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: #c8dced;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #b9cfe5;
}

.footer-bottom a {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .primary-nav {
    display: block;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-header.is-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: fit-content;
    margin-bottom: 18px;
  }

  .nav-list {
    display: grid;
    gap: 0;
    padding: 12px 0;
  }

  .nav-list > li > a,
  .nav-list > li > .nav-dropdown-trigger {
    padding: 12px 0;
  }

  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .mega-menu.single-menu {
    width: 100%;
  }

  .has-mega.is-open .mega-menu,
  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu {
    display: grid;
    transform: none;
  }

  .process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card-grid,
  .advanced-card-grid,
  .app-feature-columns,
  .feature-cloud,
  .technical-grid,
  .home-platform-grid,
  .compact-list-grid,
  .tech-stack-grid,
  .contact-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track-eight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-process-flow::before {
    display: none;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .section {
    padding: 62px 0;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .pillar-grid,
  .trust-strip .container,
  .section-head-row,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip ul,
  .cta-actions {
    justify-content: flex-start;
  }

  .card-grid.six,
  .capability-grid,
  .values-grid,
  .team-grid,
  .differentiator-grid,
  .testimonial-grid,
  .industry-grid,
  .home-process-journey,
  .process-track,
  .mission-grid,
  .service-card-grid,
  .advanced-card-grid,
    .technical-grid,
    .home-platform-grid,
    .app-feature-columns,
    .compact-list-grid,
    .feature-cloud,
    .tech-stack-grid,
    .contact-card-grid,
    .article-shell,
    .business-hours-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .home-process-journey::before {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .brand img {
    width: 132px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .client-grid,
  .metric-panel,
  .check-list.two-column,
  .benefit-grid,
  .ecosystem-grid,
  .card-grid.six,
  .capability-grid,
  .values-grid,
  .team-grid,
  .differentiator-grid,
  .trust-card-grid,
  .service-card-grid,
  .advanced-card-grid,
  .decision-grid,
  .technical-grid,
  .home-platform-grid,
  .app-feature-columns,
  .compact-list-grid,
  .feature-cloud,
  .tech-stack-grid,
  .testimonial-grid,
  .blog-grid,
    .industry-grid,
    .home-process-journey,
    .process-track,
    .mission-grid,
    .contact-card-grid,
    .form-grid,
    .contact-process-track,
    .seo-process-flow,
    .article-shell,
    .business-hours-card {
    grid-template-columns: 1fr;
  }

  .article-content {
    padding: 24px 20px;
  }

  .map-actions {
    display: grid;
  }

  .contact-form-panel,
  .contact-support-panel,
  .business-hours-card {
    padding: 22px;
  }

  .contact-map-card {
    min-height: 500px;
  }

  .map-pin-card {
    width: calc(100% - 52px);
  }

  .map-pin-card.delhi {
    top: auto;
  }

  .page-hero {
    padding: 46px 0 62px;
  }

  .hero-card-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    padding: 22px;
  }

  .platform-visual {
    min-height: 340px;
  }

  .sticky-enquiry-button {
    top: auto;
    right: 14px;
    bottom: 14px;
    min-width: 150px;
    min-height: auto;
    padding: 13px 16px;
    border-radius: 8px;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .enquiry-panel {
    right: 14px;
    width: calc(100% - 28px);
    max-height: calc(100vh - 96px);
    padding: 18px;
    border-radius: 10px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
