:root {
  --primary: #0ea5e9;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent: #38bdf8;
  --ink: #0f172a;
  --muted: #64748b;
  --soft: #eef8ff;
  --footer: #082f49;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(14, 165, 233, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 42%);
  color: var(--ink);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

.navbar {
  background: rgba(248, 252, 255, 0.9) !important;
  backdrop-filter: blur(16px);
  min-height: 82px;
}

.brand-logo {
  height: auto;
  width: 158px;
}

.nav-link {
  color: #24262d;
  font-size: 0.96rem;
  font-weight: 700;
  padding-inline: 1rem !important;
}

.nav-link:hover,
.nav-link.active,
.dropdown-item:hover {
  color: #1f4bbc !important;
}

.dropdown-menu {
  border-radius: 16px;
  padding: 0.65rem;
}

.dropdown-item {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.24);
}

.hero-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(56, 189, 248, 0.28), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(186, 230, 253, 0.5), transparent 26%),
    linear-gradient(180deg, #f8fcff 0%, #eaf8ff 100%);
  padding: 98px 0 88px;
}

.hero-title {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}

.hero-title-highlight {
  color: #1f4bbc;
}

.hero-description {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.hero-illustration {
  animation: floatY 5s ease-in-out infinite;
  background: #e0f2fe;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-illustration img {
  display: block;
  height: 430px;
  object-fit: cover;
  width: 100%;
}

.eyebrow {
  color: #1f4bbc;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  font-size: 1rem;
}

.about-eyebrow {
  font-size: 1rem;
}

.section-pad {
  padding: 92px 0;
}

.bg-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 860px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 750;
  margin-bottom: 1.25rem;
}

.section-description {
  color: var(--muted);
  font-size: 1rem;
}

.metric-card {
  align-items: center;
  background: rgba(31, 75, 188, 0.06);
  border: 1px solid rgba(31, 75, 188, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(31, 75, 188, 0.1);
  display: flex;
  gap: 24px;
  height: 100%;
  padding: 32px;
}

.metric-card strong {
  align-items: center;
  background: rgba(31, 75, 188, 0.12);
  border-radius: 24px;
  color: #1f4bbc;
  display: inline-flex;
  flex: 0 0 112px;
  font-size: 2.8rem;
  font-weight: 850;
  height: 112px;
  justify-content: center;
}

.metric-card h2 {
  font-size: 1.45rem;
  font-weight: 850;
  margin-bottom: 0.25rem;
}

.metric-card p {
  color: var(--muted);
  margin: 0;
}

.service-card,
.choice-card,
.industry-card {
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover,
.choice-card:hover,
.industry-card:hover {
  box-shadow: 0 28px 70px rgba(14, 165, 233, 0.18);
  transform: translateY(-6px);
}

.service-card {
  min-height: 100%;
  padding: 28px;
}

.service-card-link {
  color: inherit;
  display: block;
}

.service-card-link:hover {
  color: inherit;
}

.service-icon,
.choice-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light), #f0f9ff);
  border-radius: 20px;
  color: var(--primary);
  display: inline-flex;
  font-size: 2rem;
  height: 68px;
  justify-content: center;
  margin-bottom: 1.35rem;
  width: 68px;
}

.service-icon {
  background: rgba(31, 75, 188, 0.08);
  color: #1f4bbc;
}

.choice-icon {
  background: rgba(31, 75, 188, 0.08);
  color: #1f4bbc;
}

.service-card h3,
.choice-card h3,
.industry-card h3 {
  font-size: 1.18rem;
  font-weight: 850;
  margin-bottom: 0.8rem;
}

.service-card p,
.choice-card p,
.industry-card p {
  color: #4f5b6b;
  font-size: 0.94rem;
  margin: 0;
}

.about-visual {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  min-height: 470px;
  overflow: hidden;
  position: relative;
}

.about-visual::after {
  background: linear-gradient(130deg, rgba(14, 165, 233, 0.42), rgba(186, 230, 253, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.about-visual img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.choice-card {
  padding: 30px;
}

.brand-section {
  background: linear-gradient(180deg, #fff 0%, #eff9ff 100%);
  padding: 80px 0;
}

.brand-track,
.industry-scroller {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  overflow: hidden;
}

.brand-row {
  animation: slideLeft 24s linear infinite;
  display: flex;
  gap: 22px;
  width: max-content;
}

.brand-row span {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  color: #4b5563;
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 850;
  height: 64px;
  justify-content: center;
  min-width: 190px;
  padding: 0 28px;
}

.brand-track:hover .brand-row,
.industry-scroller:hover .industry-row {
  animation-play-state: paused;
}

.industry-row {
  animation: slideLeft 44s linear infinite;
  display: flex;
  gap: 22px;
  width: max-content;
}

.industry-card {
  display: flex;
  flex: 0 0 330px;
  flex-direction: column;
  height: 250px;
  padding: 28px;
}

.industry-card i {
  align-items: center;
  background: rgba(31, 75, 188, 0.08);
  border-radius: 18px;
  color: #1f4bbc !important;
  display: inline-flex;
  font-size: 2.2rem;
  height: 64px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 64px;
}

.tech-tabs {
  overflow: hidden;
}

.tech-tab-nav {
  border-bottom: 2px solid #e5e7f3;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: space-between;
  overflow-x: auto;
  padding: 0 10px;
  scrollbar-width: none;
}

.tech-tab-nav::-webkit-scrollbar {
  display: none;
}

.tech-tab-nav .nav-item {
  flex: 1 0 auto;
  text-align: center;
}

.tech-tab-nav .nav-link {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #667085;
  font-weight: 850;
  min-width: 120px;
  padding: 0 18px 16px !important;
  position: relative;
  width: 100%;
}

.tech-tab-nav .nav-link:hover,
.tech-tab-nav .nav-link:focus {
  color: #1f4bbc !important;
}

.tech-tab-nav .nav-link::after {
  background: #1f4bbc;
  border-radius: 999px 999px 0 0;
  bottom: -2px;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  width: 72px;
}

.tech-tab-nav .nav-link.active {
  color: var(--ink) !important;
}

.tech-tab-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.tech-tab-content {
  padding-top: 50px;
}

.tech-logo-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
}

.tech-logo-card {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  min-height: 150px;
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.tech-logo-card:hover {
  box-shadow: 0 20px 44px rgba(14, 165, 233, 0.18);
  transform: translateY(-5px);
}

.tech-logo-card img {
  height: 66px;
  object-fit: contain;
  width: 66px;
}

.tech-logo-card span:last-child {
  color: #2f3645;
  font-size: 1rem;
  font-weight: 850;
}

.tech-letter {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  color: #fff !important;
  display: inline-flex;
  font-size: 1.2rem !important;
  font-weight: 850;
  height: 66px;
  justify-content: center;
  width: 66px;
}

.about-hero-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 75, 188, 0.14), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(31, 75, 188, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
  padding: 104px 0 96px;
}

.about-cta-btn {
  align-items: center;
  background: #1f4bbc;
  border: 1px solid #1f4bbc;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(31, 75, 188, 0.22);
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.about-cta-btn:hover {
  background: #15347f;
  border-color: #15347f;
  box-shadow: 0 24px 54px rgba(31, 75, 188, 0.28);
  color: #fff;
  transform: translateY(-2px);
}

.about-hero-visual {
  border: 1px solid rgba(31, 75, 188, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(31, 75, 188, 0.14);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.about-hero-visual::after {
  background: linear-gradient(135deg, rgba(31, 75, 188, 0.28), rgba(255, 255, 255, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.about-hero-visual img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.about-hero-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 75, 188, 0.14);
  border-radius: 22px;
  bottom: 26px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  color: #1f4bbc;
  display: inline-flex;
  gap: 12px;
  font-weight: 850;
  left: 26px;
  padding: 16px 20px;
  position: absolute;
  z-index: 1;
}

.about-hero-card i {
  align-items: center;
  background: rgba(31, 75, 188, 0.08);
  border-radius: 16px;
  display: inline-flex;
  font-size: 1.4rem;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.principle-card {
  background: #fff;
  border: 1px solid rgba(31, 75, 188, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
  height: 100%;
  padding: 30px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.principle-card:hover {
  box-shadow: 0 28px 70px rgba(31, 75, 188, 0.14);
  transform: translateY(-6px);
}

.principle-icon {
  align-items: center;
  background: rgba(31, 75, 188, 0.08);
  border-radius: 20px;
  color: #1f4bbc;
  display: inline-flex;
  font-size: 2rem;
  height: 68px;
  justify-content: center;
  margin-bottom: 1.35rem;
  width: 68px;
}

.principle-card h3 {
  font-size: 1.18rem;
  font-weight: 850;
  margin-bottom: 0.8rem;
}

.principle-card p {
  color: #4f5b6b;
  font-size: 0.94rem;
  margin: 0;
}

.story-badge-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(31, 75, 188, 0.78), rgba(31, 75, 188, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(31, 75, 188, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 38px;
}

.story-badge-card i {
  align-items: center;
  background: rgba(31, 75, 188, 0.08);
  border-radius: 24px;
  color: #1f4bbc;
  display: inline-flex;
  font-size: 2.5rem;
  height: 92px;
  justify-content: center;
  width: 92px;
}

.story-badge-card strong {
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 850;
  line-height: 1.2;
}

.story-badge-card span {
  color: var(--muted);
}

.about-final-cta {
  align-items: center;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #15347f 0%, #1f4bbc 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(31, 75, 188, 0.22);
  color: #fff;
  display: flex;
  gap: 36px;
  justify-content: space-between;
  overflow: hidden;
  padding: 46px;
}

.about-final-cta .eyebrow,
.about-final-cta .section-description,
.about-final-cta .section-title {
  color: #fff;
}

.about-final-cta .section-description {
  opacity: 0.78;
}

.about-final-cta .section-title {
  margin-bottom: 1rem;
  max-width: 820px;
}

.about-cta-btn-light {
  background: #fff;
  border-color: #fff;
  color: #1f4bbc;
  flex: 0 0 auto;
}

.about-cta-btn-light:hover {
  background: #eef3ff;
  border-color: #eef3ff;
  color: #15347f;
}

.mobile-hero-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(31, 75, 188, 0.16), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(14, 165, 233, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
  padding: 104px 0 96px;
}

.mobile-hero-visual {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(31, 75, 188, 0.96), rgba(14, 165, 233, 0.9)),
    #1f4bbc;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(31, 75, 188, 0.2);
  display: flex;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.mobile-hero-visual::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  content: "";
  inset: 30px;
  opacity: 0.5;
  position: absolute;
}

.mobile-hero-image {
  background: rgba(31, 75, 188, 0.08);
  border: 1px solid rgba(31, 75, 188, 0.16);
}

.mobile-hero-image::before {
  display: none;
}

.mobile-hero-image img {
  border-radius: inherit;
  display: block;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.app-phone {
  animation: floatY 5s ease-in-out infinite;
  background: #08162f;
  border: 12px solid #0f172a;
  border-radius: 42px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.34);
  height: 410px;
  padding: 24px 16px 18px;
  position: relative;
  width: 214px;
  z-index: 2;
}

.app-phone-speaker {
  background: #020617;
  border-radius: 999px;
  height: 7px;
  left: 50%;
  position: absolute;
  top: 11px;
  transform: translateX(-50%);
  width: 58px;
}

.app-screen {
  background: linear-gradient(180deg, #f8fcff 0%, #e0f2fe 100%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  overflow: hidden;
  padding: 24px 16px;
}

.app-status-row,
.app-nav-row {
  display: flex;
  justify-content: space-between;
}

.app-status-row span,
.app-nav-row span {
  background: rgba(31, 75, 188, 0.18);
  border-radius: 999px;
  display: block;
  height: 12px;
  width: 38px;
}

.app-hero-card {
  background:
    linear-gradient(135deg, rgba(31, 75, 188, 0.9), rgba(14, 165, 233, 0.78)),
    #1f4bbc;
  border-radius: 22px;
  height: 118px;
  margin-top: 8px;
}

.app-list-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  height: 54px;
}

.app-list-card-short {
  width: 78%;
}

.app-nav-row {
  margin-top: auto;
}

.app-nav-row span {
  height: 8px;
  width: 30px;
}

.mobile-float-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  color: var(--ink);
  display: grid;
  line-height: 1.1;
  padding: 16px 18px;
  position: absolute;
  z-index: 3;
}

.mobile-float-card strong {
  color: #1f4bbc;
  font-size: 1.7rem;
  font-weight: 850;
}

.mobile-float-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-float-card-1 {
  right: 12%;
  top: 13%;
}

.mobile-float-card-2 {
  left: 11%;
  top: 50%;
}

.mobile-float-card-3 {
  bottom: 16%;
  right: 10%;
}

.mobile-service-card {
  background: #fff;
  border: 1px solid rgba(31, 75, 188, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
  height: 100%;
  padding: 32px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mobile-service-card:hover {
  box-shadow: 0 28px 70px rgba(31, 75, 188, 0.14);
  transform: translateY(-6px);
}

.mobile-service-icon {
  align-items: center;
  background: rgba(31, 75, 188, 0.08);
  border-radius: 20px;
  color: #1f4bbc;
  display: inline-flex;
  font-size: 2rem;
  height: 68px;
  justify-content: center;
  margin-bottom: 1.35rem;
  width: 68px;
}

.mobile-service-card h3 {
  font-size: 1.22rem;
  font-weight: 850;
  margin-bottom: 0.85rem;
}

.mobile-service-card p {
  color: #4f5b6b;
  font-size: 0.95rem;
  margin: 0;
}

.mobile-tech-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
}

.mobile-tech-card {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(31, 75, 188, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  min-height: 158px;
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mobile-tech-card:hover {
  box-shadow: 0 22px 48px rgba(31, 75, 188, 0.14);
  transform: translateY(-5px);
}

.mobile-tech-card img {
  height: 66px;
  object-fit: contain;
  width: 66px;
}

.mobile-tech-card span:last-child {
  color: #2f3645;
  font-size: 1rem;
  font-weight: 850;
}

.mobile-process {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(7, minmax(118px, 1fr));
  position: relative;
}

.mobile-process::before {
  border-top: 2px dashed rgba(31, 75, 188, 0.18);
  content: "";
  left: 6%;
  position: absolute;
  right: 6%;
  top: 74px;
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-step strong {
  color: #1f4bbc;
  display: block;
  font-size: 1rem;
  font-weight: 850;
  margin-bottom: 10px;
}

.process-arc {
  align-items: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from 270deg, #1f4bbc 0 52%, rgba(31, 75, 188, 0.14) 52% 100%) border-box;
  border: 8px solid transparent;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  color: #1f4bbc;
  display: inline-flex;
  font-size: 1.45rem;
  height: 82px;
  justify-content: center;
  margin: 28px 0 20px;
  width: 82px;
}

.process-step h3 {
  color: #2f3645;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
  margin: 0;
}

.mobile-final-cta {
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(56, 189, 248, 0.26), transparent 32%),
    linear-gradient(135deg, #15347f 0%, #1f4bbc 100%);
}

.web-hero-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 75, 188, 0.16), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
  padding: 104px 0 96px;
}

.web-hero-visual {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(31, 75, 188, 0.94), rgba(14, 165, 233, 0.86)),
    #1f4bbc;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(31, 75, 188, 0.2);
  display: flex;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  padding: 44px;
  position: relative;
}

.web-hero-visual::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  content: "";
  inset: 30px;
  opacity: 0.44;
  position: absolute;
}

.web-hero-image {
  background: rgba(31, 75, 188, 0.08);
  border: 1px solid rgba(31, 75, 188, 0.16);
  display: block;
  padding: 0;
}

.web-hero-image::before {
  display: none;
}

.web-hero-image img {
  border-radius: inherit;
  display: block;
  height: 100%;
  inset: 0;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.web-hero-vector {
  height: 430px;
  max-width: 520px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.web-browser-card {
  animation: floatY 5s ease-in-out infinite;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
  overflow: hidden;
  position: absolute;
  right: 10px;
  top: 34px;
  width: min(440px, 86%);
  z-index: 2;
}

.web-browser-bar {
  align-items: center;
  background: #f1f7ff;
  display: flex;
  gap: 8px;
  height: 54px;
  padding: 0 20px;
}

.web-browser-bar span {
  background: rgba(31, 75, 188, 0.24);
  border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
}

.web-browser-content {
  display: grid;
  gap: 22px;
  grid-template-columns: 0.42fr 1fr;
  min-height: 310px;
  padding: 26px;
}

.web-browser-sidebar {
  background:
    linear-gradient(180deg, rgba(31, 75, 188, 0.18), rgba(14, 165, 233, 0.08)),
    #eef8ff;
  border-radius: 20px;
}

.web-browser-main {
  display: grid;
  gap: 18px;
}

.web-browser-chart {
  background:
    linear-gradient(135deg, rgba(31, 75, 188, 0.92), rgba(14, 165, 233, 0.78)),
    #1f4bbc;
  border-radius: 22px;
  min-height: 150px;
  position: relative;
}

.web-browser-chart::after {
  border: solid rgba(255, 255, 255, 0.72);
  border-width: 0 0 8px 8px;
  border-radius: 0 0 0 18px;
  content: "";
  height: 74px;
  left: 28px;
  position: absolute;
  top: 36px;
  transform: skew(-18deg);
  width: 190px;
}

.web-browser-lines {
  display: grid;
  gap: 12px;
}

.web-browser-lines span {
  background: #e5efff;
  border-radius: 999px;
  display: block;
  height: 16px;
}

.web-browser-lines span:nth-child(2) {
  width: 82%;
}

.web-browser-lines span:nth-child(3) {
  width: 62%;
}

.web-human {
  bottom: 6px;
  height: 230px;
  left: 10px;
  position: absolute;
  width: 188px;
  z-index: 4;
}

.web-human-head {
  background: #ffd1b3;
  border-radius: 50%;
  box-shadow: inset -8px -8px 0 rgba(203, 101, 62, 0.18);
  height: 68px;
  left: 66px;
  position: absolute;
  top: 0;
  width: 68px;
}

.web-human-head::before {
  background: #15347f;
  border-radius: 48% 52% 44% 48%;
  content: "";
  height: 35px;
  left: -4px;
  position: absolute;
  top: -8px;
  transform: rotate(-10deg);
  width: 76px;
}

.web-human-head::after {
  background: #15347f;
  border-radius: 999px;
  box-shadow: 24px 0 0 #15347f;
  content: "";
  height: 6px;
  left: 20px;
  position: absolute;
  top: 36px;
  width: 6px;
}

.web-human-body {
  background: linear-gradient(135deg, #fff, #dff3ff);
  border: 8px solid rgba(255, 255, 255, 0.7);
  border-radius: 40px 40px 24px 24px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2);
  height: 128px;
  left: 43px;
  position: absolute;
  top: 72px;
  width: 112px;
}

.web-human-body::before,
.web-human-body::after {
  background: #dff3ff;
  border: 6px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  content: "";
  height: 90px;
  position: absolute;
  top: 22px;
  width: 28px;
}

.web-human-body::before {
  left: -30px;
  transform: rotate(20deg);
}

.web-human-body::after {
  right: -30px;
  transform: rotate(-20deg);
}

.web-human-laptop {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(31, 75, 188, 0.95), rgba(14, 165, 233, 0.9)),
    #1f4bbc;
  border: 6px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  bottom: 0;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.22);
  color: #fff;
  display: flex;
  font-size: 1.05rem;
  font-weight: 850;
  height: 72px;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 188px;
}

.web-human-laptop::after {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  bottom: -14px;
  content: "";
  height: 8px;
  left: 18px;
  position: absolute;
  right: 18px;
}

.web-code-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  color: #1f4bbc;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  min-width: 70px;
  padding: 0 16px;
  position: absolute;
  z-index: 5;
}

.web-code-badge-css {
  left: 24px;
  top: 32px;
}

.web-code-badge-html {
  right: 0;
  top: 2px;
}

.web-code-badge-js {
  right: 22px;
  bottom: 58px;
}

.web-code-badge-php {
  left: 164px;
  bottom: 8px;
}

.web-float-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  color: #1f4bbc;
  display: inline-flex;
  gap: 10px;
  font-weight: 850;
  line-height: 1;
  padding: 16px 18px;
  position: absolute;
  z-index: 3;
}

.web-float-card i {
  font-size: 1.35rem;
}

.web-float-card-1 {
  right: 10%;
  top: 12%;
}

.web-float-card-2 {
  left: 9%;
  top: 50%;
}

.web-float-card-3 {
  bottom: 14%;
  right: 12%;
}

.web-service-card,
.web-process-card {
  background: #fff;
  border: 1px solid rgba(31, 75, 188, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
  height: 100%;
  padding: 32px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.web-service-card:hover,
.web-process-card:hover {
  box-shadow: 0 28px 70px rgba(31, 75, 188, 0.14);
  transform: translateY(-6px);
}

.web-service-icon,
.web-process-icon {
  align-items: center;
  background: rgba(31, 75, 188, 0.08);
  border-radius: 20px;
  color: #1f4bbc;
  display: inline-flex;
  font-size: 2rem;
  height: 68px;
  justify-content: center;
  margin-bottom: 1.35rem;
  width: 68px;
}

.web-service-card h3,
.web-process-card h3 {
  font-size: 1.22rem;
  font-weight: 850;
  margin-bottom: 0.85rem;
}

.web-service-card p,
.web-process-card p {
  color: #4f5b6b;
  font-size: 0.95rem;
  margin: 0;
}

.web-tech-tabs {
  overflow: hidden;
}

.web-tech-tab-nav {
  border-bottom: 2px solid #e5e7f3;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: space-between;
  overflow-x: auto;
  padding: 0 10px;
  scrollbar-width: none;
}

.web-tech-tab-nav::-webkit-scrollbar {
  display: none;
}

.web-tech-tab-nav .nav-item {
  flex: 1 0 auto;
  text-align: center;
}

.web-tech-tab-nav .nav-link {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #1f1f2d;
  font-size: 1.06rem;
  font-weight: 650;
  min-width: 150px;
  padding: 0 18px 18px !important;
  position: relative;
  width: 100%;
}

.web-tech-tab-nav .nav-link:hover,
.web-tech-tab-nav .nav-link:focus {
  color: #1f4bbc !important;
}

.web-tech-tab-nav .nav-link::after {
  background: #1f4bbc;
  border-radius: 999px 999px 0 0;
  bottom: -2px;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  width: 96px;
}

.web-tech-tab-nav .nav-link.active {
  color: #1f4bbc !important;
}

.web-tech-tab-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.web-tech-tab-content {
  padding-top: 58px;
}

.web-tech-logo-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
}

.web-tech-logo-card {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  min-height: 126px;
  text-align: center;
}

.web-tech-logo-card img {
  height: 70px;
  object-fit: contain;
  width: 70px;
}

.web-tech-logo-card span:last-child {
  color: #1f1f2d;
  font-size: 1rem;
  font-weight: 500;
}

.web-process-card {
  position: relative;
}

.web-process-card span {
  color: rgba(31, 75, 188, 0.18);
  font-size: 3.2rem;
  font-weight: 850;
  line-height: 1;
  position: absolute;
  right: 26px;
  top: 24px;
}

.web-process-icon {
  border-radius: 18px;
}

.web-final-cta {
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(56, 189, 248, 0.26), transparent 32%),
    linear-gradient(135deg, #15347f 0%, #1f4bbc 100%);
}

.backend-hero-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 75, 188, 0.16), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
  padding: 104px 0 96px;
}

.backend-hero-visual {
  background: rgba(31, 75, 188, 0.08);
  border: 1px solid rgba(31, 75, 188, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(31, 75, 188, 0.2);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.backend-hero-image img {
  border-radius: inherit;
  display: block;
  height: 100%;
  inset: 0;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.backend-tech-logo-grid {
  grid-template-columns: repeat(5, minmax(130px, 1fr));
}

.uiux-hero-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 75, 188, 0.16), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
  padding: 104px 0 96px;
}

.uiux-hero-visual {
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(31, 75, 188, 0.96), rgba(14, 165, 233, 0.88)),
    #1f4bbc;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(31, 75, 188, 0.2);
  display: flex;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  padding: 44px;
  position: relative;
}

.uiux-hero-visual::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  content: "";
  inset: 30px;
  opacity: 0.44;
  position: absolute;
}

.uiux-hero-image {
  background: rgba(31, 75, 188, 0.08);
  border: 1px solid rgba(31, 75, 188, 0.16);
  display: block;
  padding: 0;
}

.uiux-hero-image::before {
  display: none;
}

.uiux-hero-image img {
  border-radius: inherit;
  display: block;
  height: 100%;
  inset: 0;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.uiux-design-board {
  animation: floatY 5s ease-in-out infinite;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
  max-width: 440px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
}

.uiux-board-bar {
  align-items: center;
  background: #f1f7ff;
  display: flex;
  gap: 8px;
  height: 58px;
  padding: 0 22px;
}

.uiux-board-bar span {
  background: rgba(31, 75, 188, 0.28);
  border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
}

.uiux-wireframe {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 0.54fr;
  min-height: 320px;
  padding: 28px;
}

.uiux-wireframe-panel-main {
  background:
    linear-gradient(135deg, rgba(31, 75, 188, 0.94), rgba(14, 165, 233, 0.78)),
    #1f4bbc;
  border-radius: 24px;
  display: grid;
  gap: 16px;
  padding: 28px;
}

.uiux-wireframe-panel-main span {
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  display: block;
  height: 18px;
}

.uiux-wireframe-panel-main span:nth-child(1) {
  width: 74%;
}

.uiux-wireframe-panel-main span:nth-child(2) {
  width: 52%;
}

.uiux-wireframe-panel-main span:nth-child(3) {
  align-self: end;
  height: 82px;
  width: 100%;
}

.uiux-wireframe-stack {
  display: grid;
  gap: 16px;
}

.uiux-wireframe-stack span {
  background: #e5efff;
  border-radius: 18px;
}

.uiux-wireframe-stack span:nth-child(2) {
  background: rgba(31, 75, 188, 0.16);
}

.uiux-palette-card,
.uiux-cursor-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  color: #1f4bbc;
  display: inline-flex;
  gap: 10px;
  font-weight: 850;
  padding: 16px 18px;
  position: absolute;
  z-index: 3;
}

.uiux-palette-card {
  left: 8%;
  top: 15%;
}

.uiux-cursor-card {
  bottom: 16%;
  right: 8%;
}

.uiux-palette-card i,
.uiux-cursor-card i {
  font-size: 1.35rem;
}

.uiux-figma-chip {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  bottom: 18%;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  color: #1f4bbc;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 850;
  height: 74px;
  justify-content: center;
  left: 10%;
  position: absolute;
  width: 74px;
  z-index: 3;
}

.uiux-service-card {
  background: #fff;
  border: 1px solid rgba(31, 75, 188, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
  height: 100%;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.uiux-service-card:hover {
  box-shadow: 0 28px 70px rgba(31, 75, 188, 0.14);
  transform: translateY(-6px);
}

.uiux-service-card > span {
  color: rgba(31, 75, 188, 0.16);
  font-size: 3rem;
  font-weight: 850;
  line-height: 1;
  position: absolute;
  right: 26px;
  top: 24px;
}

.uiux-service-icon {
  align-items: center;
  background: rgba(31, 75, 188, 0.08);
  border-radius: 20px;
  color: #1f4bbc;
  display: inline-flex;
  font-size: 2rem;
  height: 68px;
  justify-content: center;
  margin-bottom: 1.35rem;
  width: 68px;
}

.uiux-service-card h3 {
  font-size: 1.22rem;
  font-weight: 850;
  margin-bottom: 0.85rem;
}

.uiux-service-card p {
  color: #4f5b6b;
  font-size: 0.95rem;
  margin: 0;
}

.uiux-tool-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
}

.uiux-tool-card {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(31, 75, 188, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  min-height: 158px;
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.uiux-tool-card:hover {
  box-shadow: 0 22px 48px rgba(31, 75, 188, 0.14);
  transform: translateY(-5px);
}

.uiux-tool-card img {
  height: 66px;
  object-fit: contain;
  width: 66px;
}

.uiux-tool-card:nth-child(n + 2) img {
  background: linear-gradient(135deg, #eff6ff, #dff3ff);
  border-radius: 18px;
  padding: 14px;
}

.uiux-tool-card span {
  color: #2f3645;
  font-size: 1rem;
  font-weight: 850;
}

.uiux-consultation-card {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 80% 86%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(135deg, #082383 0%, #092b94 54%, #061f75 100%);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(31, 75, 188, 0.22);
  color: #fff;
  overflow: hidden;
  padding: 64px 40px;
  position: relative;
  text-align: center;
}

.uiux-consultation-card::before,
.uiux-consultation-card::after {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 45% 55% 62% 38%;
  content: "";
  height: 260px;
  position: absolute;
  width: 260px;
}

.uiux-consultation-card::before {
  left: 8%;
  top: -120px;
}

.uiux-consultation-card::after {
  bottom: -130px;
  right: 10%;
  transform: rotate(-18deg);
}

.uiux-consultation-content {
  margin: 0 auto;
  max-width: 790px;
  position: relative;
  z-index: 1;
}

.uiux-consultation-logo {
  background: #fff;
  border-radius: 999px;
  margin-bottom: 24px;
  padding: 8px 14px;
  width: 150px;
}

.uiux-consultation-card h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.uiux-consultation-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 26px;
  max-width: 720px;
}

.contact-hero-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(31, 75, 188, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
  padding: 64px 0;
}

.contact-hero-panel {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(31, 75, 188, 0.08) 100%),
    #fff;
  border: 1px solid rgba(31, 75, 188, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(31, 75, 188, 0.12);
  overflow: hidden;
  padding: 46px;
}

.contact-hero-visual {
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  height: 420px;
  overflow: hidden;
  position: relative;
}

.contact-hero-visual::after {
  background: linear-gradient(135deg, rgba(31, 75, 188, 0.28), rgba(255, 255, 255, 0.02));
  content: "";
  inset: 0;
  position: absolute;
}

.contact-hero-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact-form-section {
  background:
    radial-gradient(circle at 18% 50%, rgba(31, 75, 188, 0.07), transparent 28%),
    #fff;
}

.contact-support-visual {
  background: rgba(31, 75, 188, 0.06);
  border: 1px solid rgba(31, 75, 188, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(31, 75, 188, 0.1);
  display: flex;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
  padding: 54px;
  position: relative;
}

.contact-support-visual::before {
  background-image: radial-gradient(rgba(31, 75, 188, 0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  content: "";
  inset: 36px;
  opacity: 0.42;
  position: absolute;
}

.contact-support-visual img {
  align-self: center;
  border: 14px solid rgba(31, 75, 188, 0.12);
  border-radius: 50%;
  height: 330px;
  object-fit: cover;
  position: relative;
  width: 330px;
  z-index: 1;
}

.support-orbit {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(31, 75, 188, 0.12);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  color: #1f4bbc;
  display: inline-flex;
  font-size: 1.5rem;
  height: 62px;
  justify-content: center;
  position: absolute;
  width: 62px;
  z-index: 2;
}

.support-orbit-1 {
  left: 17%;
  top: 26%;
}

.support-orbit-2 {
  right: 18%;
  top: 28%;
}

.support-orbit-3 {
  bottom: 24%;
  left: 19%;
}

.support-orbit-4 {
  bottom: 25%;
  right: 20%;
}

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(31, 75, 188, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  padding: 40px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  background: #f8fbff;
  border: 1px solid rgba(31, 75, 188, 0.16);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  outline: 0;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1f4bbc;
  box-shadow: 0 0 0 4px rgba(31, 75, 188, 0.1);
}

.contact-form button {
  background: #1f4bbc;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(31, 75, 188, 0.22);
  color: #fff;
  font: inherit;
  font-weight: 800;
  justify-self: start;
  min-height: 52px;
  padding: 0 34px;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.contact-form button:hover {
  background: #15347f;
  box-shadow: 0 24px 54px rgba(31, 75, 188, 0.28);
  transform: translateY(-2px);
}

.site-footer {
  background: var(--footer);
  padding: 76px 0 26px;
}

.footer-logo {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  width: 150px;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.68);
  max-width: 430px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 850;
  margin-bottom: 1rem;
}

.footer-list {
  color: rgba(255, 255, 255, 0.68);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

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

.contact-list i {
  color: #1f4bbc;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 22px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199.98px) {
  .service-card {
    aspect-ratio: auto;
    min-height: 360px;
  }

  .tech-logo-grid {
    grid-template-columns: repeat(4, minmax(130px, 1fr));
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .about-hero-section {
    padding: 76px 0;
  }

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

  .hero-illustration img {
    height: 340px;
  }

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

  .about-visual {
    min-height: 360px;
  }

  .about-hero-visual {
    min-height: 420px;
  }

  .about-final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px;
  }

  .mobile-hero-section {
    padding: 76px 0;
  }

  .mobile-hero-visual {
    min-height: 460px;
  }

  .mobile-hero-image img {
    min-height: 460px;
  }

  .mobile-tech-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

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

  .mobile-process::before {
    display: none;
  }

  .web-hero-section {
    padding: 76px 0;
  }

  .web-hero-visual {
    min-height: 460px;
  }

  .web-hero-image img {
    min-height: 460px;
  }

  .web-hero-vector {
    height: 390px;
  }

  .web-browser-card {
    width: min(410px, 86%);
  }

  .web-human {
    transform: scale(0.88);
    transform-origin: bottom left;
  }

  .web-tech-logo-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .uiux-hero-section {
    padding: 76px 0;
  }

  .uiux-hero-visual {
    min-height: 460px;
  }

  .uiux-hero-image img {
    min-height: 460px;
  }

  .uiux-tool-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .contact-hero-panel {
    padding: 34px;
  }

  .contact-hero-visual {
    height: 340px;
  }

  .contact-support-visual {
    min-height: 460px;
  }
}

@media (max-width: 767.98px) {
  .metric-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-card strong {
    flex-basis: 96px;
    height: 96px;
    width: 96px;
  }

  .tech-logo-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .mobile-tech-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .web-tech-logo-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .uiux-tool-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .web-tech-tab-content {
    padding-top: 38px;
  }

  .tech-tab-content {
    padding-top: 34px;
  }

  .about-hero-visual {
    min-height: 340px;
  }

  .story-badge-card {
    padding: 30px;
  }

  .contact-support-visual {
    min-height: 420px;
    padding: 34px;
  }

  .contact-support-visual img {
    height: 260px;
    width: 260px;
  }

  .support-orbit {
    height: 54px;
    width: 54px;
  }

  .contact-form-card {
    padding: 30px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 132px;
  }

  .hero-title {
    font-size: 2.28rem;
  }

  .hero-illustration img {
    height: 260px;
  }

  .about-final-cta {
    padding: 28px;
  }

  .mobile-hero-visual {
    min-height: 390px;
  }

  .mobile-hero-image img {
    min-height: 390px;
  }

  .web-hero-visual {
    min-height: 390px;
    padding: 28px;
  }

  .web-hero-image {
    padding: 0;
  }

  .web-hero-image img {
    min-height: 390px;
  }

  .uiux-hero-visual {
    min-height: 390px;
    padding: 28px;
  }

  .uiux-hero-image {
    padding: 0;
  }

  .uiux-hero-image img {
    min-height: 390px;
  }

  .uiux-wireframe {
    grid-template-columns: 1fr;
    min-height: 260px;
    padding: 22px;
  }

  .uiux-wireframe-stack {
    display: none;
  }

  .uiux-palette-card,
  .uiux-cursor-card {
    padding: 12px 14px;
  }

  .uiux-palette-card {
    left: 5%;
    top: 9%;
  }

  .uiux-cursor-card {
    right: 5%;
  }

  .uiux-figma-chip {
    height: 56px;
    width: 56px;
  }

  .web-hero-vector {
    height: 330px;
  }

  .web-browser-card {
    right: 0;
    top: 28px;
    width: 88%;
  }

  .web-browser-content {
    grid-template-columns: 1fr;
    min-height: 210px;
    padding: 20px;
  }

  .web-browser-sidebar {
    display: none;
  }

  .web-browser-chart::after {
    width: 130px;
  }

  .web-human {
    bottom: -4px;
    left: -4px;
    transform: scale(0.7);
    transform-origin: bottom left;
  }

  .web-code-badge {
    border-radius: 14px;
    font-size: 0.78rem;
    min-height: 40px;
    min-width: 58px;
    padding: 0 12px;
  }

  .web-code-badge-css {
    left: 0;
    top: 8px;
  }

  .web-code-badge-html {
    right: 0;
    top: 0;
  }

  .web-code-badge-js {
    bottom: 42px;
    right: 0;
  }

  .web-code-badge-php {
    bottom: 0;
    left: 118px;
  }

  .web-float-card {
    padding: 12px 14px;
  }

  .web-float-card-1 {
    right: 6%;
  }

  .web-float-card-2 {
    left: 5%;
  }

  .web-float-card-3 {
    right: 6%;
  }

  .app-phone {
    height: 350px;
    width: 186px;
  }

  .mobile-float-card {
    padding: 12px 14px;
  }

  .mobile-float-card strong {
    font-size: 1.25rem;
  }

  .mobile-float-card-1 {
    right: 6%;
  }

  .mobile-float-card-2 {
    left: 5%;
  }

  .mobile-float-card-3 {
    right: 6%;
  }

  .mobile-service-card {
    padding: 26px;
  }

  .web-service-card,
  .web-process-card,
  .uiux-service-card {
    padding: 26px;
  }

  .mobile-process {
    grid-template-columns: 1fr;
  }

  .about-hero-card {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  .contact-hero-panel,
  .contact-form-card {
    padding: 24px;
  }

  .contact-hero-visual {
    height: 260px;
  }

  .contact-support-visual {
    min-height: 360px;
  }

  .contact-support-visual img {
    height: 210px;
    width: 210px;
  }

  .support-orbit {
    font-size: 1.1rem;
    height: 44px;
    width: 44px;
  }

  .service-card {
    min-height: auto;
  }

  .industry-card {
    flex-basis: 282px;
  }
}
