/* Multivision — plain CSS (converted from Next.js/Tailwind site) */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Source+Serif+4:ital@0;1&display=swap");

:root {
  --brand-50: #eef6fc;
  --brand-100: #d9ebf8;
  --brand-200: #b3d7f1;
  --brand-300: #7eb8e5;
  --brand-400: #4a94d4;
  --brand-500: #2a75bc;
  --brand-600: #1d5d9e;
  --brand-700: #184b80;
  --brand-800: #173f6b;
  --brand-900: #18355a;
  --brand-950: #0f2239;
  --brand-sky: #3b9ede;
  --brand-cyan: #22d3ee;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-serif-accent: "Source Serif 4", Georgia, serif;
  --shadow-card: 0 4px 24px -4px rgba(15, 34, 57, 0.08);
  --shadow-card-hover: 0 20px 50px -12px rgba(15, 34, 57, 0.18);
  --shadow-glow: 0 0 60px -12px rgba(14, 165, 233, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: #fff;
  color: var(--slate-700);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brand-200);
  color: var(--brand-950);
}

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

a {
  color: inherit;
}

.container-main {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-main {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 640px) {
  .section-pad {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.section-pad.pt-0 {
  padding-top: 0;
}

.bg-white {
  background: #fff;
}

.heading-display {
  font-family: var(--font-sans);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brand-950);
  line-height: 1.15;
}

.heading-section {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brand-950);
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(to right, var(--brand-600), var(--brand-sky), var(--brand-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-mesh-light {
  background-image:
    radial-gradient(at 40% 20%, rgba(59, 158, 222, 0.12) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(14, 165, 233, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(26, 95, 158, 0.1) 0px, transparent 50%);
}

.bg-mesh-dark {
  background-image:
    radial-gradient(at 40% 20%, rgba(59, 158, 222, 0.25) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 80%, rgba(26, 95, 158, 0.2) 0px, transparent 50%);
}

.bg-grid-pattern {
  background-image:
    linear-gradient(to right, rgba(26, 95, 158, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 95, 158, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: var(--brand-600);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(29, 93, 158, 0.25);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--brand-700);
  box-shadow: 0 10px 25px -3px rgba(29, 93, 158, 0.4);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.15s;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.glass-panel {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
}

.card-tech {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card-tech:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 158, 222, 0.5);
  box-shadow: var(--shadow-card-hover);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--slate-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo-img {
  height: 4.5rem;
  width: auto;
}

@media (min-width: 640px) {
  .logo-img {
    height: 5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: var(--slate-100);
  color: var(--brand-800);
}

.nav-link.is-active {
  background: var(--brand-100);
  color: var(--brand-700);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
  width: 22rem;
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-panel {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 0.5rem;
  box-shadow: var(--shadow-card-hover);
}

.nav-dropdown-panel a {
  display: block;
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-700);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-panel a:hover {
  background: var(--brand-50);
  color: var(--brand-800);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.menu-toggle {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--brand-800);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-top: 1px solid var(--slate-200);
  background: #fff;
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav {
  padding: 1rem 0;
}

.mobile-nav .nav-link {
  display: block;
  margin-bottom: 0.25rem;
}

.mobile-sub {
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--brand-100);
}

.mobile-sub a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  text-decoration: none;
}

.mobile-sub a:hover {
  background: var(--brand-50);
}

.mobile-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

.mobile-cta .btn-primary {
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--slate-200);
  background: var(--brand-950);
  color: var(--slate-400);
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-500);
  padding: 1.5rem 0;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-950);
  padding-top: 5rem;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 6rem;
  }
}

.hero-blur-1 {
  position: absolute;
  right: -8rem;
  top: 5rem;
  height: 16rem;
  width: 16rem;
  border-radius: 50%;
  background: rgba(59, 158, 222, 0.2);
  filter: blur(48px);
}

.hero-blur-2 {
  position: absolute;
  left: -5rem;
  bottom: 0;
  height: 14rem;
  width: 14rem;
  border-radius: 50%;
  background: rgba(29, 93, 158, 0.2);
  filter: blur(48px);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 158, 222, 0.3);
  background: rgba(59, 158, 222, 0.1);
  padding: 0.25rem 0.75rem;
}

.hero-badge-dot {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.hero-badge-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brand-cyan);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-core {
  position: relative;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background: var(--brand-cyan);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-badge span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-200);
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--slate-300);
}

@media (min-width: 640px) {
  .hero-lead {
    font-size: 1rem;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stats dt {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}

.hero-stats dd {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: var(--slate-400);
}

.hero-slider-wrap {
  position: relative;
}

@media (min-width: 1024px) {
  .hero-slider-wrap {
    padding-left: 0.5rem;
  }
}

.hero-slider-glow {
  position: absolute;
  inset: -0.75rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(59, 158, 222, 0.3), rgba(29, 93, 158, 0.2));
  filter: blur(24px);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  height: 200px;
}

@media (min-width: 640px) {
  .hero-slider {
    height: 240px;
    border-radius: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-slider {
    height: 280px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 34, 57, 0.5), transparent);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.hero-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: width 0.2s, background 0.2s;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.is-active {
  width: 1.25rem;
  background: var(--brand-cyan);
}

/* Service section */
.service-section {
  background: #fff;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .service-section {
    padding: 5rem 0;
  }
}

.section-title {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading {
  margin: 0 0 0.375rem;
  font-weight: 400;
  color: #354656;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
}

.section-title > p {
  margin: 0;
  font-size: 15px;
  font-style: italic;
  line-height: 1.625;
  color: #9ea5a1;
  font-family: var(--font-serif-accent);
}

@media (min-width: 640px) {
  .section-title > p {
    font-size: 1rem;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-grid.cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .service-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-post {
  border-radius: 0.75rem;
  border: 1px solid #e4e8ea;
  background: #f7f7f7;
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s;
}

.service-post:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.service-post a {
  text-decoration: none;
  color: inherit;
}

.service-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.service-icon-svg {
  width: 2.25rem;
  height: 2.25rem;
  transition: transform 0.3s;
}

.service-post:hover .service-icon-svg {
  transform: translateY(-5px);
}

.entry-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  color: #404b56;
  transition: color 0.2s;
}

.service-post:hover .entry-title {
  color: #354656;
}

.entry-content p {
  margin: 0;
  padding: 0 0.25rem;
  font-size: 15px;
  line-height: 1.625;
  color: #737f85;
}

/* Clients marquee */
.clients-section {
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  background: rgba(248, 250, 252, 0.8);
  padding: 4rem 0;
}

.clients-heading {
  margin: 0;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #354656;
}

.clients-header {
  margin-bottom: 2.5rem;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.clients-marquee-track {
  display: flex;
  width: max-content;
  animation: clientsMarquee 45s linear infinite;
  will-change: transform;
}

.clients-marquee:hover .clients-marquee-track {
  animation-play-state: paused;
}

@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.clients-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .clients-marquee-group {
    gap: 2rem;
    padding-right: 2rem;
  }
}

.client-logo-card {
  display: flex;
  height: 5rem;
  width: 9rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 640px) {
  .client-logo-card {
    height: 6rem;
    width: 10rem;
  }
}

.clients-marquee:hover .client-logo-card {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-card-hover);
}

.client-logo-img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: transform 0.3s, opacity 0.3s, filter 0.3s;
}

@media (min-width: 640px) {
  .client-logo-img {
    max-height: 3rem;
  }
}

.client-logo-card:hover .client-logo-img {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(0);
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee {
    mask-image: none;
  }
  .clients-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }
  .clients-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

/* Why section */
.why-card {
  display: grid;
  gap: 3rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: linear-gradient(to bottom right, var(--brand-50), #fff);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .why-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 3rem;
  }
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-600);
}

.check-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.check-icon {
  flex-shrink: 0;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  margin-top: 0.125rem;
}

.check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.why-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-card-hover);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--brand-950);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-box {
    padding: 4rem 3rem;
  }
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
}

.cta-box p {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--slate-300);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.cta-blur-1 {
  position: absolute;
  right: -5rem;
  top: 0;
  height: 16rem;
  width: 16rem;
  border-radius: 50%;
  background: rgba(59, 158, 222, 0.3);
  filter: blur(48px);
}

.cta-blur-2 {
  position: absolute;
  left: 0;
  bottom: -5rem;
  height: 16rem;
  width: 16rem;
  border-radius: 50%;
  background: rgba(29, 93, 158, 0.25);
  filter: blur(48px);
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--slate-200);
  background: var(--brand-50);
  padding-top: 6rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 33.333%;
  opacity: 0.2;
  display: none;
}

@media (min-width: 1024px) {
  .page-hero-image {
    display: block;
  }
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
}

.page-hero-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, var(--brand-50), transparent);
}

.page-hero-content {
  position: relative;
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .page-hero-content {
    padding: 4rem 0;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  font-weight: 500;
  color: var(--brand-600);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--brand-800);
}

.breadcrumb span.sep {
  color: var(--slate-300);
}

.breadcrumb span.current {
  font-weight: 500;
  color: var(--slate-500);
}

.page-subtitle {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--slate-600);
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.specialty-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.specialty-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: rgba(248, 250, 252, 0.5);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-800);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.specialty-list a:hover {
  border-color: var(--brand-300);
  background: var(--brand-50);
}

.specialty-arrow {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--brand-600);
  color: #fff;
}

.about-banner {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-copy {
  max-width: 56rem;
  margin: 4rem auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--slate-600);
}

/* Products page */
.prose-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.625;
  color: var(--slate-600);
}

.tag-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.tag-pill {
  border-radius: 9999px;
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-800);
}

.text-center {
  text-align: center;
}

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.pb-20 { padding-bottom: 5rem; }

/* Services grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card-num {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-100);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.office-card {
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  background: rgba(248, 250, 252, 0.5);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.office-card:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-card);
}

.office-card h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-950);
}

.office-card address {
  margin: 0.75rem 0 0;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--slate-600);
}

.form-panel {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .form-panel {
    padding: 2rem;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: rgba(248, 250, 252, 0.5);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--slate-800);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-input:focus {
  border-color: var(--brand-400);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-200);
}

.form-input::placeholder {
  color: var(--slate-400);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  border-radius: 0.75rem;
  border: 1px solid #fecaca;
  background: #fef2f2;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #991b1b;
  margin-bottom: 1rem;
}

.form-success {
  border-radius: 1rem;
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  padding: 2.5rem;
  text-align: center;
}

.form-success-icon {
  margin: 0 auto;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d1fae5;
  color: #059669;
}

.recaptcha-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Solution / product pages */
.content-banner img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 2.5rem;
}

.content-photo {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.content-photo img {
  width: 100%;
  height: auto;
}

.content-photo.contain {
  background: var(--slate-50);
  padding: 1rem;
}

.content-photo.contain img {
  object-fit: contain;
  max-height: 400px;
  margin: 0 auto;
}

.solution-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .solution-layout.has-sidebar {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.content-prose p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--slate-600);
}

.bullet-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--slate-700);
}

.bullet-check {
  flex-shrink: 0;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  margin-top: 0.25rem;
}

.features-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: rgba(248, 250, 252, 0.8);
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

.features-grid img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
  flex-shrink: 0;
}

.related-box {
  margin-top: 4rem;
  border-radius: 1rem;
  border: 1px solid rgba(59, 158, 222, 0.6);
  background: var(--brand-50);
  padding: 2rem;
}

.related-box h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-950);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.related-links a {
  display: inline-flex;
  border-radius: 9999px;
  border: 1px solid rgba(59, 158, 222, 0.5);
  background: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-800);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.related-links a:hover {
  border-color: var(--brand-500);
  background: var(--brand-600);
  color: #fff;
}

/* Cloud packages */
.packages-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .packages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.package-card.featured {
  border: 2px solid var(--brand-sky);
  background: linear-gradient(to bottom, var(--brand-800), var(--brand-950));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.package-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: var(--brand-cyan);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-950);
}

.package-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.package-card.featured h3 {
  color: #fff;
}

.package-card dl {
  margin: 1.5rem 0 0;
  flex: 1;
}

.package-row {
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.package-card.featured .package-row {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.package-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.package-row dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
}

.package-card.featured .package-row dt {
  color: var(--brand-200);
}

.package-row dd {
  margin: 0.25rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-950);
}

.package-card.featured .package-row dd {
  color: #fff;
}

.block {
  display: block;
}

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