:root {
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --brand-1: #0a84ff;
  --brand-2: #00b4d8;
  --accent-1: #ffb703;
  --success: #12b886;
  --radius-md: 18px;
  --radius-lg: 24px;
  --card-shadow: 0 18px 40px rgba(16, 57, 114, 0.12);
  --card-shadow-hover: 0 24px 50px rgba(16, 57, 114, 0.2);
}

* { box-sizing: border-box; }

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(1100px 420px at -8% -15%, rgba(0, 180, 216, 0.18), rgba(0, 180, 216, 0) 66%),
    radial-gradient(900px 380px at 105% 0%, rgba(255, 183, 3, 0.2), rgba(255, 183, 3, 0) 70%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 260px);
  line-height: 1.65;
}

.page-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-loader-overlay:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-panel {
  min-width: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.page-loader-spinner {
  width: 2rem;
  height: 2rem;
}

.page-loader-text {
  display: none;
}

h1, h2, h3, h4, h5, h6, .navbar-brand { font-family: "Outfit", sans-serif; }
a { text-decoration: none; color: inherit; }

.main-navbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 132, 255, 0.08);
  backdrop-filter: blur(14px);
}

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(11, 47, 91, 0.14);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #053b87;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--brand-1), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 18px rgba(10, 132, 255, 0.32);
}

.brand-logo {
  height: 36px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: inline-block;
}

.main-navbar .nav-link {
  color: #0f305e;
  font-weight: 600;
  padding: 0.62rem 0.92rem !important;
  border-radius: 10px;
  margin: 0 0.15rem;
  transition: all 0.22s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #fff;
  background: linear-gradient(140deg, #0a84ff, #00b4d8);
  box-shadow: 0 8px 18px rgba(10, 132, 255, 0.32);
}

.nav-cta-btn {
  background: linear-gradient(135deg, #ffb703, #ff8c3b);
  border: 0;
  color: #2f2400;
  border-radius: 12px;
  padding: 0.58rem 1rem;
  font-weight: 800;
}

.nav-download-btn {
  background: linear-gradient(135deg, #16a34a, #12b886);
  border: 0;
  color: #ffffff;
  border-radius: 12px;
  padding: 0.58rem 1rem;
  font-weight: 800;
}

.nav-download-btn:hover,
.nav-download-btn:focus {
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(18, 184, 134, 0.34);
}

.nav-download-btn.icon-only {
  width: 44px;
  min-width: 44px;
  padding: 0.58rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-login-btn {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border: 0;
  color: #ffffff;
  border-radius: 12px;
  padding: 0.58rem 1rem;
  font-weight: 800;
}

.nav-login-btn:hover,
.nav-login-btn:focus {
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(14, 165, 233, 0.34);
}

.nav-login-btn.icon-only {
  width: 44px;
  min-width: 44px;
  padding: 0.58rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-wrap {
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(470px 260px at 95% 0%, rgba(255, 183, 3, 0.45), rgba(255, 183, 3, 0) 70%),
    radial-gradient(520px 300px at 8% 100%, rgba(0, 180, 216, 0.22), rgba(0, 180, 216, 0) 70%),
    linear-gradient(135deg, #e8f2ff 0%, #f8fbff 45%, #ffffff 100%);
  box-shadow: var(--card-shadow);
}

.hero-wrap h1 {
  font-size: clamp(2.1rem, 4.9vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.hero-solution-tags .glass-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  text-align: center;
  white-space: normal;
  line-height: 1.2;
  font-size: 0.72rem;
  padding: 0.34rem 0.72rem;
}

.hero-wrap .btn {
  border-radius: 12px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
}

.hero-wrap .btn-primary {
  background: linear-gradient(135deg, #0a84ff, #00accf);
  border: 0;
}

.hero-wrap .btn-outline-dark {
  border-color: #0f305e;
  color: #0f305e;
}

.hero-wrap .btn-outline-dark:hover,
.hero-wrap .btn-outline-dark:focus {
  border-color: #0a84ff;
  color: #ffffff;
  background: linear-gradient(135deg, #0a84ff, #00b4d8);
  box-shadow: 0 10px 22px rgba(10, 132, 255, 0.28);
}

.hero-cta-group {
  align-items: center;
  margin-top: 0.5rem;
}

.hero-wrap .hero-btn-compact {
  border-radius: 10px;
  padding: 0.44rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.26rem;
}

.hero-wrap .hero-btn-compact i {
  font-size: 0.82rem;
}

.hero-illustration {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  border: 1px solid rgba(10, 132, 255, 0.18);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(220px 120px at 90% 10%, rgba(255, 183, 3, 0.35), rgba(255, 183, 3, 0) 72%),
    radial-gradient(240px 170px at 10% 85%, rgba(0, 180, 216, 0.2), rgba(0, 180, 216, 0) 72%),
    linear-gradient(140deg, #f2f8ff 0%, #f8fbff 45%, #ffffff 100%);
  box-shadow: 0 18px 38px rgba(19, 75, 143, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.65;
  animation: heroOrbDrift 8s ease-in-out infinite;
}

.orb-one {
  width: 130px;
  height: 130px;
  top: -28px;
  left: -20px;
  background: rgba(0, 180, 216, 0.36);
}

.orb-two {
  width: 160px;
  height: 160px;
  right: -34px;
  top: 32px;
  background: rgba(10, 132, 255, 0.26);
  animation-delay: 1.4s;
}

.orb-three {
  width: 120px;
  height: 120px;
  right: 28%;
  bottom: -46px;
  background: rgba(255, 183, 3, 0.34);
  animation-delay: 0.7s;
}

.hero-panel {
  position: relative;
  width: min(92%, 348px);
  border-radius: 18px;
  border: 1px solid rgba(10, 132, 255, 0.15);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(5px);
  box-shadow: 0 14px 28px rgba(14, 46, 88, 0.16);
  animation: heroPanelFloat 6s ease-in-out infinite;
}

.hero-panel-head {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(14, 46, 88, 0.08);
}

.hero-panel-head span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.hero-panel-head span:nth-child(1) { background: #f97316; }
.hero-panel-head span:nth-child(2) { background: #facc15; }
.hero-panel-head span:nth-child(3) { background: #22c55e; }

.hero-panel-body {
  padding: 14px 14px 12px;
  display: grid;
  gap: 10px;
}

.hero-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fbff;
  border: 1px solid rgba(10, 132, 255, 0.12);
  border-radius: 12px;
  padding: 8px 10px;
}

.hero-metric small {
  color: #4b647f;
  font-weight: 600;
}

.hero-metric strong {
  color: #0a4e93;
  font-size: 1rem;
}

.hero-chart {
  height: 84px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: linear-gradient(170deg, #edf6ff, #f7fbff);
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.hero-chart span {
  width: 18%;
  border-radius: 8px 8px 4px 4px;
  height: var(--h);
  background: linear-gradient(180deg, #00b4d8, #0a84ff);
  animation: heroBarGrow 2.2s ease-out both;
}

.hero-lines {
  display: grid;
  gap: 6px;
}

.hero-lines i {
  display: block;
  width: var(--w);
  height: 7px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(10, 132, 255, 0.36), rgba(0, 180, 216, 0.16));
}

.hero-float-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #114677;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 132, 255, 0.2);
  box-shadow: 0 8px 18px rgba(19, 75, 143, 0.12);
  animation: heroTagFloat 5.6s ease-in-out infinite;
}

.hero-float-tag i {
  color: #0a84ff;
}

.tag-a {
  left: 16px;
  top: 18px;
}

.tag-b {
  right: 14px;
  bottom: 84px;
  animation-delay: 1.2s;
}

.tag-c {
  left: 18%;
  bottom: 14px;
  animation-delay: 0.6s;
}

.tag-d {
  right: 14px;
  top: 18px;
  animation-delay: 0.3s;
}

.hero-benefits li {
  margin-bottom: 4px;
}

.about-visual-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10, 132, 255, 0.2);
  background: linear-gradient(150deg, #eaf5ff, #ffffff);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.25), rgba(10, 132, 255, 0));
  animation: aboutGlowPulse 4.2s ease-in-out infinite;
}

.about-visual-image {
  position: relative;
  z-index: 1;
  width: min(80%, 260px);
  height: auto;
  object-fit: contain;
  animation: aboutImageFloat 5.6s ease-in-out infinite;
}

.about-page-hero {
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.about-page-image-wrap {
  position: relative;
  min-height: 290px;
  border-radius: 18px;
  border: 1px solid rgba(10, 132, 255, 0.2);
  background: linear-gradient(150deg, #eaf5ff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
}

.about-page-image-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.24), rgba(10, 132, 255, 0));
  animation: aboutGlowPulse 4.4s ease-in-out infinite;
}

.about-page-image {
  position: relative;
  z-index: 1;
  width: min(86%, 320px);
  max-height: 260px;
  object-fit: contain;
  animation: aboutImageFloat 5.8s ease-in-out infinite;
}

.about-page-content {
  color: #334155;
  line-height: 1.75;
}

.about-page-content p:last-child {
  margin-bottom: 0;
}

.about-detail-card {
  border: 1px solid rgba(10, 132, 255, 0.13);
}

.about-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #0a84ff;
  background: rgba(10, 132, 255, 0.12);
  font-size: 1rem;
}

.intro-video-dialog {
  max-width: min(760px, 95vw);
}

.support-static-section {
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.support-contact-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.support-contact-label {
  font-weight: 700;
  color: #0f305e;
}

.support-contact-label i {
  color: #0a84ff;
}

.support-contact-number {
  font-weight: 800;
  color: #0a4e93;
  text-decoration: none;
}

.support-contact-number:hover,
.support-contact-number:focus {
  color: #085fae;
  text-decoration: underline;
}

.support-ticket-btn {
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #0a84ff, #00b4d8);
}

.support-ticket-btn:hover,
.support-ticket-btn:focus {
  box-shadow: 0 10px 20px rgba(10, 132, 255, 0.26);
}

.support-static-icon {
  width: min(180px, 72%);
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(10, 132, 255, 0.22));
  animation: supportIconPulse 4.6s ease-in-out infinite;
}

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

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

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

@keyframes heroBarGrow {
  from { transform: scaleY(0.22); transform-origin: bottom; opacity: 0.5; }
  to { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

.glass-tag {
  border-radius: 999px;
  padding: 0.42rem 0.92rem;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(7, 43, 91, 0.1);
  backdrop-filter: blur(2px);
}

.tag-accounting {
  color: #073f83;
  border-color: rgba(7, 114, 201, 0.25);
  background: linear-gradient(135deg, #e2f1ff, #f5fbff);
}

.tag-customization {
  color: #7a4a00;
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, #fff2d4, #fff8eb);
}

.tag-on-cloud {
  color: #0f5b44;
  border-color: rgba(24, 148, 112, 0.3);
  background: linear-gradient(135deg, #daf8ef, #f1fdf8);
}

.tag-prime {
  color: #6b2f86;
  border-color: rgba(147, 51, 234, 0.28);
  background: linear-gradient(135deg, #f3e8ff, #fcf8ff);
}

.tag-gallery-link {
  color: #ffffff;
  border-color: rgba(220, 38, 38, 0.42);
  background: linear-gradient(135deg, #ef4444, #dc2626);
  text-decoration: none;
}

.tag-gallery-link:hover,
.tag-gallery-link:focus {
  color: #ffffff;
  border-color: rgba(185, 28, 28, 0.58);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.section-title {
  position: relative;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 0.45rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a84ff, #00b4d8);
}

.contact-main-title {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

.contact-page .section-title {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
  margin-bottom: 0.9rem;
  padding-bottom: 0.3rem;
}

.contact-page .section-title::after {
  width: 58px;
  height: 3px;
}

.contact-page .contact-main-title {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.contact-page .lead {
  font-size: 1rem;
  line-height: 1.55;
}

.soft-card {
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  background: linear-gradient(150deg, #ffffff, #f8fbff);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.vertical-solution-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10, 132, 255, 0.24);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #0a4e93;
  background: rgba(255, 255, 255, 0.92);
}

.vertical-solution-chip:hover,
.vertical-solution-chip.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #0a84ff, #00b4d8);
}

.vertical-solution-card {
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.service-page-header .btn {
  white-space: nowrap;
}

.service-filter-bar .form-label {
  font-size: 0.8rem;
  color: var(--ink-700);
  font-weight: 600;
}

.service-filter-bar .form-control {
  min-height: 34px;
  font-size: 0.82rem;
}

.service-filter-bar .btn {
  min-height: 34px;
  font-size: 0.78rem;
  padding: 0.34rem 0.62rem;
}

.service-category-filter {
  border-top: 1px dashed rgba(10, 132, 255, 0.26);
  padding-top: 0.55rem;
}

.service-category-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.1rem;
}

.service-category-row::-webkit-scrollbar {
  height: 4px;
}

.service-category-row::-webkit-scrollbar-thumb {
  background: rgba(10, 132, 255, 0.35);
  border-radius: 999px;
}

.service-category-chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid rgba(10, 132, 255, 0.24);
  border-radius: 999px;
  padding: 2px 8px;
  min-height: 22px;
  font-size: 0.67rem;
  line-height: 1.1;
  font-weight: 700;
  color: #0a4e93;
  background: rgba(255, 255, 255, 0.92);
}

.service-category-filter .btn.btn-sm {
  min-height: 24px;
  padding: 0.2rem 0.48rem;
  font-size: 0.68rem;
  line-height: 1.15;
}

.service-category-chip:hover,
.service-category-chip.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #0a84ff, #00b4d8);
}

.catalog-card {
  overflow: hidden;
}

.catalog-media {
  height: 170px;
  border-bottom: 1px solid rgba(10, 132, 255, 0.12);
  background: linear-gradient(150deg, #f3f8ff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-media-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #0a84ff;
}

.catalog-card-body {
  min-height: 220px;
}

.catalog-card-body h5 {
  min-height: 52px;
}

.detail-page-card {
  max-width: 940px;
  margin: 0 auto;
}

.detail-page-media {
  width: 100%;
  height: clamp(210px, 40vh, 380px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 132, 255, 0.14);
  background: linear-gradient(150deg, #edf6ff, #ffffff);
}

.detail-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-page-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: #0a84ff;
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 132, 255, 0.12);
  color: #0a84ff;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0d4e8f;
  background: rgba(255, 255, 255, 0.8);
}

.btn-youtube-icon {
  min-width: 34px;
  padding: 0.24rem 0.56rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-youtube-icon i {
  font-size: 0.92rem;
}

.product-showcase-card {
  overflow: hidden;
}

.product-card-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(10, 132, 255, 0.12);
  background: linear-gradient(150deg, #edf6ff, #f8fcff);
}

.product-card-banner-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(10, 132, 255, 0.16);
  padding: 6px;
}

.product-card-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(10, 132, 255, 0.14);
  color: #0a84ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.product-chip {
  border: 1px solid rgba(10, 132, 255, 0.22);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0a4e93;
  background: rgba(255, 255, 255, 0.86);
}

.product-card-body {
  min-height: 100%;
}

.product-card-head {
  display: block;
}

.product-logo-wrap {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  border: 1px solid rgba(10, 132, 255, 0.16);
  background: linear-gradient(140deg, #ffffff, #eef6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.product-logo-fallback {
  font-size: 1.45rem;
  color: #0a84ff;
}

.team-member-card {
  text-align: center;
}

.team-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #0a84ff, #00b4d8);
  box-shadow: 0 10px 20px rgba(10, 132, 255, 0.25);
}

.team-member-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(10, 132, 255, 0.18);
  background: #ffffff;
  padding: 4px;
}

.home-client-card {
  border: 1px solid rgba(10, 132, 255, 0.15);
}

.home-client-logo {
  max-height: 50px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

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

@keyframes aboutGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.08); opacity: 0.95; }
}

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

.gallery-home-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid rgba(10, 132, 255, 0.14);
  box-shadow: 0 12px 24px rgba(16, 57, 114, 0.12);
  background: #eef5ff;
}

.gallery-home-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.gallery-home-empty {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #0a84ff;
}

.gallery-home-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px 9px;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.76));
}

.gallery-home-caption small {
  display: block;
  opacity: 0.86;
}

.blockquote {
  border-left: 3px solid rgba(10, 132, 255, 0.3);
  padding-left: 0.9rem;
}

.blog-feature-card {
  border: 1px solid rgba(10, 132, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(16, 57, 114, 0.1);
  display: flex;
  flex-direction: column;
}

.blog-feature-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.blog-feature-fallback {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #0a84ff;
  background: linear-gradient(150deg, #edf6ff, #ffffff);
}

.blog-feature-body {
  padding: 12px;
}

.blog-list-image {
  height: 220px;
  object-fit: cover;
}

.blog-detail-main-image {
  width: 100%;
  height: clamp(220px, 34vw, 360px);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.blog-filter-bar .form-label {
  font-size: 0.8rem;
  color: var(--ink-700);
  font-weight: 600;
}

.blog-filter-bar .form-control,
.blog-filter-bar .form-select {
  min-height: 40px;
}

.blog-recent-sidebar {
  position: sticky;
  top: 88px;
}

.blog-side-thumb {
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(10, 132, 255, 0.16);
}

.blog-side-thumb-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #edf6ff, #ffffff);
  color: #0a84ff;
  font-size: 1rem;
}

.blog-rich-content p:last-child {
  margin-bottom: 0;
}

.blog-rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.blog-rich-content h1,
.blog-rich-content h2,
.blog-rich-content h3,
.blog-rich-content h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #0f305e;
}

.blog-side-item + .blog-side-item {
  border-top: 1px dashed rgba(100, 116, 139, 0.35);
  padding-top: 10px;
}

.download-card {
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.download-thumb {
  height: 190px;
  object-fit: cover;
}

.btn-download-primary {
  background: linear-gradient(135deg, #16a34a, #12b886);
  color: #fff;
  border: 0;
}

.btn-download-primary:hover,
.btn-download-primary:focus {
  color: #fff;
  box-shadow: 0 10px 18px rgba(18, 184, 134, 0.34);
}

.ho-map-card {
  width: 100%;
}

.ho-map-standard {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10, 132, 255, 0.18);
  background: #f8fbff;
}

.ho-map-standard iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block;
}

.public-footer {
  color: #e5edff;
  background:
    radial-gradient(300px 140px at 80% -30%, rgba(255, 183, 3, 0.2), rgba(255, 183, 3, 0)),
    linear-gradient(150deg, #0c1d3d, #0b2f5b 42%, #123d66 100%);
  padding-top: 2.9rem !important;
  padding-bottom: 2.2rem !important;
}

.public-footer a {
  color: #ffffff;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.public-footer a:hover,
.public-footer a:focus-visible {
  color: #ffd166;
  opacity: 1;
}

.public-footer h5,
.public-footer h6 {
  color: #ffffff;
}

.public-footer .footer-heading,
.public-footer .footer-brand-name,
.public-footer .footer-company-text,
.public-footer .footer-contact-item span,
.public-footer .footer-contact-item strong {
  color: #ffffff !important;
}

.footer-grid {
  align-items: stretch;
}

.footer-panel {
  height: 100%;
  padding: 1.1rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-panel-company {
  padding-bottom: 1.35rem;
}

.footer-brand-stack {
  padding-bottom: 0.75rem;
  margin-bottom: 0.9rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer-brand-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-name {
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-company-text {
  color: #ffffff;
  margin-bottom: 0.75rem !important;
  line-height: 1.7;
  opacity: 0.98;
}

.footer-brand-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 9px;
}

.footer-brand-fallback {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffd166;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact-item i {
  color: #ffd166;
  margin-top: 0.15rem;
  min-width: 16px;
}

.footer-contact-item span,
.footer-contact-item a {
  word-break: break-word;
  color: #ffffff;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.9rem;
}

.footer-link-list li {
  margin: 0;
}

.footer-link-list a {
  display: inline-block;
  opacity: 0.95;
  font-weight: 500;
}

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

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffd166 !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-link i {
  font-size: 1rem;
  line-height: 1;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: rgba(255, 209, 102, 0.2);
  border-color: rgba(255, 209, 102, 0.55);
  transform: translateY(-2px);
}

.sticky-mobile-actions {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mobile-action {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  color: #fff;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.28);
}

.ask-action {
  background: linear-gradient(135deg, #0f766e, #0ea5e9);
  border: 0;
}

.ask-action-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.ask-action-icon .bi-person-fill {
  font-size: 1.22rem;
  line-height: 1;
}

.ask-action-icon .ask-action-question {
  position: absolute;
  right: -4px;
  bottom: -4px;
  font-size: 0.72rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.95);
  color: #0f766e;
  border-radius: 50%;
}

.whatsapp-action { background: linear-gradient(135deg, #12b886, #16a34a); }
.call-action { background: linear-gradient(135deg, #0a84ff, #005ac0); }

.ask-assistant-widget {
  position: fixed;
  right: 14px;
  bottom: 210px;
  z-index: 1060;
}

.ask-assistant-panel {
  width: min(360px, calc(100vw - 20px));
  background: #ffffff;
  border: 1px solid #d7e4f5;
  border-radius: 16px;
  box-shadow: 0 22px 40px rgba(8, 46, 92, 0.2);
  overflow: hidden;
  display: none;
}

.ask-assistant-panel.open {
  display: block;
}

.ask-assistant-header {
  padding: 10px 12px;
  border-bottom: 1px solid #dbe8f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.12), rgba(0, 180, 216, 0.14));
}

.ask-assistant-profile[hidden],
.ask-assistant-chat[hidden] {
  display: none !important;
}

.ask-assistant-profile {
  padding: 10px 12px 12px;
}

.ask-profile-note {
  font-size: 12px;
  color: #0f305e;
}

.ask-profile-form {
  display: grid;
  gap: 7px;
}

.ask-profile-form .form-control {
  min-height: 34px;
  font-size: 12px;
}

.ask-profile-form textarea.form-control {
  min-height: 54px;
  resize: vertical;
}

.ask-profile-error {
  min-height: 18px;
}

.ask-assistant-messages {
  padding: 10px 12px;
  max-height: 290px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ask-msg {
  font-size: 12px;
  line-height: 1.45;
  max-width: 90%;
  border-radius: 12px;
  padding: 8px 10px;
  word-break: break-word;
  border: 1px solid transparent;
}

.ask-msg-user {
  margin-left: auto;
  background: linear-gradient(135deg, #0a84ff, #0065d1);
  color: #ffffff;
  border-color: #0056b3;
}

.ask-msg-bot {
  background: #ecfeff;
  color: #0f172a;
  border-color: #99f6e4;
}

.ask-msg-bot .ask-youtube-link {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  font-weight: 700;
  color: #0f766e;
}

.ask-assistant-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #dbe8f7;
}

.ask-assistant-form .form-control {
  min-height: 36px;
  font-size: 12px;
}

/* Module login page */
.module-logins-head {
  max-width: 720px;
}

.module-logins-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.35rem 0.78rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #0a4e93;
  border: 1px solid rgba(10, 132, 255, 0.2);
  background: linear-gradient(135deg, #eaf3ff, #f5fbff);
}

.module-logins-subtitle {
  color: #40566f;
  max-width: 620px;
}

.module-login-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  border: 1px solid rgba(10, 132, 255, 0.16);
  background: var(--module-card-bg, linear-gradient(165deg, #ffffff, #f7fbff));
  box-shadow: 0 14px 28px rgba(16, 57, 114, 0.1);
  padding: 1rem;
  min-height: 230px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-login-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(16, 57, 114, 0.17);
  border-color: rgba(10, 132, 255, 0.28);
}

.module-login-card__glow {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: var(--module-accent-2, rgba(10, 132, 255, 0.18));
  opacity: 0.42;
  filter: blur(8px);
  z-index: -1;
}

.module-login-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.module-login-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--module-accent-1, #0a84ff), var(--module-accent-2, #00b4d8));
  box-shadow: 0 10px 18px rgba(16, 57, 114, 0.2);
}

.module-login-category {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.67rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f4c8a;
  border: 1px solid rgba(10, 132, 255, 0.2);
  background: rgba(255, 255, 255, 0.76);
}

.module-login-title {
  margin: 0 0 0.38rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.module-login-desc {
  color: #435e7a;
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0 0 0.95rem;
  min-height: 2.7em;
}

.module-login-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.module-login-btn {
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.45rem 0.72rem;
  background: linear-gradient(135deg, var(--module-accent-1, #0a84ff), var(--module-accent-2, #00b4d8));
  box-shadow: 0 8px 16px rgba(16, 57, 114, 0.18);
}

.module-login-btn:hover,
.module-login-btn:focus {
  color: #ffffff;
  transform: translateY(-1px);
}

.module-login-domain {
  max-width: 52%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  font-size: 0.68rem;
  color: #4b647f;
  border: 1px solid rgba(10, 132, 255, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.module-login-empty {
  border: 1px dashed rgba(10, 132, 255, 0.32);
  border-radius: 18px;
  background: linear-gradient(150deg, #f7fbff, #ffffff);
  text-align: center;
  padding: 2rem 1.2rem;
  color: #4b647f;
}

.module-login-empty__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  background: linear-gradient(135deg, #0a84ff, #00b4d8);
}

.module-login-card--sky {
  --module-accent-1: #0a84ff;
  --module-accent-2: #00b4d8;
  --module-card-bg: linear-gradient(160deg, #ffffff, #f0f8ff);
}

.module-login-card--mint {
  --module-accent-1: #0f9d85;
  --module-accent-2: #12b886;
  --module-card-bg: linear-gradient(160deg, #ffffff, #ecfdf7);
}

.module-login-card--amber {
  --module-accent-1: #f59e0b;
  --module-accent-2: #f97316;
  --module-card-bg: linear-gradient(160deg, #ffffff, #fff7e8);
}

.module-login-card--violet {
  --module-accent-1: #8b5cf6;
  --module-accent-2: #6366f1;
  --module-card-bg: linear-gradient(160deg, #ffffff, #f5f3ff);
}

.module-login-card--indigo {
  --module-accent-1: #3b82f6;
  --module-accent-2: #2563eb;
  --module-card-bg: linear-gradient(160deg, #ffffff, #eef4ff);
}

.module-login-card--teal {
  --module-accent-1: #0d9488;
  --module-accent-2: #06b6d4;
  --module-card-bg: linear-gradient(160deg, #ffffff, #edfdfd);
}

.youtube-gallery-head {
  border: 1px solid rgba(220, 38, 38, 0.16);
}

.video-filter-bar .form-label {
  font-size: 0.8rem;
  color: var(--ink-700);
  font-weight: 600;
}

.video-filter-bar .form-control,
.video-filter-bar .form-select,
.video-filter-bar .btn {
  min-height: 40px;
}

.youtube-video-card {
  overflow: hidden;
  border: 1px solid rgba(220, 38, 38, 0.14);
}

.youtube-video-frame {
  background: #06090f;
}

.youtube-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-video-placeholder {
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #b91c1c;
  background: linear-gradient(165deg, #fef2f2, #fee2e2);
}

.youtube-video-placeholder i {
  font-size: 2.2rem;
}

.youtube-gallery-image-card {
  overflow: hidden;
}

.youtube-gallery-image-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f8fafc;
}

.youtube-gallery-image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-gallery-image-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: linear-gradient(160deg, #f8fafc, #eef2ff);
}

.youtube-gallery-image-placeholder i {
  font-size: 2rem;
}

.video-source-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.24);
  background: #fef2f2;
}

.home-video-card .youtube-video-frame {
  border-bottom: 1px solid rgba(220, 38, 38, 0.12);
}

.home-video-placeholder {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #b91c1c;
  background: linear-gradient(165deg, #fef2f2, #fee2e2);
}

.home-video-placeholder i {
  font-size: 1.6rem;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #d7e4f5;
  min-height: 44px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(10, 132, 255, 0.55);
  box-shadow: 0 0 0 0.18rem rgba(10, 132, 255, 0.13) !important;
}

@media (max-width: 991px) {
  .nav-frosted-menu {
    margin-top: 0.6rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #dce8f7;
    padding: 0.55rem;
    border-radius: 14px;
  }
  .nav-cta-btn {
    width: 100%;
    margin-top: 6px;
  }
  .nav-download-btn.icon-only {
    width: 44px;
    margin-top: 6px;
  }
  .nav-login-btn.icon-only {
    width: 44px;
    margin-top: 6px;
  }
  .service-filter-bar .btn {
    width: 100%;
  }
  .about-page-image-wrap {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .hero-wrap { padding: 1.45rem; }
  .hero-wrap .btn { width: 100%; }
  .hero-wrap .hero-btn-compact {
    width: auto;
  }
  .hero-illustration {
    min-height: 310px;
  }
  .hero-panel {
    width: min(93%, 320px);
  }
  .hero-float-tag {
    font-size: 0.68rem;
    padding: 6px 9px;
  }
  .tag-a {
    left: 10px;
    top: 12px;
  }
  .tag-d {
    right: 10px;
    top: 12px;
  }
  .tag-b {
    right: 10px;
    bottom: 78px;
  }
  .tag-c {
    left: 12px;
    bottom: 10px;
  }
  .section-title { font-size: 1.32rem; }
  .mobile-action { width: 50px; height: 50px; font-size: 1.2rem; }
  .ask-assistant-widget {
    right: 10px;
    bottom: 196px;
  }
  .ask-assistant-panel {
    width: min(340px, calc(100vw - 16px));
  }
  .blog-recent-sidebar {
    position: static;
  }
  .blog-side-thumb {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }
  .catalog-media {
    height: 180px;
  }
  .detail-page-media {
    height: 220px;
  }
  .detail-page-card .btn {
    width: 100%;
  }
  .about-page-image-wrap {
    min-height: 220px;
  }
  .about-page-image {
    max-height: 220px;
  }
  .ho-map-standard {
    height: 300px;
  }
  .footer-link-list {
    grid-template-columns: 1fr;
  }
  .module-login-card {
    min-height: auto;
  }
  .module-login-domain {
    max-width: 48%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-panel,
  .hero-float-tag,
  .hero-chart span {
    animation: none !important;
  }
}
