@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;
  --line: #dce5f0;
  --primary: #0ea5e9;
  --primary-strong: #0284c7;
  --primary-soft: #e8f4ff;
  --secondary: #22c55e;
  --radius-lg: 14px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --ease-ui: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-ui: 220ms;
  --shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 2px 0 rgba(15, 23, 42, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 55%, #eef6ff 100%);
  font-size: 15px;
  line-height: 1.72;
}

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  backdrop-filter: blur(8px);
  background: rgba(245, 247, 251, 0.9);
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: var(--space-2) clamp(14px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color var(--dur-ui) var(--ease-ui), border-color var(--dur-ui) var(--ease-ui), box-shadow var(--dur-ui) var(--ease-ui);
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.74);
  border-color: #d7e5f4;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-image {
  height: 46px;
  width: auto;
  display: block;
}

.brand-title {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #0f2b63;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  background: #1f2937;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
  transition: color var(--dur-ui) var(--ease-ui);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current='page'] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current='page']::after {
  transform: scaleX(1);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-5) calc(var(--space-2) + 4px) calc(var(--space-5) + var(--space-3));
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-3);
  align-items: stretch;
  margin-bottom: var(--space-4);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0) 68%);
  top: -70px;
  right: -60px;
  pointer-events: none;
}

.hero-main,
.hero-panel,
.panel,
.service-card,
.metric,
.step,
.project-card,
.form-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-main,
.hero-panel {
  border-radius: var(--radius-lg);
}

.hero-main {
  padding: var(--space-4);
}

.hero-main h1 {
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.hero-main p {
  color: var(--muted);
  max-width: 56ch;
}

.hero-panel {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  animation: float-gentle 5.2s ease-in-out infinite;
}

.hero-point {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 500;
}

.hero-point b {
  color: var(--text);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.45rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  flex-shrink: 0;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--primary-strong);
  margin-bottom: var(--space-1);
}

.section-head {
  margin: var(--space-4) 0 var(--space-2);
}

.section-head h1,
.section-head h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.section-head p {
  color: var(--muted);
}

.grid-services,
.metrics-grid,
.process,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.service-card,
.metric,
.step,
.project-card,
.panel,
.form-card,
.info-card {
  padding: 1.1rem;
  transition: transform var(--dur-ui) var(--ease-ui), border-color var(--dur-ui) var(--ease-ui), box-shadow var(--dur-ui) var(--ease-ui), background-color var(--dur-ui) var(--ease-ui);
}

.service-card {
  background: #fff;
}

.service-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-1);
  border: 1px solid #dde6f1;
}

.service-image.image-fallback {
  object-fit: contain;
  background: #f2f8ff;
  padding: 16px;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: #c7d9ee;
  box-shadow: var(--shadow);
  background: #fcfdff;
}

.service-card h3,
.project-card h3,
.step h3,
.panel h3,
.form-card h3,
.info-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card p,
.project-card p,
.step p,
.panel p,
.metric p,
.form-card p,
.info-card p,
ul,
li {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.72em * 3);
}

.price {
  margin-top: 0;
  display: inline-block;
  background: #eaf7ff;
  color: #0a6a9b;
  border: 1px solid #bfe6fa;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
}

.metric strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.step .num {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  color: #0369a1;
  background: #ecf9ff;
  margin-bottom: 0.55rem;
}

.project-card small {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #0369a1;
}

.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.55rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #d9e1ec;
  background: #f8fbff;
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.75rem;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(2, 132, 199, 0.3);
  border-color: #94d7ff;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur-ui) var(--ease-ui), background-color var(--dur-ui) var(--ease-ui), box-shadow var(--dur-ui) var(--ease-ui), border-color var(--dur-ui) var(--ease-ui);
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.24);
}

.btn:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn.ghost {
  background: var(--primary-soft);
  color: #075985;
  border: 1px solid #c8ecff;
  box-shadow: none;
}

.actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cta {
  margin-top: var(--space-4);
  background: #0c93cf;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cta p {
  color: #dff4ff;
}

.cta h2,
.cta h3 {
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  margin-bottom: 0.25rem;
}

.cta .btn {
  background: #ffffff;
  color: #075985;
}

.footer {
  width: 100%;
  max-width: none;
  margin: var(--space-4) 0 0;
  color: #6b7280;
  font-size: 0.92rem;
}

.footer.footer-corporate {
  width: 100%;
  max-width: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  border-top: 1px solid #d8e3ef;
  border-bottom: 1px solid #d8e3ef;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%);
}

.footer-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.2vw, 1.5rem);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
  gap: clamp(0.95rem, 1.7vw, 1.5rem);
  padding: clamp(1.2rem, 2.6vw, 1.8rem) 0 clamp(1rem, 2.2vw, 1.35rem);
}

.footer-brand p {
  color: #5f6c7f;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 0.55rem;
  max-width: 44ch;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #163157;
  font-weight: 800;
}

.footer-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-col h4 {
  color: #173861;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.footer-col a,
.footer-col span {
  color: #5b6b80;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #234f82;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid #d9e5f2;
  background: rgba(255, 255, 255, 0.78);
}

.footer-bottom-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem clamp(1rem, 2.2vw, 1.5rem) 0.9rem;
}

.footer-bottom p {
  color: #607086;
  font-size: 0.84rem;
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .footer {
    margin-top: var(--space-3);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1.05rem 0 0.95rem;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom-shell {
    padding: 0.72rem 1rem 0.78rem;
  }
}

.wa-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.6rem 0.82rem;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.3);
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform var(--dur-ui) var(--ease-ui), box-shadow var(--dur-ui) var(--ease-ui), opacity var(--dur-ui) var(--ease-ui);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

.wa-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.42);
  animation: none;
}

.wa-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.mobile-sticky-cta {
  display: none;
}

.bullet {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
}

[data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  filter: blur(2px);
  transition:
    opacity 240ms var(--ease-ui),
    transform 260ms var(--ease-ui),
    filter 240ms var(--ease-ui);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, filter;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero-panel,
  .wa-cta {
    animation: none;
  }

  .service-card,
  .project-card,
  .blog-post-card,
  .btn,
  .thumb-wrap img {
    transition: none;
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero,
  .grid-services,
  .metrics-grid,
  .process,
  .project-grid,
  .blog-post-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .navbar {
    position: relative;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.4rem;
  }

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

  .logo-image {
    height: 40px;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .hero,
  .grid-services,
  .metrics-grid,
  .process,
  .project-grid,
  .blog-post-grid,
  .split-two,
  .cta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-cta {
    right: 14px;
    bottom: 66px;
    padding: 0.5rem 0.72rem;
    font-size: 0.76rem;
    opacity: 0.96;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 50;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid #d8e6f5;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  }

  .mobile-sticky-cta b {
    display: block;
    font-size: 0.84rem;
    color: #0f172a;
    line-height: 1.25;
  }

  .mobile-sticky-cta span {
    display: block;
    font-size: 0.74rem;
    color: #64748b;
  }

  .mobile-sticky-cta .btn {
    padding: 0.56rem 0.72rem;
    font-size: 0.76rem;
  }
}

.post-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: #0369a1;
  font-weight: 700;
}

.service-detail-link {
  margin-top: 0;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
  border: 1px solid #d4dfec;
  background: #ffffff;
  transition: background-color var(--dur-ui) var(--ease-ui), border-color var(--dur-ui) var(--ease-ui), transform var(--dur-ui) var(--ease-ui);
}

.service-detail-link:hover {
  background: #f4f8fc;
  border-color: #b7cbe1;
  transform: translateY(-1px);
}

.service-card-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 6px;
}

.service-card-actions .service-detail-link {
  margin-left: 0;
}

.service-detail-panel {
  margin-top: var(--space-3);
  border-radius: 18px;
  border: 1px solid #0b96d2;
  background: linear-gradient(135deg, #1c9ad0 0%, #0e88c2 100%);
  padding: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.service-detail-panel-main h2 {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  margin-bottom: 8px;
  line-height: 1.25;
}

.service-detail-panel-main p {
  color: rgba(233, 246, 255, 0.95);
  max-width: 66ch;
}

.service-detail-kicker {
  color: rgba(222, 242, 255, 0.96);
  margin-bottom: 8px;
}

.service-detail-meta {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-detail-meta .price {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.service-detail-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
}

.service-detail-btn-light {
  background: #ffffff;
  color: #0f5f8a;
  box-shadow: none;
}

.service-detail-btn-light:hover {
  background: #f4f9ff;
}

.service-detail-btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.service-detail-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.blog-post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.blog-post-card:hover {
  transform: translateY(-6px);
  border-color: #c7d9ee;
  box-shadow: var(--shadow);
}

.thumb-wrap {
  position: relative;
  display: block;
}

.thumb-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 260ms var(--ease-ui);
}

.thumb-wrap:hover img {
  transform: scale(1.04);
}

.thumb-wrap img.image-fallback {
  object-fit: contain;
  background: #f2f8ff;
  padding: 18px;
}

.post-tag {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  color: #334155;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
}

.blog-post-content {
  padding: 1rem;
}

.blog-post-content h3 {
  font-size: 1.03rem;
  margin-bottom: 0.55rem;
}

.blog-post-content h3 a {
  color: var(--text);
}

.blog-post-content p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 0.85rem;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.post-views::before {
  content: "Views ";
}

.article-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.article-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0369a1;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.article-content h1 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 0.75rem;
}

.article-content p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.share-section {
  margin-top: 1.1rem;
  padding-top: 0.95rem;
  border-top: 1px solid #dce5f0;
}

.share-title {
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid #d6e3f2;
  background: #f7fbff;
  color: #0f3a66;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--dur-ui) var(--ease-ui), background-color var(--dur-ui) var(--ease-ui), border-color var(--dur-ui) var(--ease-ui);
}

.share-btn:hover {
  transform: translateY(-1px);
  border-color: #b7d5f0;
  background: #eef7ff;
}

.share-btn.copy {
  font-family: inherit;
}

.share-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.share-copy-status {
  display: block;
  margin-top: 0.45rem;
  color: #0369a1;
  min-height: 1em;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.wa-cta:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.42);
  outline-offset: 2px;
}

.blog-post-card:focus-within,
.service-card:focus-within {
  border-color: #bcd8f2;
  box-shadow: var(--shadow);
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: #ecf2f9;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: skeleton-sweep 1.1s infinite;
}

.skeleton-line {
  height: 12px;
  border-radius: 8px;
  margin-bottom: var(--space-1);
}

.skeleton-line.lg {
  height: 18px;
}

.skeleton-line.sm {
  width: 56%;
}

.skeleton-thumb {
  width: 100%;
  height: 170px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-1);
}

@keyframes skeleton-sweep {
  100% {
    transform: translateX(100%);
  }
}

@keyframes float-gentle {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 10px 24px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 14px 30px rgba(34, 197, 94, 0.45); }
}

.home-slider {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: 2rem;
}

.home-slider::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 70%);
  top: -60px;
  right: -40px;
  pointer-events: none;
}

.home-slide {
  display: none;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1rem;
  padding: 1.35rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.12), transparent 45%),
    linear-gradient(180deg, #ffffff, #f9fcff);
}

.home-slide.active {
  display: grid;
  animation: slide-fade-in 260ms var(--ease-ui);
}

.home-slide-main,
.home-slide-panel {
  border: 1px solid #d8e6f5;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 1.2rem;
}

.home-slide-main h1 {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.home-slide-main p {
  color: var(--muted);
}

.home-slide-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.home-slide-panel .hero-point {
  border: 1px solid #d9e6f4;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #eef3ff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-slide-panel .hero-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.home-slide-panel .hero-point:nth-child(1) {
  background: #eef0fa;
  border-color: #d9ddef;
}

.home-slide-panel .hero-point:nth-child(2) {
  background: #e9f4f2;
  border-color: #cfe7e2;
}

.home-slide-panel .hero-point:nth-child(3) {
  background: #f8eef3;
  border-color: #ecd6e2;
}

.home-slide-panel .hero-point:nth-child(4) {
  background: #efeafb;
  border-color: #ddd3f2;
}

.home-slide-panel .hero-point .dot {
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  background: #2563eb;
}

.home-slide-panel .hero-point:nth-child(2) .dot {
  background: #14b8a6;
}

.home-slide-panel .hero-point:nth-child(3) .dot {
  background: #e11d48;
}

.home-slide-panel .hero-point:nth-child(4) .dot {
  background: #7c3aed;
}

.team-showcase {
  margin-top: var(--space-2);
  padding: var(--space-3);
  border: 1px solid #d8e6f5;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.team-card {
  position: relative;
  text-align: center;
  padding-top: 58px;
}

.team-card > img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0a2f72;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 2;
}

.team-card > img.image-fallback {
  object-fit: contain;
  padding: 14px;
  background: #f3f8ff;
}

.team-card-body {
  background: linear-gradient(180deg, rgba(38, 84, 160, 0.78) 0%, rgba(22, 63, 132, 0.76) 100%);
  color: rgba(240, 246, 255, 0.96);
  border: 1px solid rgba(130, 173, 236, 0.5);
  border-radius: 22px 22px 84px 22px;
  min-height: 215px;
  padding: 82px var(--space-2) var(--space-2);
  box-shadow: 0 10px 20px rgba(20, 54, 115, 0.12);
}

.team-card h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(223, 235, 255, 0.92);
}

.home-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 0 1rem;
}

.home-slider-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #cfe0f3;
  background: #ffffff;
  color: #0b6a9e;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--dur-ui) var(--ease-ui), background-color var(--dur-ui) var(--ease-ui), border-color var(--dur-ui) var(--ease-ui);
}

.home-slider-btn:hover {
  transform: translateY(-1px);
  background: #f2f9ff;
  border-color: #b7d5f3;
}

.home-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.home-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #c3d6ea;
  cursor: pointer;
  transition: transform var(--dur-ui) var(--ease-ui), background-color var(--dur-ui) var(--ease-ui);
}

.home-slider-dots button.active {
  background: var(--primary);
  transform: scale(1.2);
}

@keyframes slide-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .team-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .home-slide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-detail-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-2);
  }

  .service-detail-panel-actions {
    width: 100%;
    min-width: 0;
  }

  .service-detail-panel-actions .btn {
    width: 100%;
  }

  .team-showcase {
    grid-template-columns: 1fr;
    padding: var(--space-2);
  }

  .home-slide {
    padding: 0.9rem;
  }

  .home-slide-main,
  .home-slide-panel {
    padding: 1rem;
  }
}

.erp-module-cards,
.erp-faq-cards,
.erp-workflow-cards,
.erp-benefit-cards {
  position: relative;
}

.erp-module-card,
.erp-workflow-cards .step,
.erp-benefit-cards .panel,
.erp-faq-card {
  position: relative;
  border: 1px solid #d7e5f3;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 260ms var(--ease-ui), box-shadow 260ms var(--ease-ui), border-color 260ms var(--ease-ui);
  overflow: hidden;
}

.erp-module-card::before,
.erp-workflow-cards .step::before,
.erp-benefit-cards .panel::before,
.erp-faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #16a4e7 0%, #0f7cb6 100%);
  opacity: 0.9;
}

.erp-module-card:hover,
.erp-workflow-cards .step:hover,
.erp-benefit-cards .panel:hover,
.erp-faq-card:hover {
  transform: translateY(-6px);
  border-color: #b7d4ea;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.erp-module-card h3,
.erp-workflow-cards .step h3,
.erp-benefit-cards .panel h3,
.erp-faq-card h3 {
  color: #0f1f3c;
  margin-bottom: 10px;
}

.erp-module-card p,
.erp-workflow-cards .step p,
.erp-benefit-cards .panel p,
.erp-faq-card p {
  color: #556277;
}

.erp-workflow-cards {
  margin-bottom: var(--space-2);
  row-gap: var(--space-3);
}

.erp-workflow-cards .step,
.erp-benefit-cards .panel,
.erp-module-card,
.erp-faq-card {
  padding: 1.35rem;
  border-radius: 16px;
}

.erp-workflow-cards .step .num {
  width: 36px;
  height: 36px;
  border: 1px solid #cce7fa;
  background: linear-gradient(135deg, #eff8ff 0%, #e2f3ff 100%);
  color: #0a6da2;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.erp-benefit-cards .bullet {
  margin-top: 0.9rem;
  padding-left: 0;
  list-style: none;
}

.erp-benefit-cards .bullet li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.45rem;
}

.erp-benefit-cards .bullet li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fa6e7, #0d80bd);
  box-shadow: 0 0 0 3px rgba(31, 166, 231, 0.12);
}

@media (max-width: 760px) {
  .erp-module-card:hover,
  .erp-workflow-cards .step:hover,
  .erp-benefit-cards .panel:hover,
  .erp-faq-card:hover {
    transform: none;
  }
}

.erp-module-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.erp-module-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #cfe7f8;
  background: linear-gradient(135deg, #f1f9ff 0%, #e2f2ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.erp-module-icon svg {
  width: 21px;
  height: 21px;
  fill: #0f7cb6;
}

.erp-module-card h3 {
  margin-bottom: 0;
  line-height: 1.25;
}

.erp-module-icon.icon-finance {
  border-color: #bde7c8;
  background: linear-gradient(135deg, #f0fbf3 0%, #e2f7ea 100%);
}

.erp-module-icon.icon-finance svg {
  fill: #1f8a4d;
}

.erp-module-icon.icon-purchasing {
  border-color: #ffd9ad;
  background: linear-gradient(135deg, #fff7eb 0%, #ffefd9 100%);
}

.erp-module-icon.icon-purchasing svg {
  fill: #c76a0a;
}

.erp-module-icon.icon-inventory {
  border-color: #c8dcff;
  background: linear-gradient(135deg, #f1f6ff 0%, #e4edff 100%);
}

.erp-module-icon.icon-inventory svg {
  fill: #2a63b8;
}

.erp-module-icon.icon-supply {
  border-color: #d3d8ff;
  background: linear-gradient(135deg, #f3f4ff 0%, #e8eaff 100%);
}

.erp-module-icon.icon-supply svg {
  fill: #545fc4;
}

.erp-module-icon.icon-crm {
  border-color: #ffd0dc;
  background: linear-gradient(135deg, #fff1f5 0%, #ffe6ee 100%);
}

.erp-module-icon.icon-crm svg {
  fill: #bf3f68;
}

.erp-module-icon.icon-reporting {
  border-color: #d6d0ef;
  background: linear-gradient(135deg, #f5f2fb 0%, #ece8f7 100%);
}

.erp-module-icon.icon-reporting svg {
  fill: #4d3b72;
}

.erp-module-icon.icon-default {
  border-color: #cfe7f8;
  background: linear-gradient(135deg, #f1f9ff 0%, #e2f2ff 100%);
}

.erp-module-card.module-finance::before {
  background: linear-gradient(90deg, #2cbf66 0%, #1f8a4d 100%);
}

.erp-module-card.module-purchasing::before {
  background: linear-gradient(90deg, #f29c2b 0%, #c76a0a 100%);
}

.erp-module-card.module-inventory::before {
  background: linear-gradient(90deg, #4d8dff 0%, #2a63b8 100%);
}

.erp-module-card.module-supply::before {
  background: linear-gradient(90deg, #7a8cff 0%, #545fc4 100%);
}

.erp-module-card.module-crm::before {
  background: linear-gradient(90deg, #e56a96 0%, #bf3f68 100%);
}

.erp-module-card.module-reporting::before {
  background: linear-gradient(90deg, #6f5a9a 0%, #4d3b72 100%);
}

.erp-module-card.module-default::before {
  background: linear-gradient(90deg, #16a4e7 0%, #0f7cb6 100%);
}

/* ERP UI refresh: softer and less rigid */
.erp-module-cards,
.erp-workflow-cards,
.erp-benefit-cards,
.erp-faq-cards {
  gap: 1.1rem;
}

.erp-module-cards::before,
.erp-workflow-cards::before,
.erp-benefit-cards::before,
.erp-faq-cards::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(22, 164, 231, 0.12), transparent 44%),
    radial-gradient(circle at 88% 84%, rgba(15, 124, 182, 0.09), transparent 46%);
  pointer-events: none;
  z-index: 0;
}

.erp-module-card,
.erp-workflow-cards .step,
.erp-benefit-cards .panel,
.erp-faq-card {
  z-index: 1;
  backdrop-filter: blur(2px);
}

.erp-module-card::after,
.erp-workflow-cards .step::after,
.erp-benefit-cards .panel::after,
.erp-faq-card::after {
  content: '';
  position: absolute;
  right: -26px;
  top: -26px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.erp-module-card:nth-child(3n + 1),
.erp-workflow-cards .step:nth-child(3n + 1),
.erp-faq-card:nth-child(3n + 1) {
  border-radius: 20px 14px 20px 14px;
}

.erp-module-card:nth-child(3n + 2),
.erp-workflow-cards .step:nth-child(3n + 2),
.erp-faq-card:nth-child(3n + 2) {
  border-radius: 14px 20px 14px 20px;
}

.erp-module-card:nth-child(3n + 3),
.erp-workflow-cards .step:nth-child(3n + 3),
.erp-faq-card:nth-child(3n + 3) {
  border-radius: 18px;
}

.erp-module-card:hover,
.erp-workflow-cards .step:hover,
.erp-benefit-cards .panel:hover,
.erp-faq-card:hover {
  transform: translateY(-7px) scale(1.01);
}

.erp-module-card:nth-child(odd):hover,
.erp-workflow-cards .step:nth-child(odd):hover,
.erp-faq-card:nth-child(odd):hover {
  transform: translateY(-7px) rotate(-0.35deg) scale(1.01);
}

.erp-module-card:nth-child(even):hover,
.erp-workflow-cards .step:nth-child(even):hover,
.erp-faq-card:nth-child(even):hover {
  transform: translateY(-7px) rotate(0.35deg) scale(1.01);
}

.erp-module-head {
  align-items: flex-start;
}

.erp-module-card p,
.erp-faq-card p {
  max-width: 42ch;
}

@media (max-width: 760px) {
  .erp-module-cards,
  .erp-workflow-cards,
  .erp-benefit-cards,
  .erp-faq-cards {
    gap: 0.85rem;
  }

  .erp-module-card,
  .erp-workflow-cards .step,
  .erp-benefit-cards .panel,
  .erp-faq-card {
    border-radius: 14px;
  }

  .erp-module-card:hover,
  .erp-workflow-cards .step:hover,
  .erp-benefit-cards .panel:hover,
  .erp-faq-card:hover,
  .erp-module-card:nth-child(odd):hover,
  .erp-workflow-cards .step:nth-child(odd):hover,
  .erp-faq-card:nth-child(odd):hover,
  .erp-module-card:nth-child(even):hover,
  .erp-workflow-cards .step:nth-child(even):hover,
  .erp-faq-card:nth-child(even):hover {
    transform: none;
  }
}

.erp-benefit-cards {
  margin-top: 0.55rem;
}

/* Homepage Refresh */
body {
  background:
    radial-gradient(circle at 8% 6%, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0) 28%),
    radial-gradient(circle at 92% 10%, rgba(14, 165, 233, 0.16) 0%, rgba(14, 165, 233, 0) 30%),
    radial-gradient(circle at 18% 88%, rgba(34, 197, 94, 0.11) 0%, rgba(34, 197, 94, 0) 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f2f7ff 100%);
}

.navbar {
  background: rgba(255, 255, 255, 0.78);
  border-color: #d7e4f4;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.home-slider {
  border: 1px solid #d3e3f7;
  border-radius: 24px;
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 255, 0.9)),
    radial-gradient(circle at 8% 10%, rgba(99, 102, 241, 0.16), transparent 36%),
    radial-gradient(circle at 88% 86%, rgba(56, 189, 248, 0.14), transparent 38%);
}

.home-slider::before {
  width: 260px;
  height: 260px;
  top: -92px;
  right: -76px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 68%);
}

.home-slide {
  padding: 1.5rem;
  gap: 1.2rem;
  background:
    radial-gradient(circle at 4% 6%, rgba(244, 114, 182, 0.14), transparent 34%),
    radial-gradient(circle at 96% 95%, rgba(14, 165, 233, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 255, 0.9));
}

.home-slide-main,
.home-slide-panel {
  border: 1px solid rgba(172, 200, 233, 0.56);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(5px);
}

.home-slide-main .kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.18), rgba(99, 102, 241, 0.18));
  border: 1px solid rgba(114, 164, 224, 0.44);
}

.home-slide-main h1 {
  font-size: clamp(1.55rem, 2.35vw, 2.45rem);
  color: #111c3a;
}

.home-slide-main p {
  color: #526179;
}

.home-slide .actions .btn {
  border-radius: 12px;
  padding: 0.78rem 1.02rem;
}

.home-slide .actions .btn:first-child {
  background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26);
}

.home-slide .actions .btn.ghost {
  background: linear-gradient(90deg, #eef6ff 0%, #eaf2ff 100%);
  color: #234880;
  border: 1px solid #c9ddf6;
}

.home-slide-panel {
  gap: 0.85rem;
}

.home-slide-panel .hero-point {
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 18px rgba(15, 23, 42, 0.05);
}

.home-slide-panel .hero-point:hover {
  transform: translateY(-3px) scale(1.01);
}

.home-slider-controls {
  padding-bottom: 1.2rem;
}

.home-slider-btn {
  width: 38px;
  height: 38px;
  border-color: #c3d7f1;
  background: linear-gradient(180deg, #ffffff, #edf5ff);
  color: #0f4f88;
}

.home-slider-btn:hover {
  background: linear-gradient(180deg, #f8fcff, #e5f0ff);
}

.home-slider-dots button {
  width: 10px;
  height: 10px;
  background: #adc4df;
}

.home-slider-dots button.active {
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  transform: scale(1.3);
}

.section-head h2 {
  color: #152245;
}

.section-head p {
  color: #5b6780;
}

.grid-services .service-card {
  border: 1px solid #d5e3f3;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%),
    radial-gradient(circle at 90% 0%, rgba(14, 165, 233, 0.11), transparent 44%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}

.grid-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.11);
}

.metrics-grid .metric {
  border: 1px solid #ceddf0;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.07);
}

.metrics-grid .metric:nth-child(1) {
  background: linear-gradient(135deg, #eef8ff 0%, #e7f2ff 100%);
}

.metrics-grid .metric:nth-child(2) {
  background: linear-gradient(135deg, #f2fef7 0%, #e8fbf0 100%);
}

.metrics-grid .metric:nth-child(3) {
  background: linear-gradient(135deg, #fff5fb 0%, #ffeef8 100%);
}

.metric strong {
  color: #132a53;
}

.cta {
  border: 1px solid #b6dcf1;
  box-shadow: 0 18px 34px rgba(14, 84, 122, 0.2);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(125deg, #0f91db 0%, #2d7eea 52%, #4f63d6 100%);
}

.cta p {
  color: #deeeff;
}

.cta .btn {
  background: #ffffff;
  color: #1f4a84;
  border-radius: 12px;
}

.cta .btn:hover {
  background: #f0f7ff;
}

@media (max-width: 760px) {
  .home-slider {
    border-radius: 18px;
  }

  .home-slide {
    padding: 1rem;
    gap: 0.9rem;
  }

  .home-slide-main,
  .home-slide-panel,
  .grid-services .service-card,
  .metrics-grid .metric {
    border-radius: 14px;
  }
}

.partner-marquee {
  margin: 0 0 var(--space-4);
  padding: 0.4rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 0.9rem;
}

.partner-marquee::before,
.partner-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.96) 0%, rgba(248, 251, 255, 0) 100%);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 251, 255, 0.96) 0%, rgba(248, 251, 255, 0) 100%);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: max-content;
  animation: partner-scroll 22s linear infinite;
}

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

.partner-card {
  min-width: 210px;
  min-height: 88px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid #d6e3f3;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card img {
  width: 100%;
  max-width: 160px;
  max-height: 48px;
  object-fit: contain;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 0.9rem));
  }
}

@media (max-width: 760px) {
  .partner-marquee {
    margin-bottom: var(--space-3);
  }

  .partner-marquee::before,
  .partner-marquee::after {
    width: 34px;
  }

  .partner-card {
    min-width: 176px;
    min-height: 78px;
    padding: 0.72rem 0.84rem;
  }

  .partner-track {
    animation-duration: 17s;
  }
}

.portfolio-page .project-card {
  position: relative;
  padding-bottom: 2.95rem;
}

.portfolio-page .project-demo-btn {
  position: absolute;
  right: 1rem;
  bottom: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #bad9f5;
  background: linear-gradient(90deg, #eff8ff 0%, #e2f1ff 100%);
  color: #0b5f90;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform var(--dur-ui) var(--ease-ui), box-shadow var(--dur-ui) var(--ease-ui), border-color var(--dur-ui) var(--ease-ui), background-color var(--dur-ui) var(--ease-ui);
}

.portfolio-page .project-demo-btn:hover {
  transform: translateY(-1px);
  border-color: #95c7ee;
  box-shadow: 0 8px 18px rgba(14, 125, 182, 0.18);
  background: linear-gradient(90deg, #e5f3ff 0%, #d5e9ff 100%);
}

@media (max-width: 760px) {
  .portfolio-page .project-card {
    padding-bottom: 2.8rem;
  }

  .portfolio-page .project-demo-btn {
    right: 0.85rem;
    bottom: 0.82rem;
  }
}

.portfolio-page .project-panel-icon {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #cce2f7;
  background: linear-gradient(145deg, #f5fbff 0%, #e7f3ff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

@media (max-width: 760px) {
  .portfolio-page .project-panel-icon {
    top: 0.8rem;
    right: 0.85rem;
  }
}

.portfolio-page .project-card:nth-child(1) .project-panel-icon {
  border-color: #b7dfc4;
  background: linear-gradient(145deg, #eefcf3 0%, #def6e7 100%);
}

.portfolio-page .project-card:nth-child(2) .project-panel-icon {
  border-color: #c9d9ff;
  background: linear-gradient(145deg, #f1f5ff 0%, #e2ebff 100%);
}

.portfolio-page .project-card:nth-child(3) .project-panel-icon {
  border-color: #ffd9ac;
  background: linear-gradient(145deg, #fff8ee 0%, #ffefd8 100%);
}

.portfolio-page .project-card:nth-child(4) .project-panel-icon {
  border-color: #e2cdf8;
  background: linear-gradient(145deg, #f7f1ff 0%, #eee3ff 100%);
}

.portfolio-page .project-card:nth-child(5) .project-panel-icon {
  border-color: #c9ebf4;
  background: linear-gradient(145deg, #effbff 0%, #ddf4fb 100%);
}

.portfolio-page .project-card:nth-child(6) .project-panel-icon {
  border-color: #ffd2e1;
  background: linear-gradient(145deg, #fff2f7 0%, #ffe4ee 100%);
}

.services-page .workflow-image-panel {
  margin: 0 0 var(--space-4);
  padding: 0.6rem;
  border: 1px solid #d5e5f5;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.services-page .workflow-image-panel img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .services-page .workflow-image-panel {
    padding: 0.35rem;
    border-radius: 14px;
  }

  .services-page .workflow-image-panel img {
    border-radius: 10px;
  }
}

/* Home Premium Flow */
.home-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #eaf2ff, #f5f9ff);
  border: 1px solid #d6e4ff;
}

.home-kicker-badge .kicker-icon {
  font-size: 0.86rem;
  line-height: 1;
}

.home-slide {
  background:
    radial-gradient(circle at 10% 12%, rgba(99, 102, 241, 0.11), transparent 33%),
    radial-gradient(circle at 92% 84%, rgba(14, 165, 233, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 255, 0.9));
}

.home-slide-main,
.home-slide-panel {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.75);
}

.home-slide-panel {
  counter-reset: flowstep;
}

.home-slide-panel .hero-point {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 1.02rem;
  border-left: 4px solid #90b8ff;
  overflow: hidden;
}

.home-slide-panel .hero-point span {
  position: relative;
  z-index: 1;
}

.home-slide-panel .hero-point::after {
  counter-increment: flowstep;
  content: counter(flowstep, decimal-leading-zero);
  position: absolute;
  right: 0.7rem;
  top: 0.15rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(15, 43, 99, 0.11);
  z-index: 0;
}

.home-slide-panel .hero-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
}

.home-slide-panel .hero-point .dot {
  margin-top: 0.4rem;
}

.hero-point-note {
  display: inline-block;
  margin-top: 0.18rem;
  font-size: 0.8rem;
  color: #5f6f89;
  font-style: italic;
}

.home-slider-dots button {
  width: 20px;
  height: 7px;
  border-radius: 999px;
  background: #bfd3ea;
}

.home-slider-dots button.active {
  width: 42px;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  transform: none;
}

.home-slide .actions .btn:first-child {
  background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 50%, #0ea5e9 100%);
  background-size: 200% 100%;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.home-slide .actions .btn:first-child::after {
  content: "\2192";
  margin-left: 0.44rem;
  font-size: 0.92em;
}

.home-slide .actions .btn:first-child:hover {
  background-position: 100% 0;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
}

.home-slide .actions .btn.ghost {
  background: transparent;
  border: 1px solid #bfd5ef;
  color: #1f4b84;
  box-shadow: none;
}

.home-slide .actions .btn.ghost:hover {
  background: #eff6ff;
  border-color: #9fc0e6;
}

.home-slide.active .home-slide-main h1 {
  animation: home-title-in 320ms ease both;
}

.home-slide.active .home-slide-main p,
.home-slide.active .home-slide-main .actions,
.home-slide.active .home-slide-main .home-kicker-badge {
  animation: home-fade-up 280ms ease both;
}

.home-slide.active .home-slide-main p { animation-delay: 90ms; }
.home-slide.active .home-slide-main .actions { animation-delay: 150ms; }
.home-slide.active .home-slide-panel .hero-point {
  animation: home-fade-up 260ms ease both;
}

.home-slide.active .home-slide-panel .hero-point:nth-child(1) { animation-delay: 90ms; }
.home-slide.active .home-slide-panel .hero-point:nth-child(2) { animation-delay: 160ms; }
.home-slide.active .home-slide-panel .hero-point:nth-child(3) { animation-delay: 230ms; }

@keyframes home-title-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .home-kicker-badge {
    padding: 0.28rem 0.58rem;
    gap: 0.35rem;
  }

  .home-slide-panel .hero-point {
    border-left-width: 3px;
  }

  .home-slide-panel .hero-point::after {
    font-size: 1.7rem;
    right: 0.55rem;
  }

  .home-slider-dots button {
    width: 16px;
    height: 6px;
  }

  .home-slider-dots button.active {
    width: 30px;
  }
}

/* Home Corporate Calm Tune */
.home-slider {
  border-color: #d9e3ef;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.home-slide {
  background:
    radial-gradient(circle at 14% 16%, rgba(59, 130, 246, 0.08), transparent 36%),
    radial-gradient(circle at 90% 84%, rgba(148, 163, 184, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94));
}

.home-slide-main,
.home-slide-panel {
  border-color: #d5e1ee;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.home-kicker-badge {
  background: linear-gradient(135deg, #f1f5fb, #f8fbff);
  border-color: #d8e3ef;
  color: #365174;
}

.home-slide-main h1 {
  color: #152238;
}

.home-slide-main p {
  color: #5b677a;
}

.home-slide-panel .hero-point {
  border-left-color: #7ea0c7;
}

.home-slide-panel .hero-point::after {
  color: rgba(22, 43, 74, 0.1);
}

.home-slide-panel .hero-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.1);
}

.home-slider-dots button {
  width: 18px;
  height: 6px;
  background: #c5d3e3;
}

.home-slider-dots button.active {
  width: 34px;
  background: linear-gradient(90deg, #4a78a8, #2f5e92);
}

.home-slide .actions .btn:first-child {
  background: linear-gradient(90deg, #2f6fa7 0%, #285d8f 100%);
  background-size: 100% 100%;
  box-shadow: 0 10px 22px rgba(40, 93, 143, 0.24);
}

.home-slide .actions .btn:first-child::after {
  content: "\2192";
}

.home-slide .actions .btn:first-child:hover {
  box-shadow: 0 12px 24px rgba(40, 93, 143, 0.3);
  transform: translateY(-2px);
}

.home-slide .actions .btn.ghost {
  border-color: #c4d3e4;
  color: #28496f;
}

.home-slide .actions .btn.ghost:hover {
  background: #f2f6fb;
  border-color: #aebfd5;
}

.home-slide.active .home-slide-main h1 {
  animation-duration: 280ms;
}

.home-slide.active .home-slide-main p,
.home-slide.active .home-slide-main .actions,
.home-slide.active .home-slide-main .home-kicker-badge,
.home-slide.active .home-slide-panel .hero-point {
  animation-duration: 240ms;
}

@media (max-width: 760px) {
  .home-slider-dots button {
    width: 14px;
    height: 5px;
  }

  .home-slider-dots button.active {
    width: 24px;
  }
}


/* Sneat Inspired Global Refresh */
:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #44506d;
  --heading: #1f2a48;
  --line: #e4e9f3;
  --primary: #7367f0;
  --primary-strong: #5b50df;
  --primary-soft: #f2f1ff;
  --success: #28c76f;
  --danger: #ea5455;
  --warning: #ff9f43;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 30px rgba(47, 43, 61, 0.08);
  --shadow-soft: 0 6px 16px rgba(47, 43, 61, 0.06);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 12% -4%, rgba(115, 103, 240, 0.14), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(40, 199, 111, 0.11), transparent 30%),
    linear-gradient(180deg, #f8f9fd 0%, #f3f5fb 45%, #eef1f8 100%);
}

h1, h2, h3, h4 {
  color: var(--heading);
}

.navbar {
  border-bottom: 1px solid rgba(228, 233, 243, 0.85);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(47, 43, 61, 0.08);
}

.brand-title {
  color: #1f2a48;
}

.nav-links a {
  color: #6d7891;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current='page'] {
  color: #1f2a48;
}

.nav-links a::after {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7367f0, #5b50df);
}

.hero-main,
.hero-panel,
.panel,
.service-card,
.metric,
.step,
.project-card,
.form-card,
.info-card,
.blog-card,
.workflow-image-panel,
.contact-form,
.contact-card,
.home-slider,
.home-slide-main,
.home-slide-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.hero-main,
.home-slide-main {
  background:
    linear-gradient(148deg, rgba(115, 103, 240, 0.06), rgba(255, 255, 255, 0.93) 42%),
    #fff;
}

.kicker,
.home-kicker-badge {
  color: #5b50df;
}

.btn {
  border-radius: 11px;
  background: linear-gradient(135deg, #7367f0, #5b50df);
  box-shadow: 0 10px 22px rgba(115, 103, 240, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(115, 103, 240, 0.35);
}

.btn.ghost {
  color: #5b50df;
  border: 1px solid #d9d6ff;
  background: #f6f5ff;
  box-shadow: none;
}

.btn.ghost:hover {
  background: #efedff;
  border-color: #c8c3ff;
}

.section-head h1,
.section-head h2 {
  color: #1f2a48;
}

.section-head p,
.hero-main p,
.hero-point,
.panel p,
.metric p,
.step p,
.service-card p,
.blog-card p,
.footer-brand p,
.footer-col span {
  color: #6d7891;
}

.metric strong,
.num {
  color: #5b50df;
}

.cta {
  background: linear-gradient(120deg, #7367f0, #8d83ff 56%, #9d95ff 100%);
  box-shadow: var(--shadow);
}

.footer-corporate {
  background: #23283a;
}

.footer-corporate .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-corporate a:hover {
  color: #c9c5ff;
}

.wa-cta {
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(36, 196, 98, 0.28);
}

input,
textarea,
select,
.form-control {
  border-radius: 10px;
  border-color: #dfe4ef;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  border-color: #9d95ff;
  box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.14);
}

@media (max-width: 900px) {
  .navbar {
    background: rgba(255, 255, 255, 0.94);
  }

  .nav-links {
    border: 1px solid #e4e9f3;
    box-shadow: 0 18px 36px rgba(47, 43, 61, 0.12);
  }
}

/* Sneat Landing Navbar */
.landing-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  margin: 12px auto 0;
  width: min(1220px, calc(100% - 28px));
  border: 1px solid #e4e8f3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(47, 43, 61, 0.08);
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.navbar-expand-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .px-md-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.landing-navbar .logo {
  gap: 0.65rem;
}

.landing-navbar .logo-image {
  height: 42px;
}

.landing-navbar .brand-title {
  font-size: 1rem;
  font-weight: 800;
  color: #2f2b3d;
}

.landing-navbar .nav-links {
  align-items: center;
  gap: 1.1rem;
}

.landing-navbar .nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f6b7d;
  padding: 0.45rem 0.25rem;
}

.landing-navbar .nav-links a::after {
  bottom: -2px;
  height: 2px;
}

.landing-navbar .nav-links a:hover,
.landing-navbar .nav-links a.active,
.landing-navbar .nav-links a[aria-current='page'] {
  color: #5b50df;
}

.landing-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(47, 43, 61, 0.11);
}

@media (max-width: 760px) {
  .landing-navbar {
    width: calc(100% - 16px);
    margin-top: 8px;
    border-radius: 12px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .landing-navbar .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e3e7f2;
    border-radius: 10px;
    background: #fff;
  }

  .landing-navbar .nav-toggle span {
    width: 18px;
    margin: 2px 0;
    background: #6f6b7d;
  }

  .landing-navbar .nav-links {
    width: 100%;
    margin-top: 0.55rem;
    padding: 0.65rem;
    border: 1px solid #eceffa;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(47, 43, 61, 0.08);
  }

  .landing-navbar .nav-links a {
    display: block;
    padding: 0.6rem 0.7rem;
    border-radius: 8px;
  }

  .landing-navbar .nav-links a:hover,
  .landing-navbar .nav-links a.active,
  .landing-navbar .nav-links a[aria-current='page'] {
    background: #f4f2ff;
  }

  .landing-navbar .nav-links a::after {
    display: none;
  }
}

/* Sneat Landing Navbar Forced */
.navbar.landing-navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 80 !important;
  width: min(1220px, calc(100% - 28px)) !important;
  margin: 12px auto 0 !important;
  border: 1px solid #e4e8f3 !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 12px 28px rgba(47, 43, 61, 0.1) !important;
  backdrop-filter: blur(14px) !important;
  padding: 0.72rem 1rem !important;
}

.navbar.landing-navbar .nav-links {
  gap: 1.1rem !important;
}

.navbar.landing-navbar .nav-links a {
  color: #6f6b7d !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

.navbar.landing-navbar .nav-links a:hover,
.navbar.landing-navbar .nav-links a.active,
.navbar.landing-navbar .nav-links a[aria-current='page'] {
  color: #7367f0 !important;
}

.navbar.landing-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 16px 32px rgba(47, 43, 61, 0.14) !important;
}

@media (max-width: 760px) {
  .navbar.landing-navbar {
    width: calc(100% - 16px) !important;
    margin-top: 8px !important;
    padding: 0.6rem 0.75rem !important;
    border-radius: 12px !important;
  }

  .navbar.landing-navbar .nav-links {
    margin-top: 0.6rem !important;
    padding: 0.65rem !important;
    border: 1px solid #eceffa !important;
    border-radius: 11px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(47, 43, 61, 0.08) !important;
  }
}
