.contact-page .container.contact-pro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  min-height: 420px;
}
.contact-page .contact-side-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-page .contact-pro-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px #0001;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0;
}
.contact-page .contact-pro-list {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}
.contact-page .contact-pro-list li {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.contact-page .contact-pro-form-wrap {
  background: #f8fafd;
  border-radius: 12px;
  box-shadow: 0 2px 16px #0001;
  padding: 1.5rem 1.2rem;
  margin-bottom: 0;
}
.contact-page .contact-pro-form-wrap form {
  width: 100%;
}
.contact-page .about-page-hero-image.contact-pro-hero-image {
  display: block;
  margin: 0;
}
.contact-page .about-page-hero-image.contact-pro-hero-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0001;
}

.contact-page .contact-pro-hero-grid {
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: start;
  gap: 2rem;
}
.contact-page .contact-pro-hero-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0001;
}
.contact-page .about-pro-list {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
}
.contact-page .about-pro-list li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.contact-page .about-pro-list .icon {
  font-size: 1.4em;
  margin-right: 0.7em;
  animation: iconPulse 1.2s infinite alternate;
}
@keyframes iconPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.18); color: #0078d4; }
}
:root {
  --bg: #f6f9ff;
  --surface: #ffffff;
  --text: #0a1638;
  --muted: #4f5f8d;
  --primary: #1d4dff;
  --accent: #00a6ff;
  --border: #dce4ff;
  --radius: 14px;
  --shadow: 0 14px 30px rgba(18, 47, 152, 0.16);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 620px at 8% -10%, rgba(78, 112, 255, 0.1), rgba(78, 112, 255, 0) 60%),
    radial-gradient(980px 520px at 94% 10%, rgba(0, 196, 255, 0.09), rgba(0, 196, 255, 0) 64%),
    radial-gradient(920px 500px at 50% 108%, rgba(122, 91, 255, 0.08), rgba(122, 91, 255, 0) 68%),
    var(--bg);
  background-attachment: scroll;
  animation: none;
}

body {
  position: relative;
  isolation: isolate;
}

body.page-loading {
  overflow: hidden;
}

.page-load-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: rgba(246, 249, 255, 0.94);
  backdrop-filter: blur(2px);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.page-load-overlay.is-hidden {
  opacity: 0;
}

.page-load-spinner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid #c9d8ff;
  border-radius: 12px;
  background: #ffffff;
  color: #1f3f9a;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(20, 48, 136, 0.12);
}

.page-load-spinner img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  animation: formLoaderSpin 1s linear infinite;
}

body.home-page::before,
body.inner-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body.home-page::before {
  background-image:
    linear-gradient(180deg, rgba(249, 252, 255, 0.9), rgba(250, 253, 255, 0.94)),
    url("../images/slider/banner-lady.png");
  background-size: cover;
  background-position: center top;
  opacity: 0.22;
}

body.inner-page::before {
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.84), rgba(252, 254, 255, 0.94));
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, rgba(0, 178, 255, 0.9), rgba(35, 82, 255, 0.7));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 8px 18px rgba(35, 82, 255, 0.32);
  transition: opacity 0.2s ease;
}

.custom-cursor-enabled .cursor-trail {
  opacity: 0.95;
}

.custom-cursor-enabled a:hover ~ .cursor-trail,
.custom-cursor-enabled button:hover ~ .cursor-trail {
  opacity: 1;
}

.container {
  width: min(1600px, 97vw);
  margin: 0 auto;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(238, 244, 255, 0.98), rgba(208, 223, 251, 0.99));
  border-bottom: 1px solid #9eb6ef;
  backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(20, 54, 160, 0.1);
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(18, 50, 150, 0.2), rgba(30, 86, 233, 0.15) 52%, rgba(43, 134, 255, 0.18));
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: -35%;
  top: 0;
  width: 38%;
  min-width: 270px;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid #bdd1ff;
  pointer-events: none;
  box-shadow: 0 16px 34px rgba(20, 48, 136, 0.16);
  padding: 0.5rem;
}

body.home-page .site-header::after,
body.inner-page .site-header::after {
  display: none;
}

.site-header .container {
  width: min(1600px, 97vw);
}

.ai-hero .container {
  width: 100%;
  max-width: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  position: relative;
}

.nav-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #1a3fb4, #1e56e9 55%, #2b86ff);
  opacity: 0.85;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  color: #1a3da8;
}

.brand-logo {
  width: 178px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-block;
  background-image: url("../images/logo/fav-6-100x100.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  font-size: 0;
  flex-shrink: 0;
}

.brand > span:not(.brand-badge) {
  display: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  color: #1a3da8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  margin-right: 100px;
}

.main-nav > a,
.menu-item-has-children > a {
  color: #2148cf;
  font-weight: 600;
  padding: 0.45rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.main-nav > a:hover,
.menu-item-has-children > a:hover {
  color: #2148cf;
  border-color: #2148cf;
}

.main-nav > a.active,
.menu-item-has-children > a.active {
  color: #000000;
  border-color: #000000;
}

.menu-item-has-children { position: relative; }
.submenu {
  position: absolute;
  padding: 0.52rem 0.62rem;
  left: 0;
  color: #1b376f;
  font-weight: 600;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid #d6e2ff;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(20, 48, 136, 0.12);
  padding: 0.4rem;
  display: none;
  z-index: 120;
}

.services-menu {
  position: static;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1360px, 97vw);
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid #c4d6ff;
  border-radius: 14px;
  box-shadow: 0 20px 42px rgba(15, 35, 103, 0.16);
  display: none;
  grid-template-columns: 1.1fr 1fr 1fr;
  overflow: hidden;
  z-index: 140;
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.services-menu:hover > .mega-menu,
.services-menu:focus-within > .mega-menu,
.services-menu.menu-open > .mega-menu {
  display: grid;
}

.mega-col {
  padding: 2.2rem 2.2rem 2rem;
}

.mega-col + .mega-col {
  border-left: 1px solid #e5e8f2;
}

.mega-feature h3 {
  margin: 0 0 1rem;
  font-size: 2.45rem;
  color: #102148;
}

.mega-feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.mega-feature p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #102148;
}

.mega-feature .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: #ff5a1f;
  font-weight: 600;
}

.mega-group {
  margin-bottom: 1.4rem;
}

.mega-group:last-child {
  margin-bottom: 0;
}

.mega-group h4 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  color: #11234c;
}

.mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #173164;
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.35;
  padding: 0.42rem 0.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.mega-link:hover {
  color: #102148;
  background: #edf3ff;
  border-color: #dbe6ff;
}

.mega-link .arrow {
  color: #ff5a1f;
  font-weight: 700;
  flex-shrink: 0;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.16rem;
  margin-left: 0.25rem;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #1d3ea9;
  border: 1px solid #dbe4ff;
  background: #f7f9ff;
  border-radius: 6px;
  padding: 0.18rem 0.4rem;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact a:hover {
  background: #eaf0ff;
}

.header-contact .contact-icon {
  width: 12px;
  text-align: center;
  font-size: 0.72rem;
}

.header-contact .contact-icon.whatsapp-icon {
  color: #25d366;
  font-size: 0.7rem;
}

.expertise-mega {
  max-height: min(82vh, 780px);
  overflow-y: auto;
  overflow-x: hidden;
}

.expertise-parent {
  font-weight: 700;
  color: #11234c;
}

.expertise-child {
  font-size: 0.9rem;
  color: #24335a;
  padding-left: 0.15rem;
}

.submenu a {
  display: block;
  padding: 0.56rem 0.7rem;
  border-radius: 8px;
  color: var(--muted);
  border-bottom: 0;
  margin-bottom: 0.22rem;
}

.submenu a:hover,
.submenu a.active {
  background: #e4eeff;
  border-color: #c7d8ff;
  color: #123ab7;
}

.submenu {
  min-width: 290px;
  background: linear-gradient(180deg, #0f2e8a 0%, #0a1f66 100%);
  border: 1px solid #355ecf;
  box-shadow: 0 20px 40px rgba(8, 24, 84, 0.45);
}

.submenu a {
  font-weight: 700;
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 218, 255, 0.2);
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 2px;
}

.submenu a:hover,
.submenu a.active,
.submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: #9bb8ff;
  color: #ffffff;
}

.menu-item-has-children:hover > .submenu,
.menu-item-has-children:focus-within > .submenu { display: block; }

.submenu .menu-item-has-children { position: relative; }
.submenu .menu-item-has-children > .submenu {
  top: 0;
  left: calc(100% + 8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, #1d4dff, #009cff);
  box-shadow: var(--shadow);
}

.btn-light {
  border: 1px solid var(--border);
  background: #fff;
  color: #1e43d3;
}

.page-hero {
  padding: 2.6rem 0 1.5rem;
}

.page-hero .page-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
  gap: 1rem;
  align-items: center;
}

.page-hero .page-hero-thumb {
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.page-hero .page-hero-thumb img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.page-hero h1 {
  margin: 0.5rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.breadcrumb { color: var(--muted); font-size: 0.92rem; }
.lead { color: var(--muted); line-height: 1.7; }

.section { padding: 2.8rem 0 2.8rem 0; }
.section-head {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.section-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.2;
}

.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 20px rgba(15, 27, 61, 0.06);
}

.card h3 {
  margin: 0.45rem 0;
  font-size: 1.14rem;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.7rem;
}
.meta {
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.97rem;
}

.hero {
  padding: 3.2rem 0;
}

.ai-hero {
  padding: 0;
}

.ai-hero-slider {
  position: relative;
  min-height: 500px;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.ai-slide {
  position: absolute;
  inset: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: none;
}

.ai-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.ai-grid {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
  gap: 1.4rem;
}

.ai-copy {
  width: min(760px, 100%);
  max-width: 760px;
  padding: 2.6rem 3rem 1.6rem;
  position: relative;
  z-index: 2;
}

.ai-slide .year-ghost,
.ai-slide .kicker,
.ai-slide .floating-title,
.ai-slide .lead,
.ai-slide .btn,
.ai-slide .ai-tech-tiles,
.ai-slide .ai-media img {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ai-slide .ai-tech-tiles {
  transform: translate3d(-20px, 22px, 0);
}

.ai-slide .ai-media img {
  transform: translate3d(24px, 0, 0);
}

.ai-slide.active .year-ghost,
.ai-slide.active .kicker,
.ai-slide.active .floating-title,
.ai-slide.active .lead,
.ai-slide.active .btn,
.ai-slide.active .ai-tech-tiles,
.ai-slide.active .ai-media img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.ai-slide.active .ai-tech-tiles {
  transform: translate3d(0, 0, 0) scale(1);
}

.ai-slide.active .year-ghost { transition-delay: 0.08s; }
.ai-slide.active .kicker { transition-delay: 0.14s; }
.ai-slide.active .floating-title { transition-delay: 0.22s; }
.ai-slide.active .lead { transition-delay: 0.3s; }
.ai-slide.active .btn { transition-delay: 0.38s; }
.ai-slide.active .ai-tech-tiles { transition-delay: 0.24s; }
.ai-slide.active .ai-media img { transition-delay: 0.2s; }

.year-ghost {
  position: absolute;
  left: 2.8rem;
  top: 1.2rem;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(103, 108, 214, 0.12);
  pointer-events: none;
  user-select: none;
}

.ai-copy .kicker {
  color: #2d408f;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

.floating-title {
  margin: 0;
  font-size: clamp(1.9rem, 4.1vw, 3.55rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #2d3f89;
  animation: none;
  position: relative;
  z-index: 2;
}

.floating-title span {
  display: block;
  margin-top: 0.2rem;
  color: #4c44ea;
}

.ai-copy .lead {
  max-width: 72ch;
  margin: 0.85rem 0 1.3rem;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.ai-copy .btn {
  min-width: 160px;
  min-height: 48px;
  font-size: 0.98rem;
  position: relative;
  z-index: 2;
}

.ai-tech-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  width: min(980px, 100%);
  align-self: center;
  justify-self: start;
  z-index: 2;
  overflow: visible;
  padding: 0.2rem 0.2rem 0.35rem;
}

.ai-tech-tiles .tech-tile {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.48rem 0.9rem 0.48rem 0.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #15307f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(61, 107, 232, 0.22);
  box-shadow: 0 10px 18px rgba(18, 49, 132, 0.12);
  width: 100%;
  white-space: normal;
}

.ai-tech-tiles .tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #3a5cff, #0ea5ff);
  box-shadow: 0 6px 12px rgba(35, 85, 219, 0.28);
}

.ai-tech-tiles .tech-tile:nth-child(3n + 2) .tech-icon {
  background: linear-gradient(135deg, #7a48ff, #b36bff);
}

.ai-tech-tiles .tech-tile:nth-child(3n) .tech-icon {
  background: linear-gradient(135deg, #00a86b, #00c8a2);
}

@media (max-width: 1400px) {
  .ai-copy {
    width: min(700px, 100%);
    max-width: 700px;
  }

  .ai-tech-tiles {
    width: min(860px, 100%);
  }
}

@media (max-width: 1200px) {
  .ai-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 1rem;
  }

  .ai-copy {
    width: min(620px, 100%);
    max-width: 620px;
    padding: 3rem 2rem;
  }

  .ai-copy .lead {
    max-width: 68ch;
  }

  .ai-tech-tiles {
    width: min(740px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-tech-tiles .tech-tile {
    min-height: 44px;
    font-size: 0.82rem;
    padding: 0.42rem 0.72rem 0.42rem 0.44rem;
  }

  .ai-tech-tiles .tech-icon {
    min-width: 26px;
    height: 26px;
    font-size: 0.58rem;
  }

  .ai-slide .ai-tech-tiles {
    transform: translate3d(-16px, 22px, 0);
  }

  .ai-slide.active .ai-tech-tiles {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 1024px) {
  .ai-hero-slider,
  .ai-grid {
    min-height: auto;
  }

  .ai-hero-slider .ai-slide {
    display: none;
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  .ai-hero-slider .ai-slide.active {
    display: block;
    pointer-events: auto;
  }

  .ai-bg-1,
  .ai-bg-2,
  .ai-bg-3 {
    background-image: none;
  }

  .ai-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(270px, 1.08fr);
  }

  .ai-copy {
    width: min(560px, 100%);
    max-width: 560px;
    padding: 2.4rem 1.4rem;
  }

  .ai-copy .lead {
    max-width: 56ch;
  }

  .ai-tech-tiles {
    width: min(620px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-tech-tiles .tech-tile {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .ai-tech-tiles .tech-icon {
    min-width: 24px;
    height: 24px;
    font-size: 0.55rem;
  }

  .ai-slide .ai-tech-tiles {
    transform: translate3d(-12px, 22px, 0);
  }

  .ai-slide.active .ai-tech-tiles {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.ai-media {
  display: none;
}

.ai-media img {
  display: none;
}

.ai-slide::before,
.ai-slide::after {
  content: none;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ai-bg-1 {
  background-image: url("../images/slider/man-standing-laptop2.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

.ai-bg-1::before {
  width: 520px;
  height: 520px;
  left: -120px;
  top: -180px;
  background: radial-gradient(circle, rgba(96, 83, 231, 0.12), rgba(96, 83, 231, 0));
  animation: none;
}

.ai-bg-1::after {
  width: 560px;
  height: 560px;
  right: -140px;
  bottom: -210px;
  background: radial-gradient(circle, rgba(74, 167, 255, 0.18), rgba(74, 167, 255, 0));
  animation: none;
}

.ai-bg-2 {
  background-image: url("../images/slider/banner-lady.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

.ai-bg-2::before {
  width: 620px;
  height: 620px;
  left: 35%;
  top: -280px;
  background: radial-gradient(circle, rgba(109, 101, 243, 0.16), rgba(109, 101, 243, 0));
  animation: none;
}

.ai-bg-2::after {
  width: 460px;
  height: 460px;
  left: -170px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(73, 172, 255, 0.14), rgba(73, 172, 255, 0));
}

.ai-bg-3 {
  background-image: url("../images/slider/man-standing-laptop2.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

.ai-bg-3::before {
  width: 580px;
  height: 580px;
  right: -120px;
  top: -170px;
  background: radial-gradient(circle, rgba(108, 91, 239, 0.17), rgba(108, 91, 239, 0));
  animation: none;
}

.ai-bg-3::after {
  width: 420px;
  height: 420px;
  left: 12%;
  bottom: -180px;
  background: radial-gradient(circle, rgba(64, 192, 232, 0.14), rgba(64, 192, 232, 0));
}

.ai-slide.active .floating-title {
  animation: none;
}

@keyframes floatHeading {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes drift {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes pulseGlow {
  0%,
  100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientShift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0 0;
  }
  50% {
    background-position: 4% 2%, 96% 4%, 52% 96%, 0 0;
  }
  100% {
    background-position: 7% 4%, 93% 8%, 49% 92%, 0 0;
  }
}

@keyframes headerShine {
  0% { transform: translateX(0); }
  100% { transform: translateX(420%); }
}

@keyframes floatSoft {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.home-block {
  padding: 3.2rem 0;
}

.service-highlights {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.94));
  border-top: 1px solid #e5ecff;
}

.service-highlights .section-head {
  justify-items: center;
  text-align: center;
  margin-bottom: 1.25rem;
}

.service-highlights .section-head .lead {
  max-width: 92ch;
}

.technology-stack-section {
  background: linear-gradient(180deg, #f7faff, #ffffff);
  border-top: 1px solid #e2e9ff;
}

.technology-stack-head {
  justify-items: center;
  text-align: center;
  margin-bottom: 1.1rem;
}

.technology-stack-head .lead {
  max-width: 80ch;
}

.technology-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.technology-stack-card {
  border: 1px solid #dbe5ff;
  border-top: 3px solid #2e55d4;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 10px 22px rgba(20, 47, 132, 0.08);
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.technology-stack-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -45%;
  width: 45%;
  height: 260%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: rotate(20deg) translateX(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.75s ease, opacity 0.35s ease;
}

.technology-stack-card:hover {
  transform: translateY(-4px);
  border-color: #bdd0ff;
  box-shadow: 0 14px 26px rgba(20, 47, 132, 0.14);
}

.technology-stack-card:hover::after {
  opacity: 1;
  transform: rotate(20deg) translateX(320%);
}

.technology-stack-card h3 {
  margin: 0;
  color: #142a60;
  font-size: 1.05rem;
  line-height: 1.3;
}

.technology-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.technology-list li {
  margin: 0;
  padding: 0.34rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #d5e1ff;
  background: #f2f6ff;
  color: #2a3f7a;
  font-size: 0.83rem;
  line-height: 1.35;
  font-weight: 600;
}

.expertise-spotlight {
  background: linear-gradient(180deg, #f6f8ff, #f2f6ff);
  border-top: 1px solid #dfe8ff;
}

.process-follow {
  background: linear-gradient(180deg, #f7faff, #eef4ff);
  border-top: 1px solid #dce6ff;
}

.ceo-message {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border-top: 1px solid #e2e9ff;
}

.why-choose {
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border-top: 1px solid #e3eaff;
}

.success-stories {
  background: linear-gradient(180deg, #edf2ff, #f7f9ff);
  border-top: 1px solid #d9e3ff;
}

.company-stats {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border-top: 1px solid #e2e9ff;
}

.team-members {
  background: linear-gradient(180deg, #f9fbff, #ffffff);
  border-top: 1px solid #e4ebff;
}

.expertise-spotlight-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.orbit-showcase {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border: 2px dotted var(--border);
  border-radius: 50%;
}

.orbit-ring-inner {
  width: 430px;
  height: 430px;
}

.orbit-ring-outer {
  width: 540px;
  height: 540px;
  opacity: 0.85;
}

.orbit-core {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.orbit-dot-1 { top: 96px; left: 138px; }
.orbit-dot-2 { top: 112px; left: 248px; }
.orbit-dot-3 { top: 165px; right: 105px; }
.orbit-dot-4 { bottom: 108px; right: 122px; }

.orbit-avatar {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.orbit-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-avatar-1 {
  width: 150px;
  height: 150px;
  top: 8px;
  left: 225px;
}

.orbit-avatar-2 {
  width: 62px;
  height: 62px;
  top: 190px;
  left: 28px;
}

.orbit-avatar-3 {
  width: 160px;
  height: 160px;
  top: 225px;
  right: 22px;
}

.orbit-avatar-4 {
  width: 150px;
  height: 150px;
  bottom: 54px;
  left: 72px;
}

.orbit-avatar-5 {
  width: 84px;
  height: 84px;
  bottom: 120px;
  left: 320px;
}

.expertise-spotlight-copy .section-title {
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.expertise-spotlight-copy .section-title span {
  color: var(--primary);
}

.expertise-spotlight-copy .lead {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.expertise-spotlight-copy .btn {
  margin-top: 0.55rem;
}

.team-members {
  background: linear-gradient(180deg, #f9fbff, #ffffff);
  border-top: 1px solid #e4ebff;
  padding: 2.4rem 0 2.5rem;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.team-directory {
  display: grid;
  gap: 1.25rem;
}

.team-intro {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 760px;
  margin: 0 auto 0.2rem;
  text-align: center;
}

.team-intro .section-title {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
}

.team-grid-expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.team-gallery-slider {
  position: relative;
  border: 1px solid #dfe7ff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(18, 39, 112, 0.08);
  padding: 1rem;
}

.team-gallery-slider .slide {
  display: none;
}

.team-gallery-slider .slide.active {
  display: block;
}

.team-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.team-gallery-card {
  border: 1px solid #e3e9ff;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(21, 39, 112, 0.06);
}

.team-gallery-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f9ff, #edf3ff);
  border: 1px solid #dbe4ff;
  border-radius: 10px;
  padding: 0;
}

.team-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
}

.team-gallery-card h3 {
  margin: 0.8rem 0.8rem 0.25rem;
  font-size: 1.03rem;
  line-height: 1.25;
  color: #13254f;
}

.team-gallery-card p {
  margin: 0 0.8rem 0.85rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5f6e9f;
  font-weight: 700;
}

.about-page .about-intro-card {
  max-width: 980px;
  margin: 0 auto;
}

.about-page .about-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: 1.1rem;
  align-items: start;
}

.about-page .about-page-hero-copy {
  align-self: start;
}

.about-page .about-page-hero-image {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  justify-self: end;
}

.about-page .about-page-hero-image img {
  width: min(620px, 100%);
  height: auto;
  display: block;
}

.about-page .about-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-page .about-content-card {
  height: 100%;
}

.about-page .about-steps {
  display: grid;
  gap: 0.7rem;
}

.about-page .about-step {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 0.8rem;
}

.about-page .about-step h4 {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: 1rem;
}

.about-page .about-step .meta {
  margin: 0;
}

.about-page .about-cta-card {
  text-align: center;
}

.about-page .about-cta-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.about-page .about-cta-separator {
  color: var(--muted);
  font-weight: 600;
}

.about-page .about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.about-page .about-cta-btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}

.about-page .about-cta-btn-secondary {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface);
}

.about-page .about-pro-hero {
  padding-bottom: 1.9rem;
}

.about-page .about-page-hero-copy h1 {
  margin-bottom: 0.8rem;
  line-height: 1.16;
}

.about-page .about-pro-hero-points {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.48rem;
}

.about-page .about-pro-hero-points span {
  padding: 0.6rem 0.78rem;
  border: 1px solid #dce5ff;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  color: #314374;
  font-size: 0.94rem;
}

.about-page .about-pro-metrics {
  padding-top: 0.4rem;
}

.about-page .about-pro-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-page .about-pro-metric {
  border-top: 3px solid #2d58de;
  box-shadow: 0 10px 24px rgba(21, 47, 130, 0.1);
}

.about-page .about-pro-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.about-page .about-pro-story-copy {
  height: 100%;
}

.about-page .about-pro-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.62rem;
}

.about-page .about-pro-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.about-page .about-pro-list .icon {
  min-width: 1.2rem;
}

.about-page .about-pro-story-image {
  margin: 0;
}

.about-page .about-pro-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page .about-pro-icon-board {
  height: 100%;
  display: grid;
  gap: 0.7rem;
}

.about-page .about-pro-icon-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.62rem;
  align-items: start;
  border: 1px solid #dde6ff;
  border-radius: 10px;
  background: #fff;
  padding: 0.68rem;
}

.about-page .about-pro-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #2855de, #2a87ff);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(35, 82, 220, 0.24);
  animation: aboutIconPulse 2.8s ease-in-out infinite;
}

.about-page .about-pro-icon-item:nth-child(2) .about-pro-icon {
  animation-delay: 0.2s;
}

.about-page .about-pro-icon-item:nth-child(3) .about-pro-icon {
  animation-delay: 0.4s;
}

.about-page .about-pro-icon-item:nth-child(4) .about-pro-icon {
  animation-delay: 0.6s;
}

.about-page .about-pro-icon-item h4 {
  margin: 0 0 0.24rem;
  color: #173164;
  font-size: 0.98rem;
}

.about-page .about-pro-icon-item .meta {
  margin: 0;
}

@keyframes aboutIconPulse {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.about-page .about-pro-steps .about-step {
  border-left: 4px solid #2955de;
}

.about-page .about-pro-service-grid {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.62rem;
}

.about-page .about-pro-service {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  border: 1px solid #dde6ff;
  border-radius: 10px;
  background: #fff;
  padding: 0.68rem 0.75rem;
  color: #334473;
  font-weight: 600;
}

.about-page .about-pro-service .emoji {
  font-size: 1.05rem;
}

.about-page .about-pro-animate {
  opacity: 0;
  transform: translateY(16px);
  animation: aboutFadeUp 0.7s ease forwards;
}

.about-page .about-pro-delay-1 {
  animation-delay: 0.12s;
}

.about-page .about-pro-delay-2 {
  animation-delay: 0.24s;
}

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

@media (prefers-reduced-motion: reduce) {
  .about-page .about-pro-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .about-page .about-pro-icon {
    animation: none;
  }
}

.services-page .services-pro-hero {
  padding-bottom: 1.5rem;
}

.services-page .page-hero + .inner-page-overview {
  padding-top: 0.25rem;
  margin-top: 0;
}

.services-page .inner-page-overview .container {
  padding-top: 0;
}

.services-page .inner-page-overview h2 {
  margin-top: 0;
}

.services-page .services-pro-hero-copy {
  max-width: none;
}

.services-page .services-pro-hero-copy h1 {
  margin-bottom: 0.72rem;
}

.services-page .services-pro-inline-overview {
  margin-top: 0.72rem;
}

.services-page .services-pro-inline-overview h2 {
  margin: 0 0 0.38rem;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  color: #1a2f67;
}

.services-page .services-pro-inline-overview p {
  margin: 0.22rem 0;
  color: #55648f;
}

.services-page .services-pro-inline-overview p + p {
  margin-top: 0.62rem;
}

.services-page .services-pro-inline-overview .meta {
  display: block;
  margin-top: 0.9rem;
}

body.services-page.simple-layout.inner-redesign .services-pro-inline-overview p {
  margin: 0 !important;
}

body.services-page.simple-layout.inner-redesign .services-pro-inline-overview p + p {
  margin-top: 1rem !important;
}

body.services-page.simple-layout.inner-redesign .services-pro-inline-overview .meta {
  margin-top: 1.15rem !important;
}

.services-page .services-pro-hero-grid {
  display: grid;
  grid-template-columns: 75% 25%;
  gap: 0.55rem;
  align-items: start;
}

.services-page .services-pro-tags {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.services-page.simple-layout.inner-redesign .services-pro-tags {
  margin-top: 1.6rem !important;
}

.services-page .services-pro-tags span {
  border: 1px solid #dce5ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  color: #2e4277;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.42rem 0.7rem;
}

.services-page .services-pro-hero-image {
  margin: 0;
  justify-self: start;
  width: 100%;
  max-width: none;
}

.services-page .services-pro-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateX(-26px);
}

.services-page .services-pro-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-page .services-pro-metric {
  border-top: 3px solid #2d58de;
  box-shadow: 0 10px 24px rgba(22, 48, 133, 0.1);
}

.services-page .services-pro-head {
  margin-bottom: 1rem;
}

.services-page .services-pro-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-page .services-pro-service {
  height: 100%;
  border-top: 3px solid #2f58dc;
  box-shadow: 0 10px 20px rgba(18, 47, 132, 0.09);
}

.services-page .services-pro-service h3 {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.services-page .services-pro-service .emoji {
  font-size: 1.05rem;
}

.services-page .services-pro-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.94fr);
  gap: 1rem;
}

.services-page .services-pro-process,
.services-page .services-pro-cta {
  height: 100%;
}

.services-page .services-pro-steps {
  display: grid;
  gap: 0.72rem;
}

.services-page .services-pro-step {
  border: 1px solid #dde6ff;
  border-left: 4px solid #2f58dc;
  border-radius: 10px;
  background: #fff;
  padding: 0.76rem;
}

.services-page .services-pro-step h4 {
  margin: 0 0 0.32rem;
}

.services-page .services-pro-cta {
  display: grid;
  align-content: center;
  gap: 0.6rem;
}

.services-page .services-pro-animate,
.contact-page .contact-pro-animate {
  opacity: 0;
  transform: translateY(16px);
  animation: aboutFadeUp 0.7s ease forwards;
}

.services-page .services-pro-delay-1,
.contact-page .contact-pro-delay-1 {
  animation-delay: 0.12s;
}

.services-page .services-pro-delay-2,
.contact-page .contact-pro-delay-2 {
  animation-delay: 0.24s;
}

.contact-page .contact-pro-hero {
  padding-bottom: 1.6rem;
}

.contact-page .contact-pro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-page .contact-pro-badges {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-page .contact-pro-merged-copy {
  margin-top: 2rem;
  padding-top: 0.1rem;
}

.contact-page .contact-pro-merged-copy h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  color: #163b94;
  line-height: 1.3;
}

.contact-page .contact-pro-merged-copy p {
  margin: 0.45rem 0 0;
  color: #39538f;
  line-height: 1.65;
}

.contact-page .contact-pro-merged-copy .meta {
  margin-top: 0.35rem;
}

.contact-page .contact-pro-badges span {
  border: 1px solid #dce5ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  color: #2e4277;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.44rem 0.72rem;
}

.contact-page .contact-pro-hero-copy .lead {
  max-width: 70ch;
  margin-top: 1rem;
  margin-bottom: 0;
}

.contact-page .contact-pro-hero-image {
  margin: 0;
  justify-self: end;
  align-self: start;
}

.contact-page .contact-pro-hero-image img {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

.contact-page .contact-pro-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.contact-page .contact-pro-card {
  border-top: 3px solid #2f58dc;
  box-shadow: 0 10px 20px rgba(18, 47, 132, 0.09);
}

.contact-page .contact-pro-list {
  margin: 0;
  padding-left: 1rem;
}

.contact-page .contact-pro-form-wrap {
  border: 1px solid #d5e1ff;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 16px 30px rgba(24, 51, 145, 0.12);
  padding: 1.1rem;
}

.contact-page .contact-pro-form-wrap #contactStatus {
  margin: 0 0 0.8rem;
  max-width: none;
}

.contact-page .contact-pro-form-wrap .contact-form {
  margin: 0;
  max-width: none;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .services-page .services-pro-animate,
  .contact-page .contact-pro-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

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

  .page-hero .page-hero-thumb img {
    height: auto;
    max-height: 320px;
  }

  .about-page .about-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-page-hero-image {
    justify-self: stretch;
  }

  .about-page .about-page-hero-image img {
    width: 100%;
  }

  .about-page .about-project-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-pro-metric-grid,
  .about-page .about-pro-story-grid {
    grid-template-columns: 1fr;
  }

  .services-page .services-pro-hero-grid,
  .services-page .services-pro-metric-grid,
  .services-page .services-pro-catalog-grid,
  .services-page .services-pro-process-grid,
  .contact-page .contact-pro-hero-grid,
  .contact-page .contact-pro-layout {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-pro-hero-image {
    justify-self: stretch;
  }

  .contact-page .contact-pro-hero-image img {
    width: 100%;
    max-width: none;
  }

  .services-page .services-pro-hero-image img {
    transform: none;
  }
}

.hire-html-page .hire-html-section {
  padding-top: 1.6rem;
}

.hire-html-page .page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.1rem;
  align-items: center;
}

.hire-html-page .hire-html-hero-visual {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.hire-html-page .hire-html-hero-visual img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.hire-html-page .hire-html-hero-points {
  display: grid;
  gap: 0.5rem;
  padding: 0.85rem;
}

.hire-html-page .hire-html-hero-points span {
  font-weight: 700;
  color: #18357e;
  font-size: 0.9rem;
}

.hire-html-page .hire-html-stats-strip {
  padding-top: 1rem;
}

.hire-html-page .hire-html-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hire-html-page .hire-html-stats-grid .card {
  border-top: 3px solid #2f58dc;
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.hire-html-page .hire-html-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hire-html-page .hire-html-card {
  height: 100%;
  border-top: 3px solid #2f58dc;
  box-shadow: 0 10px 20px rgba(18, 47, 132, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hire-html-page .hire-html-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(18, 47, 132, 0.14);
}

.hire-html-page .hire-html-list,
.hire-html-page .hire-html-steps,
.hire-html-page .hire-html-faq-grid {
  display: grid;
  gap: 0.75rem;
}

.hire-html-page .hire-html-faq-item {
  border: 1px solid #d8e3ff;
  border-radius: 10px;
  background: #fff;
  padding: 0.8rem;
}

.hire-html-page .hire-html-faq-item h3 {
  margin-top: 0;
}

.hire-html-page .hire-html-step {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  padding: 0.8rem;
}

.hire-html-page .hire-html-step h3 {
  margin: 0 0 0.35rem;
}

.hire-html-page .hire-html-step .meta {
  margin: 0;
}

.hire-html-page .hire-html-hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hire-html-page .hire-html-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.hire-html-page .hire-html-btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}

.hire-html-page .hire-html-btn-secondary {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface);
}

.hire-html-page .hire-html-cta-card {
  text-align: center;
}

.hire-mern-page .hire-mern-cta-actions {
  justify-content: center;
}

.hire-mern-page .mern-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-right: 0;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #d7e2ff;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  color: #213f86;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  vertical-align: middle;
}

.hire-mern-page .mern-title-mark {
  color: #2f58dc;
  margin-right: 0.3rem;
  font-weight: 700;
}

.hire-mern-page .hire-html-hero-visual img {
  animation: mernFloat 3.2s ease-in-out infinite;
}

.hire-mern-page .hire-mern-delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.hire-mern-page .hire-mern-highlight-card {
  background: linear-gradient(160deg, #ffffff, #f4f8ff);
}

.hire-mern-page .hire-mern-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hire-mern-page .hire-mern-mini-grid > div {
  border: 1px solid #d7e2ff;
  border-radius: 10px;
  padding: 0.65rem;
  background: #ffffff;
}

.hire-mern-page .hire-mern-mini-grid h3 {
  margin: 0 0 0.22rem;
  font-size: 0.95rem;
}

.hire-mern-page .hire-mern-mini-grid .meta {
  margin: 0;
  font-size: 0.86rem;
}

.hire-mern-page .hire-mern-process-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 0.95rem;
  align-items: start;
}

.hire-mern-page .hire-mern-process-intro {
  position: sticky;
  top: 96px;
}

.hire-mern-page .hire-mern-process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hire-mern-page .hire-html-stats-grid .card,
.hire-mern-page .hire-html-grid .hire-html-card,
.hire-mern-page .hire-html-step,
.hire-mern-page .hire-html-faq-item,
.hire-mern-page .testimonial-card {
  animation: mernFadeUp 0.55s ease both;
}

.hire-mern-page .hire-html-stats-grid .card:nth-child(2),
.hire-mern-page .hire-html-grid .hire-html-card:nth-child(2),
.hire-mern-page .hire-html-step:nth-child(2),
.hire-mern-page .hire-html-faq-item:nth-child(2),
.hire-mern-page .testimonial-card:nth-child(2) {
  animation-delay: 0.08s;
}

.hire-mern-page .hire-html-stats-grid .card:nth-child(3),
.hire-mern-page .hire-html-grid .hire-html-card:nth-child(3),
.hire-mern-page .hire-html-step:nth-child(3),
.hire-mern-page .hire-html-faq-item:nth-child(3),
.hire-mern-page .testimonial-card:nth-child(3) {
  animation-delay: 0.16s;
}

.hire-mern-page .hire-html-stats-grid .card:nth-child(4),
.hire-mern-page .hire-html-grid .hire-html-card:nth-child(4),
.hire-mern-page .hire-html-step:nth-child(4),
.hire-mern-page .hire-html-faq-item:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes mernFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes mernFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hire-mern-page .hire-html-hero-visual img,
  .hire-mern-page .hire-html-stats-grid .card,
  .hire-mern-page .hire-html-grid .hire-html-card,
  .hire-mern-page .hire-html-step,
  .hire-mern-page .hire-html-faq-item,
  .hire-mern-page .testimonial-card {
    animation: none;
  }
}

.hire-devops-page .hire-devops-cta-actions {
  justify-content: center;
}

.hire-mern-page .page-hero,
.hire-js-page .page-hero,
.hire-devops-page .page-hero {
  padding-top: 1.2rem;
  padding-bottom: 0.75rem;
}

.hire-mern-page .hire-html-hero-copy,
.hire-js-page .hire-html-hero-copy,
.hire-devops-page .hire-html-hero-copy {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.hire-mern-page .hire-html-hero-copy .lead,
.hire-js-page .hire-html-hero-copy .lead,
.hire-devops-page .hire-html-hero-copy .lead {
  margin: 0.35rem 0 0.55rem;
}

.hire-hero-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.55rem 0 0.85rem;
}

.hire-js-page .hire-hero-icon-row .hire-js-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-right: 0;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #d7e2ff;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  color: #213f86;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.hire-laravel-page .page-hero {
  background: radial-gradient(circle at 85% 5%, rgba(255, 224, 130, 0.22), rgba(255, 255, 255, 0) 38%),
    linear-gradient(155deg, #fffef7 0%, #fff9e7 52%, #f8fbff 100%);
}

.hire-laravel-page .laravel-icon-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
}

.hire-laravel-page .laravel-icon-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 178, 66, 0.44);
  background: #fff;
  color: #875100;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(230, 142, 24, 0.12);
}

.hire-laravel-page .hire-html-hero-visual img {
  width: min(100%, 430px);
  object-fit: contain;
  animation: laravelFloat 3.3s ease-in-out infinite;
}

.hire-laravel-page .hire-laravel-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hire-laravel-page .hire-laravel-image-card {
  overflow: hidden;
}

.hire-laravel-page .hire-laravel-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.9rem;
  margin-bottom: 0.85rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hire-laravel-page .hire-laravel-image-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.hire-laravel-page .hire-html-stats-grid .card,
.hire-laravel-page .hire-laravel-image-card,
.hire-laravel-page .hire-html-grid .hire-html-card,
.hire-laravel-page .hire-html-step,
.hire-laravel-page .hire-html-faq-item,
.hire-laravel-page .testimonial-card {
  animation: laravelFadeUp 0.55s ease both;
}

.hire-laravel-page .hire-html-stats-grid .card:nth-child(2),
.hire-laravel-page .hire-laravel-image-card:nth-child(2),
.hire-laravel-page .hire-html-grid .hire-html-card:nth-child(2),
.hire-laravel-page .hire-html-step:nth-child(2),
.hire-laravel-page .hire-html-faq-item:nth-child(2),
.hire-laravel-page .testimonial-card:nth-child(2) {
  animation-delay: 0.08s;
}

.hire-laravel-page .hire-html-stats-grid .card:nth-child(3),
.hire-laravel-page .hire-html-step:nth-child(3),
.hire-laravel-page .hire-html-faq-item:nth-child(3),
.hire-laravel-page .testimonial-card:nth-child(3) {
  animation-delay: 0.16s;
}

.hire-laravel-page .hire-html-step:nth-child(4),
.hire-laravel-page .hire-html-faq-item:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes laravelFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes laravelFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hire-ai-automation-page .page-hero {
  background: radial-gradient(circle at 82% 6%, rgba(118, 242, 223, 0.25), rgba(255, 255, 255, 0) 40%),
    linear-gradient(150deg, #f6fffd 0%, #eefbff 55%, #f6f9ff 100%);
}

.hire-ai-automation-page .ai-automation-icon-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
}

.hire-ai-automation-page .ai-automation-icon-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(35, 184, 174, 0.42);
  background: #fff;
  color: #0e6f68;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(26, 153, 146, 0.14);
}

.hire-ai-automation-page .hire-html-hero-visual img {
  width: min(100%, 430px);
  object-fit: contain;
  animation: aiAutomationFloat 3.4s ease-in-out infinite;
}

.hire-ai-automation-page .ai-automation-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hire-ai-automation-page .ai-automation-image-card {
  overflow: hidden;
}

.hire-ai-automation-page .ai-automation-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.9rem;
  margin-bottom: 0.85rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hire-ai-automation-page .ai-automation-image-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.hire-ai-automation-page .hire-html-stats-grid .card,
.hire-ai-automation-page .ai-automation-image-card,
.hire-ai-automation-page .hire-html-grid .hire-html-card,
.hire-ai-automation-page .hire-html-step,
.hire-ai-automation-page .hire-html-faq-item,
.hire-ai-automation-page .testimonial-card {
  animation: aiAutomationFadeUp 0.55s ease both;
}

.hire-ai-automation-page .hire-html-stats-grid .card:nth-child(2),
.hire-ai-automation-page .ai-automation-image-card:nth-child(2),
.hire-ai-automation-page .hire-html-grid .hire-html-card:nth-child(2),
.hire-ai-automation-page .hire-html-step:nth-child(2),
.hire-ai-automation-page .hire-html-faq-item:nth-child(2),
.hire-ai-automation-page .testimonial-card:nth-child(2) {
  animation-delay: 0.08s;
}

.hire-ai-automation-page .hire-html-stats-grid .card:nth-child(3),
.hire-ai-automation-page .hire-html-step:nth-child(3),
.hire-ai-automation-page .hire-html-faq-item:nth-child(3),
.hire-ai-automation-page .testimonial-card:nth-child(3) {
  animation-delay: 0.16s;
}

.hire-ai-automation-page .hire-html-step:nth-child(4),
.hire-ai-automation-page .hire-html-faq-item:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes aiAutomationFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes aiAutomationFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hire-js-page .page-hero .container {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
}

.hire-js-page .hire-html-hero-visual {
  align-self: start;
}

.hire-js-page .hire-html-hero-visual img {
  animation: jsFloat 3.2s ease-in-out infinite;
}

.hire-js-page .hire-js-tool-tabs {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hire-js-page .hire-js-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid #d7e2ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  color: #213f86;
  font-size: 0.81rem;
  font-weight: 700;
  padding: 0.3rem 0.58rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hire-js-page .hire-js-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(28, 69, 171, 0.14);
}

.hire-js-page .hire-js-tab-icon {
  width: 1.12rem;
  height: 1.12rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #2f58dc;
  font-size: 0.63rem;
  font-weight: 800;
}

.hire-js-page .hire-js-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.34rem;
  border-radius: 999px;
  background: rgba(47, 88, 220, 0.12);
  color: #1844b3;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
}

.hire-js-page .hire-html-stats-grid .card,
.hire-js-page .hire-html-grid .hire-html-card,
.hire-js-page .hire-html-step,
.hire-js-page .hire-html-faq-item,
.hire-js-page .testimonial-card {
  animation: jsFadeUp 0.55s ease both;
}

.hire-js-page .hire-html-stats-grid .card:nth-child(2),
.hire-js-page .hire-html-grid .hire-html-card:nth-child(2),
.hire-js-page .hire-html-step:nth-child(2),
.hire-js-page .hire-html-faq-item:nth-child(2),
.hire-js-page .testimonial-card:nth-child(2) {
  animation-delay: 0.08s;
}

.hire-js-page .hire-html-stats-grid .card:nth-child(3),
.hire-js-page .hire-html-grid .hire-html-card:nth-child(3),
.hire-js-page .hire-html-step:nth-child(3),
.hire-js-page .hire-html-faq-item:nth-child(3),
.hire-js-page .testimonial-card:nth-child(3) {
  animation-delay: 0.16s;
}

.hire-js-page .hire-html-stats-grid .card:nth-child(4),
.hire-js-page .hire-html-grid .hire-html-card:nth-child(4),
.hire-js-page .hire-html-step:nth-child(4),
.hire-js-page .hire-html-faq-item:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes jsFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes jsFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hire-devops-page .page-hero .container {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
}

.hire-devops-page .hire-html-hero-visual {
  align-self: start;
}

.hire-devops-page .hire-html-hero-copy {
  padding-right: 0.4rem;
}

.hire-devops-page .devops-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.35rem;
  border-radius: 999px;
  background: rgba(24, 96, 216, 0.12);
  color: #1752b3;
  font-size: 0.74rem;
  font-weight: 700;
  vertical-align: middle;
}

.hire-devops-page .devops-title-mark {
  color: #2f58dc;
  margin-right: 0.3rem;
  font-weight: 700;
}

.hire-devops-page .devops-tool-chips {
  margin-top: 0.75rem;
  display: flex;

  .hire-laravel-page .hire-laravel-image-grid {
    grid-template-columns: 1fr;
  }

  .hire-laravel-page .hire-html-hero-visual img,
  .hire-laravel-page .hire-html-stats-grid .card,
  .hire-laravel-page .hire-laravel-image-card,
  .hire-laravel-page .hire-html-grid .hire-html-card,
  .hire-laravel-page .hire-html-step,
  .hire-laravel-page .hire-html-faq-item,
  .hire-laravel-page .testimonial-card {
    animation: none;
  }
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hire-devops-page .devops-tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #d6e2ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  color: #204181;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.32rem 0.62rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hire-devops-page .devops-tool-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(25, 67, 173, 0.14);
}

.hire-devops-page .devops-tool-logo {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
}

.hire-devops-page .devops-tool-docker {
  background: #1d63ed;
}

.hire-devops-page .devops-tool-k8s {
  background: #326ce5;
}

.hire-devops-page .devops-tool-aws {
  background: #ff9900;
}

.hire-devops-page .devops-tool-terraform {
  background: #6f42c1;
}

.hire-devops-page .hire-html-hero-visual img {
  animation: devopsFloat 3.4s ease-in-out infinite;
}

.hire-devops-page .hire-html-stats-grid .card,
.hire-devops-page .hire-html-grid .hire-html-card,
.hire-devops-page .hire-html-step,
.hire-devops-page .hire-html-faq-item,
.hire-devops-page .testimonial-card {
  animation: devopsFadeUp 0.55s ease both;
}

.hire-devops-page .hire-html-stats-grid .card:nth-child(2),
.hire-devops-page .hire-html-grid .hire-html-card:nth-child(2),
.hire-devops-page .hire-html-step:nth-child(2),
.hire-devops-page .hire-html-faq-item:nth-child(2),
.hire-devops-page .testimonial-card:nth-child(2) {
  animation-delay: 0.08s;
}

.hire-devops-page .hire-html-stats-grid .card:nth-child(3),
.hire-devops-page .hire-html-grid .hire-html-card:nth-child(3),
.hire-devops-page .hire-html-step:nth-child(3),
.hire-devops-page .hire-html-faq-item:nth-child(3),
.hire-devops-page .testimonial-card:nth-child(3) {
  animation-delay: 0.16s;
}

.hire-devops-page .hire-html-stats-grid .card:nth-child(4),
.hire-devops-page .hire-html-grid .hire-html-card:nth-child(4),
.hire-devops-page .hire-html-step:nth-child(4),
.hire-devops-page .hire-html-faq-item:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes devopsFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes devopsFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hire-js-page .hire-html-hero-visual img,
  .hire-js-page .hire-html-stats-grid .card,
  .hire-js-page .hire-html-grid .hire-html-card,
  .hire-js-page .hire-html-step,
  .hire-js-page .hire-html-faq-item,
  .hire-js-page .testimonial-card {
    animation: none;
  }

  .hire-js-page .hire-js-tab {
    transition: none;
  }

  .hire-devops-page .hire-html-hero-visual img,
  .hire-devops-page .hire-html-stats-grid .card,
  .hire-devops-page .hire-html-grid .hire-html-card,
  .hire-devops-page .hire-html-step,
  .hire-devops-page .hire-html-faq-item,
  .hire-devops-page .testimonial-card {
    animation: none;
  }

  .hire-devops-page .devops-tool-chip {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hire-html-page .page-hero .container {
    grid-template-columns: 1fr;
  }

  .hire-js-page .page-hero {
    padding-top: 1.4rem;
    padding-bottom: 0.9rem;
  }

  .hire-devops-page .page-hero {
    padding-top: 1.4rem;
    padding-bottom: 0.9rem;
  }

  .hire-html-page .hire-html-stats-grid {
    grid-template-columns: 1fr;
  }

  .hire-html-page .hire-html-grid {
    grid-template-columns: 1fr;
  }

  .hire-mern-page .hire-mern-delivery-layout,
  .hire-mern-page .hire-mern-process-layout,
  .hire-mern-page .hire-mern-process-grid,
  .hire-mern-page .hire-mern-mini-grid {
    grid-template-columns: 1fr;
  }

  .hire-mern-page .hire-mern-process-intro {
    position: static;
  }
}

.team-gallery-slider .team-gallery-controls {
  position: static;
  margin-top: 1rem;
  justify-content: flex-end;
  gap: 0.9rem;
}

.team-gallery-slider .team-gallery-controls button {
  width: 44px;
  height: 44px;
}

.team-flow-grid {
  width: 100%;
  display: grid;
  gap: 1rem;
}

.team-flow-card {
  position: relative;
  color: #1a2547;
  border-radius: 12px;
  padding: 1.05rem 0.9rem 0.9rem;
  text-align: center;
  min-height: auto;
  border: 1px solid #dfe7ff;
  background: #fff;
  box-shadow: 0 10px 18px rgba(21, 39, 112, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.team-flow-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--team-strip), #8fb0ff);
}

.team-flow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(21, 39, 112, 0.12);
}

.team-flow-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  padding: 4px;
  background: #fff;
  border: 2px solid #cfddff;
  position: relative;
  z-index: 2;
}

.team-flow-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 0;
}

.team-flow-card h3 a {
  color: inherit;
}

.team-flow-card h3 {
  margin: 0;
  font-size: 1rem;
}

.team-flow-card p {
  margin: 0.32rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

.team-flow-card .team-role {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5f6e9f;
  font-weight: 700;
}

.tfc-orange { --team-strip: #ff6b44; background: #ffffff; }
.tfc-blue { --team-strip: #1f7bdd; background: #ffffff; }
.tfc-purple { --team-strip: #8550df; background: #ffffff; }
.tfc-teal { --team-strip: #1bb9a4; background: #ffffff; }

.team-flow-controls {
  right: 0.45rem;
  top: 0.45rem;
  bottom: auto;
}

.team-flow-controls button {
  background: rgba(255, 255, 255, 0.95);
  color: #1d3fbf;
}

.testimonials-showcase {
  background: linear-gradient(180deg, #f8fbff, #f1f6ff);
  border-top: 1px solid #dfe8ff;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.35rem;
  align-items: start;
}

.testimonials-intro {
  padding: 1.1rem 0.2rem 0;
}

.testimonials-intro .section-title {
  margin: 0.3rem 0 1rem;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1.12;
  max-width: 12ch;
}

.testimonials-intro .btn {
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.testimonials-slider {
  position: relative;
  border: 1px solid #dbe5ff;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 47, 132, 0.1);
  padding: 1rem 1rem 3rem;
  overflow: hidden;
}

.testimonials-slider .slide {
  display: none;
}

.testimonials-slider .slide.active {
  display: block;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  border: 1px solid #e0e8ff;
  border-left: 4px solid #c91f2f;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 8px 18px rgba(20, 42, 121, 0.06);
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.65rem;
  color: #162a57;
}

.testimonial-stars {
  margin: 0.2rem 0 0.45rem;
  letter-spacing: 0.06em;
  color: #c91f2f;
  font-size: 0.9rem;
}

.testimonial-card p {
  margin: 0;
  color: #4f5d87;
  line-height: 1.6;
}

.testimonial-source {
  margin-top: 0.85rem !important;
  color: #233a78 !important;
  font-weight: 600;
}

.testimonial-source span {
  color: #1f49ca;
}

.testimonials-slider .testimonials-controls {
  right: 1rem;
  bottom: 0.9rem;
}

.testimonials-slider .slider-dots {
  left: 1rem;
  bottom: 1.05rem;
}

@media (max-width: 1240px) {
  .team-grid-expanded {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .team-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-intro {
    padding-top: 0.2rem;
  }

  .testimonials-intro .section-title {
    max-width: none;
    font-size: clamp(1.8rem, 5.5vw, 2.7rem);
  }

  .testimonials-cards {
    grid-template-columns: 1fr;
  }

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

.process-follow {
  background: linear-gradient(180deg, #f7faff, #eef4ff);
  border-top: 1px solid #dce6ff;
}

.why-choose {
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border-top: 1px solid #e3eaff;
}

.why-choose .section-head {
  justify-items: center;
  text-align: center;
  margin-bottom: 1.25rem;
}

.why-choose .grid {
  align-items: stretch;
}

.why-choose .card {
  height: 100%;
}

.success-stories {
  background: linear-gradient(180deg, #edf2ff, #f7f9ff);
  border-top: 1px solid #d9e3ff;
}

.success-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.success-head .btn {
  border-radius: 999px;
  padding-inline: 1.3rem;
}

.project-grid-controls {
  display: inline-flex;
  gap: 0.5rem;
  margin-left: auto;
}

.project-grid-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 61, 168, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #173dc6;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.project-grid-controls button:hover {
  background: #3043a5;
  color: #fff;
  transform: translateY(-2px);
}

.success-grid.is-paged .success-card {
  display: none;
}

.success-grid.is-paged .success-card.visible {
  display: block;
}

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

.success-card {
  border: 1px solid #e4e8ff;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(34, 58, 148, 0.08);
  padding: 0.85rem;
}

.success-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
  background: #eef3ff;
}

.success-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  cursor: zoom-in;
}

.project-lightbox {
  width: min(96vw, 1320px);
  max-height: 92vh;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: auto;
}

.project-lightbox::backdrop {
  background: rgba(13, 19, 40, 0.82);
}

.project-lightbox-wrap {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(22, 39, 105, 0.34);
}

.project-lightbox-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: #f4f7ff;
  margin: 0 auto;
}

.project-lightbox-close,
.project-lightbox-prev,
.project-lightbox-next {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 26, 62, 0.72);
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.project-lightbox-close {
  top: 0.7rem;
  right: 0.7rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1.3rem;
}

.project-lightbox-prev,
.project-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.4rem;
}

.project-lightbox-prev {
  left: 0.7rem;
}

.project-lightbox-next {
  right: 0.7rem;
}

.project-lightbox-caption {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.94rem;
  color: #2a3d74;
  border-top: 1px solid #e4ebff;
}

@media (max-width: 920px) {
  .main-nav > a,
  .main-nav > .menu-item-has-children > a {
    color: #2148cf;
    border-bottom: 2px solid transparent;
  }

  .main-nav > a:hover,
  .main-nav > .menu-item-has-children > a:hover {
    color: #2148cf;
    border-color: #2148cf;
  }

  .main-nav > a.active,
  .main-nav > .menu-item-has-children > a.active {
    color: #000000;
    border-color: #000000;
  }

  .main-nav .submenu {
    background: linear-gradient(180deg, #12359b 0%, #0a246f 100%);
    border: 1px solid #5278e0;
    border-radius: 10px;
  }

  .main-nav .submenu a {
    background: rgba(255, 255, 255, 0.1);
    color: #f4f8ff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.4px;
    text-underline-offset: 2px;
    border: 1px solid rgba(200, 218, 255, 0.22);
  }

  .main-nav .submenu a:hover,
  .main-nav .submenu a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: #adcbff;
  }
}

@media (max-width: 640px) {
  .project-lightbox-prev,
  .project-lightbox-next {
    width: 40px;
    height: 40px;
  }
}

.success-card-foot {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.success-card-foot h3 {
  margin: 0;
  font-size: 1.7rem;
  color: #1a2648;
}

.success-card-foot .btn {
  border-radius: 999px;
  min-width: 140px;
}

.ceo-message {
  padding-top: 1.1rem;
  padding-bottom: 1.5rem;
}

.ceo-message-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
  gap: 1.6rem;
  align-items: start;
}

.ceo-message-copy .section-title {
  margin: 0.4rem 0 0.85rem;
  font-size: clamp(1.95rem, 3.4vw, 3.05rem);
  line-height: 1.18;
}

.ceo-message-copy p {
  margin: 0 0 0.95rem;
  color: #5b678f;
  line-height: 1.58;
  font-size: clamp(1rem, 1.18vw, 1.11rem);
  max-width: 66ch;
}

.ceo-signoff {
  margin-top: 0.4rem;
  font-weight: 700;
  color: #1d316d;
}

.ceo-message-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d8e3ff;
  background: #f3f7ff;
  box-shadow: 0 12px 24px rgba(23, 52, 146, 0.12);
}

.ceo-message-photo img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: top center;
}

.prefooter-contact {
  padding-top: 0.2rem;
  padding-bottom: 1.3rem;
}

.prefooter-contact-strip {
  border-radius: 14px;
  background: linear-gradient(135deg, #1a3fb4, #1e56e9 55%, #2b86ff);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  box-shadow: 0 12px 24px rgba(24, 63, 180, 0.22);
}

.prefooter-contact-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  color: #fff;
}

.prefooter-contact-item p {
  margin: 0 0 0.15rem;
  font-size: 1.06rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.96);
}

.prefooter-contact-item:last-child {
  border-left: 1px solid rgba(223, 234, 255, 0.42);
  padding-left: 1.2rem;
}

.process-follow .section-title {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  text-align: left;
}

.process-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.process-card {
  position: relative;
  border-radius: 10px;
  padding: 1.45rem 1rem 1.2rem;
  color: #fff;
  min-height: auto;
  padding: 24px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-shadow: 0 16px 28px rgba(24, 37, 93, 0.14);
  z-index: 2;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.process-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0.55rem 0 0.6rem;
  text-align: left;
  color: inherit;
}

.process-card p {
  font-size: 0.93rem;
  line-height: 1.58;
  text-align: left;
  color: inherit;
}

.process-link-arrow {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(145deg, #3154ff, #00b2ff);
  border: 2px solid #ffffff;
  box-shadow: 0 8px 20px rgba(25, 61, 182, 0.32);
  z-index: 4;
  pointer-events: none;
  animation: processArrowMove 1.2s ease-in-out infinite;
}

.process-flow-grid .process-card:last-child .process-link-arrow {
  display: none;
}

@keyframes processArrowMove {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
    box-shadow: 0 8px 20px rgba(25, 61, 182, 0.32);
  }
  50% {
    transform: translateY(-50%) translateX(6px);
    box-shadow: 0 12px 24px rgba(25, 61, 182, 0.4);
  }
}

.process-icon {
  font-size: 2rem;
  margin-bottom: 0;
}

.pc-orange { background: linear-gradient(160deg, #ff7446, #f4582f); }
.pc-blue { background: linear-gradient(160deg, #2f89ff, #2165dc); }
.pc-purple { background: linear-gradient(160deg, #8d5dff, #6a3fe6); }
.pc-teal { background: linear-gradient(160deg, #21bca8, #169786); }

.ai-hero-slider .slide {
  display: block;
}

.slider-controls {
  position: absolute;
  right: 1.4rem;
  bottom: 1.2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.slider-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 61, 168, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #173dc6;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.slider-controls button:hover {
  background: #3043a5;
  color: #fff;
  transform: translateY(-2px);
}

.slider-dots {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 3;
}

.ai-hero-slider .slider-controls {
  right: 3rem;
}

.ai-hero-slider .slider-dots {
  left: 3rem;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 61, 198, 0.3);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.slider-dots button.active {
  width: 24px;
  background: #2146d7;
}

.slider-dots button:focus-visible {
  outline: 2px solid #2146d7;
  outline-offset: 2px;
}

.company-stats {
  padding-top: 2.1rem;
  padding-bottom: 2.4rem;
  background: linear-gradient(180deg, #f7faff, #ffffff);
  border-top: 1px solid #e2e9ff;
  border-bottom: 0;
}

.company-stats .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.company-stats-head {
  justify-items: center;
  text-align: center;
  margin-bottom: 1.35rem;
}

.company-stats-head .section-title {
  margin: 0.3rem 0 0;
}

.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-orb {
  width: 100%;
  aspect-ratio: auto;
  border-radius: 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  min-height: 138px;
  border: 1px solid #c8d9ff;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  box-shadow: 0 10px 22px rgba(18, 49, 140, 0.09);
  padding: 0.85rem 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-orb:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(18, 49, 140, 0.14);
}

.company-stats-grid .stat-orb:nth-child(1) {
  border-color: #ffd0aa;
  background: linear-gradient(180deg, #fff9f3, #ffe7d1);
}

.company-stats-grid .stat-orb:nth-child(2) {
  border-color: #bfe2ff;
  background: linear-gradient(180deg, #f4fbff, #dcedff);
}

.company-stats-grid .stat-orb:nth-child(3) {
  border-color: #cfe4c5;
  background: linear-gradient(180deg, #f8fff5, #e4f6d8);
}

.company-stats-grid .stat-orb:nth-child(4) {
  border-color: #decff9;
  background: linear-gradient(180deg, #fbf8ff, #ecddff);
}

.company-stats-grid .stat-orb:nth-child(5) {
  border-color: #f7c6d4;
  background: linear-gradient(180deg, #fff7fa, #ffdce8);
}

.company-stats-grid .stat-orb:nth-child(6) {
  border-color: #bde8de;
  background: linear-gradient(180deg, #f4fffb, #d8f8ef);
}

.stat-orb h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  line-height: 1.1;
  color: #1a43c6;
}

.stat-orb p {
  margin: 0.38rem 0 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #4d5f94;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .company-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
  }
}

@media (max-width: 640px) {
  .slider-controls {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .slider-dots {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .ai-hero-slider .slider-controls {
    right: 1.4rem;
  }

  .ai-hero-slider .slider-dots {
    left: 1.4rem;
  }

  .company-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .company-stats {
    padding-top: 1.8rem;
    padding-bottom: 2.2rem;
  }

  .stat-orb {
    padding: 0.7rem;
  }

  .stat-orb p {
    font-size: 0.78rem;
  }
}

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

.service-highlights .highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  box-shadow: 0 8px 20px rgba(15, 27, 61, 0.06);
}

.highlight-feature {
  background: linear-gradient(180deg, #f4f7ff, #ffffff);
}

.service-highlights .highlight-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 0.8rem;
  row-gap: 0.4rem;
  align-content: start;
  padding: 1.05rem;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.service-highlights .highlight-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -45%;
  width: 45%;
  height: 260%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  transform: rotate(20deg) translateX(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.75s ease, opacity 0.35s ease;
}

.service-highlights .highlight-card:hover {
  transform: translateY(-4px);
  border-color: #bdd0ff;
  box-shadow: 0 14px 26px rgba(20, 47, 132, 0.14);
}

.service-highlights .highlight-card:hover::after {
  opacity: 1;
  transform: rotate(20deg) translateX(320%);
}

.service-highlights .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  grid-column: 1;
  grid-row: 1 / span 2;
  animation: floatSoft 3.2s ease-in-out infinite;
}

.service-highlights .highlight-card:nth-child(2n) .icon-badge {
  animation-delay: 0.35s;
}

.service-highlights .highlight-card h3 {
  grid-column: 2;
  margin: 0.15rem 0 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

.service-highlights .highlight-card p {
  grid-column: 2;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.highlight-card h3 {
  margin: 0.5rem 0;
  font-size: 1.18rem;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.services-feature-slider {
  margin-top: 1rem;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 1.3rem 1.1rem 3.2rem;
  box-shadow: 0 8px 20px rgba(15, 27, 61, 0.06);
}

.services-feature-slider .slide {
  display: none;
}

.services-feature-slider .slide.active {
  display: block;
}

.service-feature-slide h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  color: #102148;
}

.service-feature-slide p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-feature-slide .tech-stack {
  margin: 0;
  color: #3f56a5;
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.reveal-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.service-feature-controls {
  bottom: 0.85rem;
  right: 0.85rem;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: #eef3ff;
}

.auto-content-block {
  background: linear-gradient(180deg, rgba(35, 82, 255, 0.04), rgba(255, 255, 255, 0));
  border-top: 1px solid #e8eeff;
}

.auto-content-head .lead {
  max-width: 78ch;
}

.auto-content-grid {
  margin-top: 0.85rem;
}

.auto-content-card {
  border-left: 4px solid #2a56ff;
  background: linear-gradient(180deg, #ffffff, #f8faff);
}

.auto-content-card p {
  margin: 0.35rem 0 0;
  color: #5b6a98;
  line-height: 1.7;
}

.auto-content-panels {
  margin-top: 1rem;
}

.auto-list-card {
  background: #ffffff;
}

.auto-list {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: #5d6b99;
  line-height: 1.75;
}

.auto-faq-grid {
  margin-top: 1rem;
}

.auto-faq-card {
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}

.auto-faq-card h3 {
  font-size: 1.03rem;
  margin-bottom: 0.38rem;
}

.auto-faq-card p {
  margin: 0;
  color: #5d6b99;
  line-height: 1.68;
}

.simple-layout .page-hero {
  padding: 2.1rem 0 1.1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.65rem;
}

.simple-layout main .container {
  width: min(1600px, 97vw);
}

.simple-layout .page-hero h1 {
  font-size: clamp(1.95rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.simple-layout .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b88b2;
}

.simple-layout .lead {
  max-width: 78ch;
  color: #51608e;
}

.simple-layout .section,
.simple-layout .home-block {
  padding: 1.65rem 0;
  background: transparent;
}

.simple-layout .section.alt,
.simple-layout .team-members,
.simple-layout .process-follow,
.simple-layout .why-choose,
.simple-layout .auto-content-block {
  background: transparent;
  border-top: 0;
}

.simple-layout .grid,
.simple-layout .grid-2,
.simple-layout .grid-3,
.simple-layout .grid-4,
.simple-layout .highlight-grid,
.simple-layout .process-flow-grid,
.simple-layout .team-gallery-grid {
  display: block;
}

.simple-layout .grid > *,
.simple-layout .highlight-grid > *,
.simple-layout .process-flow-grid > *,
.simple-layout .team-gallery-grid > * {
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #e7edff;
}

.simple-layout .grid > *:last-child,
.simple-layout .highlight-grid > *:last-child,
.simple-layout .process-flow-grid > *:last-child,
.simple-layout .team-gallery-grid > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.simple-layout .card,
.simple-layout .highlight-card,
.simple-layout .process-card,
.simple-layout .team-gallery-card,
.simple-layout .services-feature-slider,
.simple-layout .service-feature-slide,
.simple-layout .auto-content-card,
.simple-layout .auto-faq-card,
.simple-layout .auto-list-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.simple-layout main [class*="card"],
.simple-layout main [class*="feature"],
.simple-layout main [class*="panel"] {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.simple-layout .process-card::after,
.simple-layout .team-flow-card::before {
  display: none;
}

.simple-layout .card h3,
.simple-layout .highlight-card h3,
.simple-layout .process-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.simple-layout .card p,
.simple-layout .highlight-card p,
.simple-layout .process-card p,
.simple-layout .meta {
  color: #586791;
  line-height: 1.72;
}

.simple-layout .meta li {
  margin-bottom: 0.32rem;
}

.simple-layout .meta li:last-child {
  margin-bottom: 0;
}

.simple-layout a {
  color: #2148cf;
}

.simple-layout main p a,
.simple-layout main li a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.simple-layout .inner-page-note {
  padding-top: 0.8rem;
}

.simple-layout .inner-page-note .container {
  border-top: 1px solid #dfe7ff;
  padding-top: 1rem;
}

.simple-layout .inner-page-note h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
}

.simple-layout .inner-page-note p {
  margin: 0.28rem 0 0.55rem;
  color: #56648f;
}

.simple-layout.inner-redesign {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 280px);
}

.simple-layout.inner-redesign .page-hero {
  padding: 2.4rem 0 1.25rem;
  border-bottom: 0;
  margin-bottom: 0.1rem;
}

.simple-layout.inner-redesign .page-hero .container {
  border-left: 4px solid #2651e6;
  padding-left: 1rem;
}

.simple-layout.inner-redesign .section {
  padding: 1.25rem 0;
}

.simple-layout.inner-redesign .inner-page-overview {
  padding-top: 0.35rem;
}

.simple-layout.inner-redesign .inner-page-overview .container {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e2e9ff;
}

.simple-layout.inner-redesign .inner-page-overview h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.22rem, 2.15vw, 1.58rem);
  color: #142a60;
}

.simple-layout.inner-redesign .inner-page-overview p {
  margin: 0.3rem 0;
  color: #55638d;
}

.simple-layout.inner-redesign .inner-stack {
  display: grid;
  gap: 0.95rem;
}

.simple-layout.inner-redesign .inner-block,
.simple-layout.inner-redesign article,
.simple-layout.inner-redesign .card,
.simple-layout.inner-redesign .highlight-card,
.simple-layout.inner-redesign .process-card,
.simple-layout.inner-redesign .team-gallery-card,
.simple-layout.inner-redesign .team-flow-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0 0 0.8rem 0.95rem;
  border-left: 2px solid #e1e8ff;
}

.simple-layout.inner-redesign article:last-child,
.simple-layout.inner-redesign .inner-block:last-child {
  padding-bottom: 0;
}

.simple-layout.inner-redesign h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  color: #1a2f67;
}

.simple-layout.inner-redesign p,
.simple-layout.inner-redesign li,
.simple-layout.inner-redesign .meta {
  color: #5a6892;
  line-height: 1.75;
}

.simple-layout.inner-redesign .inline-text-link,
.simple-layout.inner-redesign a.btn,
.simple-layout.inner-redesign a.btn-light,
.simple-layout.inner-redesign a.btn-primary {
  display: inline;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #2148cf;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.simple-layout.inner-redesign .slider-controls,
.simple-layout.inner-redesign .service-feature-controls,
.simple-layout.inner-redesign .team-gallery-controls,
.simple-layout.inner-redesign .process-icon,
.simple-layout.inner-redesign .process-link-arrow,
.simple-layout.inner-redesign .icon-badge {
  display: none;
}

.simple-layout .process-icon,
.simple-layout .icon-badge,
.simple-layout .process-link-arrow,
.simple-layout .slider-controls,
.simple-layout .slider-dots {
  display: none;
}

.simple-layout .team-gallery-slider {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.simple-layout .team-gallery-image {
  border: 0;
  border-radius: 0;
  background: transparent;
  height: auto;
}

.simple-layout .team-gallery-image img {
  border-radius: 0;
  max-height: 460px;
}

.site-footer {
  margin-top: 1.4rem;
  background: linear-gradient(125deg, #0f1b3d, #132b67 56%, #1b3f95 100%);
  color: #dce6ff;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1.1fr;
  gap: 1.2rem;
  margin: 0 auto;
  padding: 1.55rem 2rem 0.7rem;
}

.footer-brand-block {
  min-width: 0;
}

.footer-brand-block h4 {
  display: none;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.7rem;
}

.footer-logo {
  width: 160px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-footer h4 {
  margin: 0 0 0.65rem;
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: #dce6ff;
  line-height: 1.65;
}

.footer-address {
  margin-top: 0.55rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: #dce6ff;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #fff;
}

.copy {
  border-top: 1px solid rgba(220, 230, 255, 0.2);
  color: #b7c3e9;
  font-size: 0.9rem;
  margin: 0;
}

.copy .container {
  padding: 0.35rem 2rem 0;
  margin: 0 auto;
  line-height: 1.2;
}

.contact-page .contact-pro-hero-copy .contact-pro-merged-copy {
  margin-top: 2rem !important;
}

.site-footer .copy .container {
  padding-bottom: 0 !important;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 1.1rem;
  border: 1px solid #dfe7ff;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(24, 51, 145, 0.08);
}

#contactStatus {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 0.8rem;
}

.form-status {
  border-radius: 10px;
  padding: 0.62rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status.loading {
  border: 1px solid #c9d8ff;
  background: #f3f7ff;
  color: #1f3f9a;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-loader-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  animation: formLoaderSpin 1s linear infinite;
}

@keyframes formLoaderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.form-status.success {
  border: 1px solid #b8ebce;
  background: #edfbf3;
  color: #0c7a39;
}

.form-status.error {
  border: 1px solid #f6c5c5;
  background: #fff1f1;
  color: #b3261e;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2d62;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.68rem 0.78rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

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

.contact-form .grid.grid-2 > label,
.contact-form > label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2d62;
}

.contact-form label input,
.contact-form label select,
.contact-form label textarea {
  width: 100%;
  border: 1px solid #d4defc;
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: var(--text);
  background: #fdfefe;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form label input:focus,
.contact-form label select:focus,
.contact-form label textarea:focus {
  outline: none;
  border-color: #7f9bff;
  box-shadow: 0 0 0 3px rgba(84, 123, 255, 0.16);
}

.contact-form .field-invalid input,
.contact-form .field-invalid select,
.contact-form .field-invalid textarea,
.contact-form input.field-input-invalid,
.contact-form select.field-input-invalid,
.contact-form textarea.field-input-invalid {
  border-color: #d94a4a;
  box-shadow: 0 0 0 3px rgba(217, 74, 74, 0.14);
  background: #fff8f8;
}

.contact-form .field-error {
  margin-top: 0.32rem;
  font-size: 0.79rem;
  line-height: 1.35;
  color: #c53333;
  font-weight: 600;
}

.contact-form label textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form > .btn {
  justify-self: end;
  align-self: start;
  min-width: auto;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
  border-radius: 9px;
}

.home-contact-section {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
  border-top: 1px solid #dfe8ff;
  padding-top: 2.4rem;
  padding-bottom: 2.6rem;
}

.home-contact-section .section-head {
  justify-items: center;
  text-align: center;
  margin-bottom: 1.1rem;
}

.home-contact-section .section-title {
  max-width: 22ch;
}

.home-contact-section #contactStatus {
  width: 100%;
  max-width: none;
  margin: 0 0 0.8rem;
}

.home-contact-section .contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1.4rem;
  align-items: stretch;
}

.home-contact-section .contact-form {
  order: 2;
  max-width: none;
  margin: 0;
  padding: 1.35rem;
  border: 1px solid #d5e1ff;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 16px 30px rgba(24, 51, 145, 0.12);
}

.home-contact-section .contact-form > .btn {
  min-width: 148px;
}

.home-contact-section .contact-side-stack {
  order: 1;
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.home-contact-section .contact-side-stack > .card {
  margin-bottom: 0;
  border: 1px solid #cddcff;
  border-radius: 14px;
  padding: 1.05rem 1rem 0.9rem;
  background: linear-gradient(145deg, #1a3fb4, #1e56e9 55%, #2b86ff);
  box-shadow: 0 14px 26px rgba(24, 63, 180, 0.22);
}

.home-contact-section .contact-side-stack h3 {
  margin: 0 0 0.45rem;
  color: #ffffff;
}

.home-contact-section .contact-side-stack .meta {
  margin: 0 0 0.24rem;
  color: rgba(255, 255, 255, 0.95);
}

.home-contact-section .contact-side-stack a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-page .home-contact-section {
  padding-top: 2.8rem;
  padding-bottom: 2.9rem;
}

.contact-page .home-contact-section .contact-form {
  border-radius: 18px;
}

.contact-page .home-contact-section .contact-side-stack {
  gap: 1rem;
}

.contact-page .home-contact-section .contact-side-stack > .card {
  position: relative;
  overflow: hidden;
}

.contact-page .home-contact-section .contact-side-stack > .card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.22));
}

.contact-page .contact-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.contact-page .contact-meta-icon {
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #163d99;
  background: #ffffff;
}

@media (max-width: 1080px) {
  .home-contact-section .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-section .contact-side-stack {
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-contact-section .contact-form {
    order: 1;
  }
}

.simple-layout .contact-form .grid.grid-2 {
  display: grid;
}

.simple-layout .contact-form .grid.grid-2 > * {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.simple-layout .contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.simple-layout .contact-side-stack {
  display: grid;
  gap: 0;
  align-content: start;
}

.simple-layout .contact-side-stack > .card {
  margin-bottom: 0;
}

.contact-side-stack .address-line {
  margin-top: 0.45rem;
  font-weight: 600;
}

@media (max-width: 760px) {
  .contact-form {
    width: min(1200px, 98vw);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

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

  .home-contact-section .contact-side-stack {
    grid-template-columns: 1fr;
  }

  .home-contact-section .contact-form {
    padding: 0.95rem;
  }

  .contact-form .grid.grid-2 {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .simple-layout .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .simple-layout .contact-side-stack {
    gap: 0;
  }
}

.footer-subscribe h4 {
  margin: 0 0 0.45rem;
}

.footer-subscribe p {
  margin: 0 0 0.75rem;
}

.subscribe-form {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(220, 230, 255, 0.38);
  border-radius: 9px;
  padding: 0.58rem 0.7rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
  color: #11234c;
}

.subscribe-form input::placeholder {
  color: #6b7ba8;
}

.subscribe-form button {
  border: 0;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  padding: 0.58rem 0.8rem;
  cursor: pointer;
}

.subscribe-status {
  margin-top: 0.65rem;
  min-height: 48px;
}

.subscribe-feedback {
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 6px 16px rgba(9, 24, 76, 0.15);
}

.subscribe-feedback.loading {
  background: #eef4ff;
  border-color: #b9d0ff;
  color: #193f96;
}

.subscribe-feedback.success {
  background: #e9fbf2;
  border-color: #91dfb8;
  color: #0f6a3e;
}

.subscribe-feedback.error {
  background: #fff1f1;
  border-color: #f2b6b6;
  color: #a22626;
}

@media (max-width: 1080px) {
  .grid-4,
  .highlight-grid,
  .process-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-highlights .highlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .team-layout,
  .ceo-message-grid {
    grid-template-columns: 1fr;
  }

  .ceo-message-photo {
    max-width: 540px;
  }

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

  .success-image-wrap {
    height: 290px;
  }

  .prefooter-contact-strip {
    border-radius: 12px;
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
  }

  .prefooter-contact-item:last-child {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(223, 234, 255, 0.42);
    padding-top: 0.7rem;
  }

  .prefooter-contact-item h3 {
    font-size: 1.3rem;
  }

  .prefooter-contact-item p {
    font-size: 0.98rem;
  }

  .ceo-message-copy .section-title {
    font-size: clamp(1.62rem, 7vw, 2.12rem);
  }

  .ceo-message-copy p {
    font-size: 1.02rem;
  }

  .ceo-message-photo {
    max-width: none;
    border-radius: 12px;
  }

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

  .expertise-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .orbit-showcase {
    min-height: 460px;
  }

  .orbit-ring-inner {
    width: 350px;
    height: 350px;
  }

  .orbit-ring-outer {
    width: 440px;
    height: 440px;
  }

  .orbit-core {
    width: 250px;
    height: 250px;
  }

  .orbit-avatar-1 { width: 120px; height: 120px; top: 18px; left: 220px; }
  .orbit-avatar-2 { width: 56px; height: 56px; top: 175px; left: 62px; }
  .orbit-avatar-3 { width: 130px; height: 130px; top: 220px; right: 68px; }
  .orbit-avatar-4 { width: 120px; height: 120px; bottom: 40px; left: 82px; }
  .orbit-avatar-5 { width: 74px; height: 74px; bottom: 98px; left: 280px; }

  .orbit-dot-1 { top: 90px; left: 130px; }
  .orbit-dot-2 { top: 106px; left: 214px; }
  .orbit-dot-3 { top: 156px; right: 112px; }
  .orbit-dot-4 { bottom: 88px; right: 132px; }

  .process-link-arrow {
    display: none;
  }
}

@media (max-width: 920px) {
  .ai-hero-slider,
  .ai-grid {
    min-height: auto;
  }

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

  .ai-hero-slider .ai-slide {
    display: none;
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
  }

  .ai-hero-slider .ai-slide.active {
    display: block;
    pointer-events: auto;
  }

  .ai-bg-1,
  .ai-bg-2,
  .ai-bg-3 {
    background-image: none;
  }

  .ai-copy {
    width: 100%;
    max-width: none;
    padding: 2rem 1rem 1.1rem;
  }

  .ai-tech-tiles {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    transform: none;
  }

  .year-ghost {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    left: 1rem;
    top: 0.8rem;
  }

  .floating-title {
    font-size: clamp(1.55rem, 6.2vw, 2.45rem);
    line-height: 1.15;
  }

  .ai-media img {
    display: none;
  }

  .highlight-card {
    min-height: 280px;
  }

  .team-layout {
    grid-template-columns: 1fr;
  }

  .team-flow-grid {
    grid-template-columns: 1fr;
  }

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

  .team-gallery-grid {
    grid-template-columns: 1fr;
  }

  .team-gallery-image {
    height: 320px;
  }

  .team-flow-avatar {
    width: 112px;
    height: 112px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 4vw;
    flex-direction: column;
    align-items: start;
    margin-left: 0;
    margin-right: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .brand-logo {
    width: 148px;
    height: 48px;
  }

  .menu-item-has-children,
  .submenu {
    width: 100%;
  }

  .services-menu {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 10px;
    margin-top: 0.45rem;
    box-shadow: none;
    border: 1px solid var(--border);
    background: #fff;
  }

  .expertise-mega {
    max-height: none;
    overflow: visible;
  }

  .services-menu:hover > .mega-menu,
  .services-menu:focus-within > .mega-menu {
    display: none;
  }

  .main-nav.open .services-menu .mega-menu {
    display: none;
  }

  .main-nav.open .services-menu.submenu-open .mega-menu {
    display: grid;
  }

  .mega-col {
    padding: 0.9rem 0.8rem;
  }

  .mega-col + .mega-col {
    border-left: 0;
    border-top: 1px solid #eef1f8;
  }

  .mega-feature {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .submenu {
    position: static;
    display: grid;
    margin-top: 0.4rem;
    min-width: 100%;
  }

  .submenu .menu-item-has-children > .submenu {
    left: 0;
    margin-left: 0.45rem;
    margin-top: 0.35rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, 95vw);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Keep footer colors consistent with the index footer across all page variants. */
  body.simple-layout .site-footer h4,
  body.inner-redesign .site-footer h4 {
    color: #fff;
  }

  body.simple-layout .site-footer p,
  body.simple-layout .site-footer .copy,
  body.simple-layout .site-footer .copy .container,
  body.inner-redesign .site-footer p,
  body.inner-redesign .site-footer .copy,
  body.inner-redesign .site-footer .copy .container {
    color: #dce6ff;
  }

  body.simple-layout .site-footer .footer-links a,
  body.simple-layout .site-footer .footer-links a:visited,
  body.inner-redesign .site-footer .footer-links a,
  body.inner-redesign .site-footer .footer-links a:visited {
    color: #dce6ff;
  }

  body.simple-layout .site-footer .footer-links a:hover,
  body.simple-layout .site-footer .footer-links a:focus-visible,
  body.inner-redesign .site-footer .footer-links a:hover,
  body.inner-redesign .site-footer .footer-links a:focus-visible {
    color: #fff;
  }

  .testimonials-slider {
    padding: 0.85rem 0.8rem 2.7rem;
  }

  .testimonials-slider .testimonials-controls {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .testimonials-slider .slider-dots {
    left: 0.7rem;
    bottom: 0.82rem;
  }

  .grid-3,
  .grid-4,
  .highlight-grid,
  .technology-stack-grid,
  .process-flow-grid,
  .footer-grid,
  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-grid-controls {
    margin-left: 0;
  }

  .success-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .success-image-wrap {
    height: 250px;
  }

  .form-grid,
  .subscribe-form {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .team-grid-expanded {
    grid-template-columns: 1fr;
  }

  .team-gallery-image {
    height: 300px;
  }

  .ai-media img {
    display: none;
  }

  .orbit-showcase {
    min-height: 360px;
  }

  .orbit-ring-inner {
    width: 270px;
    height: 270px;
  }

  .orbit-ring-outer {
    width: 340px;
    height: 340px;
  }

  .orbit-core {
    width: 188px;
    height: 188px;
  }

  .orbit-avatar-1 { width: 86px; height: 86px; top: 18px; left: 168px; }
  .orbit-avatar-2 { width: 46px; height: 46px; top: 134px; left: 28px; }
  .orbit-avatar-3 { width: 96px; height: 96px; top: 170px; right: 28px; }
  .orbit-avatar-4 { width: 88px; height: 88px; bottom: 34px; left: 38px; }
  .orbit-avatar-5 { width: 56px; height: 56px; bottom: 70px; left: 214px; }

  .orbit-dot {
    width: 9px;
    height: 9px;
  }

  .orbit-dot-1 { top: 62px; left: 86px; }
  .orbit-dot-2 { top: 78px; left: 144px; }
  .orbit-dot-3 { top: 118px; right: 62px; }
  .orbit-dot-4 { bottom: 68px; right: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    animation: none;
  }

  .cursor-trail {
    display: none !important;
  }

  .site-header::after {
    animation: none;
  }

  .reveal-up,
  .reveal-up.in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-highlights .icon-badge {
    animation: none;
  }

  .service-highlights .highlight-card::after {
    display: none;
  }

  .technology-stack-card::after {
    display: none;
  }

  .hire-laravel-page .hire-html-hero-visual img,
  .hire-laravel-page .hire-html-stats-grid .card,
  .hire-laravel-page .hire-laravel-image-card,
  .hire-laravel-page .hire-html-grid .hire-html-card,
  .hire-laravel-page .hire-html-step,
  .hire-laravel-page .hire-html-faq-item,
  .hire-laravel-page .testimonial-card {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hire-ai-automation-page .ai-automation-image-grid {
    grid-template-columns: 1fr;
  }

  .hire-ai-automation-page .hire-html-hero-visual img,
  .hire-ai-automation-page .hire-html-stats-grid .card,
  .hire-ai-automation-page .ai-automation-image-card,
  .hire-ai-automation-page .hire-html-grid .hire-html-card,
  .hire-ai-automation-page .hire-html-step,
  .hire-ai-automation-page .hire-html-faq-item,
  .hire-ai-automation-page .testimonial-card {
    animation: none;
  }
}

/* Blog Index Redesign */
.blog-index-page .blog-hero {
  background: radial-gradient(circle at 85% 0%, rgba(67, 169, 255, 0.2), rgba(255, 255, 255, 0) 40%),
    linear-gradient(150deg, #f5f9ff 0%, #eef6ff 45%, #fff8ef 100%);
}

.blog-index-page .blog-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.blog-index-page .blog-hero h1 {
  max-width: 18ch;
}

.blog-index-page .blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.blog-index-page .blog-hero-tags span {
  border-radius: 999px;
  border: 1px solid #d4e4ff;
  background: #fff;
  color: #1b3f86;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.62rem;
}

.blog-index-page .blog-hero-visual {
  justify-self: end;
}

.blog-index-page .blog-hero-visual img {
  width: min(100%, 360px);
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(14, 55, 136, 0.15));
}

.blog-index-page .blog-visual-strip {
  padding-top: 0.65rem;
  padding-bottom: 0.55rem;
}

.blog-index-page .blog-mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.blog-index-page .blog-mini-tile {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dce8ff;
  background: linear-gradient(180deg, #f9fbff, #edf3ff);
  box-shadow: 0 12px 22px rgba(22, 58, 150, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-index-page .blog-mini-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(22, 58, 150, 0.18);
}

.blog-index-page .blog-mini-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.blog-index-page .blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-index-page .blog-filter-btn {
  border: 1px solid #d4e4ff;
  background: #fff;
  color: #1b3f86;
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.blog-index-page .blog-filter-btn:hover,
.blog-index-page .blog-filter-btn.active {
  background: linear-gradient(180deg, #2f58dc, #2146b7);
  border-color: #2146b7;
  color: #fff;
  box-shadow: 0 10px 20px rgba(25, 66, 166, 0.22);
}

.blog-index-page .blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-index-page .blog-post-card {
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-index-page .blog-post-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blog-index-page .blog-post-thumb {
  display: block;
  position: relative;
}

.blog-index-page .blog-post-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 0.75rem;
}

.blog-index-page .blog-post-chip {
  position: static;
  align-self: flex-start;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(16, 31, 69, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.52rem;
  letter-spacing: 0.02em;
}

.blog-index-page .blog-post-body h3 {
  margin-top: 0;
}

.blog-index-page .blog-post-body .btn {
  margin-top: 0.4rem;
}

.blog-article-page .page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 8% 4%, rgba(38, 113, 255, 0.18), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 92% 8%, rgba(252, 177, 66, 0.18), rgba(255, 255, 255, 0) 34%),
    linear-gradient(165deg, #f4f9ff 0%, #edf5ff 50%, #fff8ef 100%);
}

.blog-article-page .page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 93, 224, 0.16), rgba(42, 93, 224, 0));
  pointer-events: none;
}

.blog-article-page .page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1rem;
  align-items: start;
  position: relative;
  z-index: 1;
  width: min(1600px, 97vw);
}

.blog-article-page .page-hero .container > .breadcrumb,
.blog-article-page .page-hero .container > h1,
.blog-article-page .page-hero .container > .lead,
.blog-article-page .page-hero .container > .blog-article-hero-meta {
  grid-column: 1;
}

.blog-article-page .page-hero h1 {
  max-width: 20ch;
  line-height: 1.14;
  margin-bottom: 0.45rem;
}

.blog-article-page .page-hero .lead {
  max-width: 64ch;
}

.blog-article-page .blog-article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.72rem;
}

.blog-article-page .blog-article-hero-meta span {
  border-radius: 999px;
  border: 1px solid #d4e4ff;
  background: rgba(255, 255, 255, 0.95);
  color: #173b87;
  font-size: 0.77rem;
  font-weight: 700;
  padding: 0.28rem 0.66rem;
  box-shadow: 0 6px 14px rgba(19, 53, 146, 0.08);
}

.blog-article-page .blog-article-hero-visual {
  grid-column: 2;
  grid-row: 1 / span 4;
  margin: 0;
  justify-self: start;
  align-self: start;
  border-radius: 16px;
  border: 1px solid #d8e6ff;
  background: linear-gradient(180deg, #ffffff, #f2f7ff);
  padding: 0.65rem;
  box-shadow: 0 14px 30px rgba(17, 52, 140, 0.12);
}

.blog-article-page .blog-article-hero-visual img {
  width: min(100%, 340px);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(15, 49, 126, 0.18));
}

.blog-article-page .section {
  padding-top: 1.7rem;
}

.blog-article-page .section .container {
  width: min(1600px, 97vw);
}

.blog-article-page .blog-article-card {
  border: 1px solid #dce8ff;
  border-top: 4px solid #2f58dc;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 20px 34px rgba(18, 47, 124, 0.1);
  padding: clamp(1rem, 2vw, 1.45rem);
}

.blog-article-page .blog-article-intro-media {
  display: none;
  margin: 0 0 1.05rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dce8ff;
  box-shadow: 0 12px 24px rgba(19, 53, 146, 0.12);
  animation: blogFloatIn 0.75s ease both;
}

.blog-article-page .blog-article-intro-media img {
  width: 100%;
  height: clamp(180px, 30vw, 300px);
  object-fit: cover;
  display: block;
}

.blog-article-page .blog-article-card h2,
.blog-article-page .blog-article-card h3 {
  position: relative;
  margin-top: 1rem;
  color: #132d68;
}

.blog-article-page .blog-article-card h2::before,
.blog-article-page .blog-article-card h3::before {
  content: "";
  position: absolute;
  left: -0.6rem;
  top: 0.2em;
  width: 4px;
  height: 0.95em;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f58dc, #1e8cff);
}

.blog-article-page .blog-article-card p,
.blog-article-page .blog-article-card li {
  color: #4f5f8b;
  line-height: 1.78;
}

.blog-article-page .blog-article-card ul,
.blog-article-page .blog-article-card ol {
  padding-left: 1.2rem;
}

.blog-article-page .blog-article-card pre {
  margin: 0.8rem 0 1rem;
  padding: 0.82rem;
  border-radius: 10px;
  border: 1px solid #d7e4ff;
  background: #f3f7ff;
  overflow-x: auto;
}

.blog-article-page .blog-article-card code {
  font-family: Consolas, "Courier New", monospace;
}

.blog-article-page .blog-article-card .meta {
  border: 1px solid #dce8ff;
  background: #f6f9ff;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.8rem;
}

.blog-float-in {
  animation: blogFloatIn 0.75s ease both;
}

/* WordPress Plugin Development Page Redesign */
.wp-plugin-page {
  background: radial-gradient(circle at 12% 0%, #f5f9ff, #ffffff 42%);
}

.wp-plugin-page .wp-plugin-hero {
  padding-top: 1.9rem;
  padding-bottom: 1.2rem;
}

.wp-plugin-page .wp-plugin-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.1rem;
  align-items: stretch;
}

.wp-plugin-page .wp-plugin-hero-copy {
  border-left: 4px solid #2e58dc;
  padding: 1.1rem 1rem 1.15rem;
  background: linear-gradient(165deg, #ffffff, #f6f9ff 72%);
  box-shadow: 0 16px 30px rgba(19, 47, 127, 0.08);
}

.wp-plugin-page .wp-plugin-hero-copy h1 {
  margin: 0.35rem 0 0.6rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.wp-plugin-page .wp-plugin-hero-copy .lead {
  max-width: 64ch;
  margin-bottom: 0.7rem;
}

.wp-plugin-page .wp-plugin-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.9rem 0;
}

.wp-plugin-page .wp-plugin-hero-chips span {
  border-radius: 999px;
  border: 1px solid #d2e2ff;
  background: #fff;
  color: #1d3f92;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.34rem 0.62rem;
}

.wp-plugin-page .wp-plugin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.wp-plugin-page .wp-plugin-hero-visual {
  margin: 0;
  border: 1px solid #d7e5ff;
  border-radius: 14px;
  padding: 0.65rem;
  background: linear-gradient(180deg, #ffffff, #f2f7ff);
  box-shadow: 0 16px 30px rgba(19, 47, 127, 0.12);
}

.wp-plugin-page .wp-plugin-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
}

.wp-plugin-page .wp-plugin-stat-band {
  padding-top: 0.45rem;
  padding-bottom: 1.1rem;
}

.wp-plugin-page .wp-plugin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.wp-plugin-page .wp-plugin-layout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wp-plugin-page .wp-plugin-panel {
  border-top: 4px solid #2f58dc;
}

.wp-plugin-page .wp-plugin-feature-list,
.wp-plugin-page .wp-plugin-process-list {
  display: grid;
  gap: 0.8rem;
}

.wp-plugin-page .wp-plugin-feature-list h3 {
  margin: 0;
  font-size: 1rem;
}

.wp-plugin-page .wp-plugin-feature-list .meta {
  margin: 0.28rem 0 0;
}

.wp-plugin-page .wp-plugin-process-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #51608d;
}

.wp-plugin-page .wp-plugin-process-list li {
  margin-bottom: 0.5rem;
  line-height: 1.68;
}

.wp-plugin-page .wp-plugin-checklist {
  margin: 0.35rem 0 0;
  padding-left: 1.05rem;
}

.wp-plugin-page .wp-plugin-checklist li {
  margin-bottom: 0.42rem;
  line-height: 1.66;
}

.wp-plugin-page .wp-plugin-cta-wrap {
  padding-top: 1.1rem;
}

.wp-plugin-page .wp-plugin-cta-card {
  border: 1px solid #cddfff;
  border-left: 4px solid #2955e4;
  border-radius: 14px;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(150deg, #ffffff, #f3f8ff 58%, #eff6ff 100%);
  box-shadow: 0 16px 28px rgba(27, 58, 145, 0.11);
}

.wp-plugin-page .wp-plugin-cta-card h2 {
  margin: 0 0 0.5rem;
}

.wp-plugin-page .wp-plugin-cta-card p {
  margin: 0 0 0.8rem;
  max-width: 72ch;
  color: #4f5f8c;
}

@keyframes blogFloatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .wp-plugin-page .wp-plugin-hero-grid,
  .wp-plugin-page .wp-plugin-stat-grid,
  .wp-plugin-page .wp-plugin-layout-grid {
    grid-template-columns: 1fr;
  }

  .wp-plugin-page .wp-plugin-hero {
    padding-top: 1.35rem;
  }

  .wp-plugin-page .wp-plugin-hero-visual img {
    min-height: 210px;
  }

  .blog-index-page .blog-hero-shell {
    grid-template-columns: 1fr;
  }

  .blog-index-page .blog-hero-visual {
    justify-self: start;
  }

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

  .blog-index-page .blog-mini-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .blog-article-page .page-hero .container {
    grid-template-columns: 1fr;
  }

  .blog-article-page .page-hero .container > .breadcrumb,
  .blog-article-page .page-hero .container > h1,
  .blog-article-page .page-hero .container > .lead,
  .blog-article-page .page-hero .container > .blog-article-hero-meta,
  .blog-article-page .page-hero .container > .blog-article-hero-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .blog-article-page .blog-article-hero-visual {
    justify-self: start;
    width: min(100%, 360px);
  }
}

@media (max-width: 720px) {
  .blog-index-page .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-page .blog-mini-gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-index-page .blog-post-card,
  .blog-index-page .blog-filter-btn,
  .blog-index-page .blog-mini-tile,
  .blog-float-in,
  .blog-article-page .blog-article-intro-media {
    transition: none;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hire-ai-automation-page .hire-html-hero-visual img,
  .hire-ai-automation-page .hire-html-stats-grid .card,
  .hire-ai-automation-page .ai-automation-image-card,
  .hire-ai-automation-page .hire-html-grid .hire-html-card,
  .hire-ai-automation-page .hire-html-step,
  .hire-ai-automation-page .hire-html-faq-item,
  .hire-ai-automation-page .testimonial-card {
    animation: none;
  }
}

/* Final footer color lock: keep same visible colors as index footer on every page. */
.site-footer h4 {
  color: #ffffff !important;
}

.site-footer p,
.site-footer .copy,
.site-footer .copy .container,
.site-footer .footer-address {
  color: #dce6ff !important;
}

.site-footer .footer-links a,
.site-footer .footer-links a:link,
.site-footer .footer-links a:visited {
  color: #dce6ff !important;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible,
.site-footer .footer-links a:active {
  color: #ffffff !important;
}

.privacy-policy-page .page-hero {
  background:
    radial-gradient(circle at 10% 5%, rgba(44, 102, 230, 0.14), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #f6f9ff, #ffffff);
}

.privacy-policy-page .page-hero .container {
  border-left: 4px solid #2956df;
  padding-left: 1rem;
}

.privacy-policy-page .privacy-policy-content {
  padding-top: 1.2rem;
}

.privacy-policy-page .privacy-policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.33fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.privacy-policy-page .privacy-policy-toc {
  position: sticky;
  top: 90px;
  border-top: 3px solid #2f58dc;
}

.privacy-policy-page .privacy-policy-toc h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.privacy-policy-page .privacy-policy-toc ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.3rem;
}

.privacy-policy-page .privacy-policy-toc a {
  text-decoration: none;
  color: #1f46bf;
  font-weight: 600;
}

.privacy-policy-page .privacy-policy-toc a:hover,
.privacy-policy-page .privacy-policy-toc a:focus-visible {
  color: #14379f;
  text-decoration: underline;
}

.privacy-policy-page .privacy-policy-article {
  border-top: 3px solid #2f58dc;
}

.privacy-policy-page .privacy-policy-article h2 {
  margin-top: 1.45rem;
  padding-top: 0.35rem;
  border-top: 1px solid #e2e9ff;
  scroll-margin-top: 100px;
}

.privacy-policy-page .privacy-policy-article h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.privacy-policy-page .privacy-policy-article h3 {
  margin-top: 0.95rem;
}

.privacy-policy-page .privacy-policy-article p,
.privacy-policy-page .privacy-policy-article li {
  line-height: 1.72;
}

@media (max-width: 980px) {
  .privacy-policy-page .privacy-policy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-policy-page .privacy-policy-toc {
    position: static;
  }
}

