:root {
  --bg:      #f7f7ff;
  --primary: #1450de;
  --navy:    #102c6d;
  --muted:   #475569;
  --faint:   #94a3b8;
}

html { scroll-behavior: smooth; }

.hero {
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--navy);
  min-height: calc(100vh - 46px - 64px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(20, 80, 222, 0.09), transparent 70%);
  top: -120px; right: -60px;
  animation: orb-drift 9s ease-in-out infinite;
}

.orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(16, 44, 109, 0.07), transparent 70%);
  bottom: -80px; left: -80px;
  animation: orb-drift 11s ease-in-out infinite reverse;
}

.orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(76, 126, 243, 0.06), transparent 70%);
  top: 55%; left: 38%;
  animation: orb-drift 14s ease-in-out infinite 3s;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 80, 222, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 80, 222, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particle-rise linear infinite;
  opacity: 0;
}

.hero-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1290px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 80, 222, 0.07);
  border: 1px solid rgba(20, 80, 222, 0.22);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.6rem;
  animation: fade-up 0.5s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(20, 80, 222, 0.6);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  animation: fade-up 0.5s ease 0.08s both;
}

.t-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease-in-out infinite;
}

.t-accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 490px;
  margin-bottom: 2.2rem;
  animation: fade-up 0.5s ease 0.16s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fade-up 0.5s ease 0.24s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 4px 24px rgba(20, 80, 222, 0.28);
}
.btn-primary svg {
transition: .3s all linear;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary span, .btn-primary svg {
  transition: transform 0.3s, opacity 0.3s;
}

.btn-primary:hover span { transform: translateX(4px); color: #fff; }
.btn-primary:hover svg { opacity: 0; }

.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--primary); }
.btn-ghost:hover .play-ring {
  border-color: var(--primary);
  background: rgba(20, 80, 222, 0.08);
}

.play-ring {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 80, 222, 0.25);
  background: rgba(20, 80, 222, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.hero-visual {
  height: 560px;
  position: relative;
  animation: fade-in 0.8s ease 0.2s both;
}

.scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--faint);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  animation: fade-in 1s ease 1.2s both;
}

.scroll-bar {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-drop 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.72); }
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(25px, -18px); }
  66%       { transform: translate(-18px, 25px); }
}

@keyframes particle-rise {
  0%   { transform: translateY(100vh); opacity: 0; }
  8%   { opacity: 0.55; }
  92%  { opacity: 0.35; }
  100% { transform: translateY(-80px); opacity: 0; }
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.canvas-viewport-right {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}

#blueprint-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

#pipeline-html-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 500;
}

.pipeline-card {
  position: absolute;
  background: white;
  border: 1.5px solid rgba(20, 80, 222, 0.15);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(16, 44, 109, 0.04);
  width: clamp(210px, 15vw, 260px);
  opacity: 0;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(0.7);
  will-change: transform, opacity;
  transition: .1s all linear;
  cursor: pointer;
}

.pipeline-card:hover {
  border-color: var(--primary) !important;
  background-color: #ffffff;
  box-shadow: 0 20px 45px rgba(20, 80, 222, 0.15) !important;
}

#pipeline-html-overlay.has-hovered-item .pipeline-card:not(.is-hovered) {
  opacity: 0.45 !important;
  filter: blur(1px);
}

.card-body {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: var(--navy);
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .hero-wrap {
    padding: 3rem 0 2.5rem;
  }
  .hero-content {
    padding-left: 15px;
    padding-right: 1.5rem;
  }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .nav-links { display: none; }
  .hero-visual {
    max-width: 520px;
    height: 460px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-sub   { font-size: 0.95rem; }
  .hero-visual { height: 430px; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 1.85rem; }
  .hero-badge  { font-size: 11px; }
  .hero-visual { height: 400px; padding-left: 0.4rem; padding-right: 0.4rem; }
}

@media (max-width: 1300px) {
  .pipeline-card { width: 170px !important; padding: 12px 14px; }
}
@media (max-width: 1024px) {
  .pipeline-card { width: 155px !important; padding: 10px 12px; }
}
@media (max-width: 991px) {
  .pipeline-card { width: 140px !important; padding: 10px 12px; font-size: 13px; }
  .card-body { font-size: 13px; }
}
@media (max-width: 767px) {
  .pipeline-card { width: 130px !important; padding: 8px 10px; }
  .card-body { font-size: 12px; }
}
@media (max-width: 575px) {
  .pipeline-card { width: 110px !important; padding: 7px 8px; }
  .pipeline-card .card-body { font-size: 10px; line-height: 1.3; margin-bottom: 4px !important; }
  .pipeline-card img { width: 32px !important; height: 32px !important; }
  #testimonial_data .testimonial-card::after {
    right: 10px !important;
  }
}
@media (max-width: 480px) {
  .pipeline-card { width: 120px !important; padding: 8px 10px; }
  .card-body { font-size: 11px; }
}

.sc-stats{
  padding-bottom: 80px;
}
.sc-stats-inner {
  max-width: 1300px;
  padding-inline: 15px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sc-stat-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(20, 80, 222, 0.1);
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}
.sc-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  border-radius: 16px 16px 0 0;
}
.sc-stat-card:nth-child(1) { transition-delay: 0s; }
.sc-stat-card:nth-child(2) { transition-delay: 0.08s; }
.sc-stat-card:nth-child(3) { transition-delay: 0.16s; }
.sc-stat-card:nth-child(4) { transition-delay: 0.24s; }
.sc-stat-card--in { opacity: 1; transform: translateY(0); }
.sc-stat-card:hover {
  box-shadow: 0 12px 36px rgba(20, 80, 222, 0.1);
  border-color: rgba(20, 80, 222, 0.2);
}
.sc-stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(20, 80, 222, 0.07);
  border: 1px solid rgba(20, 80, 222, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.sc-stat-value-row {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 8px;
}
.sc-stat-num {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.sc-stat-plus {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 0.05em;
}
.sc-stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
}
.sc-stat-line {
  height: 3px;
  background: rgba(20, 80, 222, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.sc-stat-line-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.sc-stat-card--in .sc-stat-line-fill { width: 100%; }
@media (max-width: 991px) {
  .sc-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sc-stats-inner { grid-template-columns: 1fr; gap: 14px; }
  .sc-stat-card { padding: 24px 18px 18px; }
}

.wd-split-section {
  overflow: hidden;
  padding-top: 60px;
}
.wd-wrap {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 0 !important;
  min-height: 620px;
  max-width: 100% !important;
}

.wd-left-panel {
  background: #f7f7ff;
  position: relative;
  padding: 30px;
}

.wd-left-inner {
  position: relative;
  z-index: 2;
}
.wd-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 80, 222, 0.07);
  border: 1px solid rgba(20, 80, 222, 0.18);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1450de;
  margin-bottom: 1.4rem;
  width: fit-content;
}
.wd-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #102c6d;
  margin-bottom: 1rem;
}
.wd-title-gradient {
  background: linear-gradient(135deg, #1450de 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wd-desc {
  color: #64748b;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}
.wd-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.2rem;
}
.wd-feat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 20px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.wd-feat:hover {
  border-color: rgba(20,80,222,0.3);
  box-shadow: 0 4px 16px rgba(20,80,222,0.08);
}
.wd-feat-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: rgba(20,80,222,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wd-feat-title {
  color: #0f172a;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}
.wd-feat-sub {
  color: #94a3b8;
  font-size: 12px;
  margin-top: 3px;
}

/* CTA button */
.wd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1450de;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(20,80,222,0.32);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  width: fit-content;
}
.wd-cta-btn:hover {
  background: #1040c0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20,80,222,0.40);
  color: #fff;
  text-decoration: none;
}

.wd-right-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wd-right-inner {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.wd-browser-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(16,44,109,0.10);
}
.wd-browser-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.wd-trafficdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.wd-browser-url {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11.5px;
  color: #64748b;
  margin: 0 10px;
  text-align: center;
}
.wd-browser-menu {
  display: flex;
  gap: 3px;
  align-items: center;
}
.wd-browser-menu span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #94a3b8;
  display: inline-block;
}
.wd-browser-body {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #f1f5f9;
}
.wd-chart-area {
  flex: 1.1;
  padding: 18px 16px 14px;
  border-right: 1px solid #f1f5f9;
}
.wd-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wd-chart-title {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}
.wd-live-dot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
}
.wd-live-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: wd-pulse-live 1.6s ease-in-out infinite;
}
@keyframes wd-pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.wd-chart-wrap {
  position: relative;
  height: 100px;
}
.wd-score-bubble {
  position: absolute;
  top: 0; right: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.wd-chart-svg {
  width: 100%;
  height: 100%;
}
.wd-vitals-panel {
  flex: 1;
  padding: 18px 16px 14px;
}
.wd-vitals-heading {
  font-size: 11.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}
.wd-vrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.wd-vlabel {
  font-size: 11px;
  color: #64748b;
  min-width: 80px;
}
.wd-vtrack {
  flex: 1;
  height: 5px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}
.wd-vbar {
  height: 100%;
  border-radius: 10px;
}
.wd-vscore {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  min-width: 24px;
  text-align: right;
}
.wd-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.wd-stat-box {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid #f1f5f9;
  transition: background 0.2s;
}
.wd-stat-box:last-child { border-right: none; }
.wd-stat-box:hover { background: #f8fafc; }
.wd-stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.wd-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 4px;
}
.wd-stat-lbl {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}
.wd-ssl-wrap {
  display: flex;
  justify-content: flex-start;
}
.wd-ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 6px 22px rgba(16,44,109,0.09);
  animation: wd-float 3.2s ease-in-out infinite;
}
.wd-ssl-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: rgba(34,197,94,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-ssl-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}
.wd-ssl-sub {
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 2px;
}
.ai-left-panel{
  background: #f7f7ff;
  padding: 30px;
}
.ai-right-panel{
  padding-bottom: 36px;
}
.ai-top-badge-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.ai-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(16,44,109,0.08);
  animation: wd-float 3.2s ease-in-out infinite;
}
.ai-top-badge-icon {
  width: 34px; height: 34px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-top-badge-title {
  font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.2;
}
.ai-top-badge-sub {
  font-size: 10.5px; color: #94a3b8; margin-top: 1px;
}

.ai-dashboard-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(16,44,109,0.10);
}

.ai-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.ai-header-dots {
  display: flex; gap: 6px; flex-shrink: 0;
}
.ai-header-dots span {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.ai-card-title {
  font-size: 12px; font-weight: 600; color: #0f172a;
}
.ai-metrics-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #f1f5f9;
}
.ai-metric-card {
  flex: 1;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid #f1f5f9;
}
.ai-metric-card:last-child { border-right: none; }
.ai-metric-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em;
  color: #94a3b8; margin-bottom: 10px;
}
.ai-ring-wrap {
  position: relative;
  width: 62px; height: 62px;
  margin: 0 auto 8px;
}
.ai-ring-svg {
  width: 100%; height: 100%;
}
.ai-ring-inner {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ai-ring-val {
  font-size: 14px; font-weight: 800; color: #0f172a;
}
.ai-metric-sub {
  font-size: 10px; color: #94a3b8;
}
.ai-bars-section {
  padding: 16px 18px 12px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ai-bar-row {
  display: flex; align-items: center; gap: 10px;
}
.ai-bar-label {
  font-size: 11px; color: #64748b; min-width: 160px;
}
.ai-bar-track {
  flex: 1; height: 5px;
  background: #f1f5f9;
  border-radius: 10px; overflow: hidden;
}
.ai-bar-fill {
  height: 100%; border-radius: 10px;
}
.ai-bar-pct {
  font-size: 11px; font-weight: 700; min-width: 30px; text-align: right;
}
.ai-tags-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
}
.ai-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 4px 12px;
}
.ai-tag::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--dot);
  flex-shrink: 0;
}
.ai-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 14px 18px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: #16a34a;
  font-size: 12px; font-weight: 600;
  border-radius: 50px;
  padding: 7px 16px;
}
.ai-live-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: wd-pulse-live 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.ai-bottom-badge-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}
.ai-bottom-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(16,44,109,0.08);
  animation: wd-float 3.8s ease-in-out infinite;
}
.ai-bottom-badge-icon {
  width: 34px; height: 34px;
  background: #f5f3ff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-bottom-badge-title {
  font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.2;
}
.ai-bottom-badge-sub {
  font-size: 10.5px; color: #94a3b8; margin-top: 1px;
}

.ad-right-panel{
  padding: 30px;
  background: #f7f7ff;
}
.ad-left-panel{
  padding-top: 20px;
  padding-right: 30px;
}
.adm-wrapper {
  width: 100%;
}
.adm-top-row,
.adm-bottom-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.adm-top-row { justify-content: flex-end; margin-bottom: 10px; }
.adm-bottom-row { justify-content: flex-start; margin-top: 14px; }
.adm-spacer { flex: 1; }

.adm-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 14px;
  padding: 8px 14px 8px 8px;
  box-shadow: 0 4px 18px rgba(20,40,100,0.12);
  animation: wd-float 3.2s ease-in-out infinite;
}
.adm-badge-icon {
  width: 30px;
  height: 30px;
  background: #ededff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adm-badge-title {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}
.adm-badge-sub {
  font-size: 9.5px;
  color: #64748b;
  line-height: 1.25;
}
.adm-phones-row {
  display: flex;
  justify-content: center;
}
.adm-phone {
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(20,40,100,0.14);
  overflow: hidden;
  flex-shrink: 0;
}
.adm-phone--left {
  width: 175px;
  margin-top: 40px;
  margin-right: 28px;
  z-index: 1;
  box-shadow: 0 10px 36px rgba(20,40,100,0.11);
}
.adm-phone--right {
  width: 205px;
  z-index: 2;
  padding-inline: 12px;
  padding-bottom: 35px;
  padding-top: 14px;
  box-shadow: 0 18px 56px rgba(20,40,120,0.18);
}
.adm-phone-notch {
  width: 50px;
  height: 10px;
  background: #ddddea;
  border-radius: 10px;
  margin: 0 auto 0;
  margin-bottom: 10px;
}
.adm-phone-screen {
  padding: 12px 14px 16px;
}
.adm-metric-label {
  font-size: 7.5px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.adm-metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 10px;
}
.adm-metric-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.adm-metric-box {
  flex: 1;
  background: #f8fafc;
  border-radius: 8px;
  padding: 6px 8px;
}
.adm-metric-box--green .adm-metric-box-val { color: #22c55e; }
.adm-metric-box-label {
  font-size: 7.5px;
  color: #94a3b8;
  margin-bottom: 1px;
}
.adm-metric-box-val {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.adm-chart-label {
  font-size: 7.5px;
  color: #94a3b8;
  margin-bottom: 5px;
}
.adm-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 46px;
}
.adm-bar {
  flex: 1;
  height: var(--h);
  background: #e2e8f0;
  border-radius: 3px 3px 0 0;
}
.adm-bar--hi { background: #1450de; }
.adm-dash-header {
  background: #1450de;
  padding: 12px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.adm-dash-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.adm-dash-toggle {
  width: 30px;
  height: 17px;
  background: rgba(255,255,255,0.28);
  border-radius: 9px;
  display: flex;
  align-items: center;
  padding: 2px;
  justify-content: flex-end;
}
.adm-dash-knob {
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
}

.adm-revenue-label {
  font-size: 7.5px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1px;
}
.adm-revenue-value {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}
.adm-revenue-growth {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: #22c55e;
  font-weight: 600;
  margin: 3px 0 10px;
}
.adm-mini-stats {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.adm-mini-label {
  font-size: 7.5px;
  color: #94a3b8;
  margin-bottom: 1px;
}
.adm-mini-val {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.adm-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 38px;
  margin-bottom: 12px;
}
.adm-dbar {
  flex: 1;
  height: var(--h);
  background: #e2e8f0;
  border-radius: 3px 3px 0 0;
}
.adm-dbar--hi { background: #1450de; }
.adm-view-btn {
  display: block;
  background: #1450de;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 9px 0;
  font-size: 10.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .01em;
}
.adm-stats-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.adm-stat-card {
  flex: 1;
  background: #fff;
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(20,40,100,0.07);
}
.adm-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #1450de;
  line-height: 1;
  margin-bottom: 4px;
}
.adm-stat-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.3;
}
.adm-star {
  color: #f59e0b;
}

@keyframes wd-float {
  0%, 100% { transform: translateY(0);}
  50%       { transform: translateY(-7px);}
}

.p-iniline-10 { padding-inline: 10px !important; }

@media (max-width: 991px) {
  .wd-wrap { flex-direction: column !important; min-height: auto !important; }
  .wd-left-panel::before, .wd-right-panel::before { display: none; }
  .wd-left-inner { padding: 20px 0; max-width: 100%; }
  .wd-right-inner { padding: 20px 0; max-width: 100%; }
  .ad-left-panel {padding-right: 0;}
  .app-col-mockup { order: 2; }
  .app-col-text   { order: 1; }
}
@media (max-width: 575px) {
  .wd-left-inner { padding: 44px 0; }
  .wd-right-inner { padding: 36px 0; }
  .wd-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .wd-browser-content { flex-direction: column; gap: 12px; }
  .wd-code-preview { width: 100%; }
  .wd-stats { gap: 8px; }
  .wd-stat { padding: 14px 8px; }
  .wd-stat-num { font-size: 1.3rem; }
}
@media (max-width: 430px) {.adm-phone--left { display: none; }}
.my-50 { margin-block: 50px; }
.pl-36 { padding-left: 36px; }

.home-one-company-section {
  background-color: #EEF0FD !important;
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.home-one-company-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.home-one-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a2e;
  box-shadow: 0 2px 12px rgba(60, 47, 192, 0.10);
}

.home-one-company-badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(20%) sepia(80%) saturate(600%) hue-rotate(220deg);
}

.home-one-company-heading {
  color: #1a1a2e !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.home-one-company-heading-accent {
  color: #3c2fc0;
}

.home-one-company-body-text {
  color: #555 !important;
  text-align: center;
}

.home-one-company-row {
  margin-top: 50px;
  align-items: stretch;
}

.home-one-company-col {
  width: 33.3333%;
}
.home-one-company-col:nth-child(2) { padding-inline: 12px; }
.home-one-company-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(60, 47, 192, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.home-one-company-card-img-wrap {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: visible;
}

.home-one-company-card-img-wrap .home-one-company-image {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.home-one-company-card-icon-circle {
  position: absolute;
  top: -55px;
  right: 40%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(60, 47, 192, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.home-one-company-card-body {
  padding: 20px;
  position: absolute;
  width: 90%;
  border-radius: 10px;
  padding: 20px;
  background: white;
  bottom: -118px;
  right: 19px;
}

.home-one-company-card-title-wrap {
  margin-bottom: 16px;
}

.home-one-company-card-title {
  color: #1a1a2e !important;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-one-company-card-underline {
  height: 3px;
  width: 36px;
  border-radius: 2px;
}

.home-one-company-card-underline--blue   { background: #3c2fc0; }
.home-one-company-card-underline--purple { background: #7c3aed; }
.home-one-company-card-underline--orange { background: #f59e0b; }

.home-one-company-decription {
  color: #666 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 100% !important;
}

/* Stats Row — 4 columns above 992px */
.home-one-company-stats-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 170px;
}

.home-one-company-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  flex: 1 1 25%;
  min-width: 0;
  padding: 16px 20px;
}
.home-one-company-stat-item + .home-one-company-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(60, 47, 192, 0.18);
}

.home-one-company-stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-one-company-stat-icon-wrap--blue   { background: #e8e6ff; }
.home-one-company-stat-icon-wrap--purple { background: #ede9fe; }
.home-one-company-stat-icon-wrap--orange { background: #fef3c7; }
.home-one-company-stat-icon-wrap--green  { background: #d1fae5; }

.home-one-company-stat-icon-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.home-one-company-stat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
}

.home-one-company-stat-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.4;
}

.industry-card-inner{
  max-width: 50%;
  height: 100%;
}

@media (max-width: 991px) {
  .home-one-company-col {
    width: 50%;
    margin-bottom: 180px !important;
  }
  .home-one-company-col:nth-child(2) { padding-left: 12px; padding-right: 0; }
  .home-one-company-stats-row {
    flex-wrap: wrap;
    margin-top: 0 !important;
  }
  .home-one-company-stat-item {
    flex: 1 1 50%;
    padding: 16px 20px;
  }
  .home-one-company-stat-item:nth-child(odd)::before {
    display: none;
  }
}
@media (max-width: 574px) {
  .home-one-company-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .home-one-company-col {
    width: 100% !important;
    margin-bottom: 190px !important;
    padding: 0 !important;
  }
  .home-one-company-col:last-child {
    margin-bottom: 40px !important;
  }
  .home-one-company-card-body {
    padding: 16px;
  }
  .home-one-company-stat-item {
    flex: 1 1 100%;
    padding-inline: 0;
  }
  .home-one-company-stat-item::before {
    display: none !important;
  }
  .home-one-company-stats-row {
    flex-wrap: wrap;
    margin-top: 100px !important;
  }
}

.home-one-business-section {
  padding: 90px 15px !important;
  overflow: visible !important;
}

.home-one-business-container {
  display: flex !important;
  align-items: center !important;
  gap: 60px !important;
}
.home-one-business-section .home-one-business-content-wrapper {
  flex: 1;
  min-width: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  width: auto !important;
}
.hob-badge-wrap {
  margin-bottom: 20px;
}
.hob-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1a1a2e;
  box-shadow: 0 2px 10px rgba(60, 47, 192, 0.10);
}
.hob-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c2fc0;
  flex-shrink: 0;
}
.home-one-business-heading {
  color: #1a1a2e !important;
  font-size: clamp(1.7rem, 3vw, 2.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  max-width: 520px !important;
  padding-bottom: 0 !important;
  margin-bottom: 12px !important;
}
.hob-heading-accent {
  color: #3c2fc0;
}
.hob-heading-underline {
  width: 48px;
  height: 4px;
  background: #3c2fc0;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hob-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.hob-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hob-bullet-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8e6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hob-bullet-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.hob-bullet-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.hob-stats-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #dde0ea;
  flex-wrap: wrap;
}
.hob-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 130px;
}
.hob-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e8e6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hob-stat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.hob-stat-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}
.hob-stat-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.4;
}
.hob-image-wrapper {
  flex: none !important;
  width: 50% !important;
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hob-image-scene {
  position: relative;
  aspect-ratio: 520 / 480;
  width: 100%;

}
.hob-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hob-main-img-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84%;
  height: 60%;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 16px 48px rgba(16, 44, 109, 0.18);
}
.hob-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hob-float-circle {
  position: absolute;
  width: 10%;
  height: 10%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(60, 47, 192, 0.18);
  border: 1.5px solid rgba(60, 47, 192, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.hob-float-circle img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}


.hob-float-circle--top {
  top: 3%;
  left: 70%;
  transform: translateX(-50%);
  animation: hob-bob-y 3.2s ease-in-out infinite;
}
.hob-float-circle--right {
  top: 43%;
  right: 1%;
  transform: translateY(-50%);
  animation: hob-bob-x 3.8s ease-in-out infinite 0.5s;
}
.hob-float-circle--bottom {
  bottom: 1%;
  left: 55%;
  transform: translateX(-50%);
  animation: hob-bob-y 3.5s ease-in-out infinite 1s;
}

.hob-float-card {
  position: absolute;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(60, 47, 192, 0.13);
  padding: 10px 12px 9px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 5;
  width: 36%;
}

.hob-float-card--top-left {
  top: 15%;
  left: -10%;
  animation: hob-card-float 3.6s ease-in-out infinite;
}
.hob-float-card--bottom-left {
  bottom: 14%;
  left: -12%;
  animation: hob-card-float 4s ease-in-out infinite 0.8s;
}
.hob-float-card--bottom-right {
  bottom: 14%;
  right: 1%;
  animation: hob-card-float 3.8s ease-in-out infinite 0.4s;
}

.hob-float-card-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: #eeeeff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hob-float-card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.hob-float-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
  line-height: 1.3;
}
.hob-float-card-desc {
  font-size: 0.68rem;
  color: #777;
  line-height: 1.4;
}
.hob-float-card-line {
  height: 3px;
  width: 24px;
  background: #3c2fc0;
  border-radius: 2px;
  margin-top: 6px;
}

.w-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.label-icon{
  width: 30px;
  height: 30px;
  background-color: #EEF0FD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes hob-bob-y {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-7px); }
}
@keyframes hob-bob-x {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-50%) translateX(7px); }
}
@keyframes hob-card-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@media (max-width: 991px) {
  .home-one-business-container {
    flex-direction: column !important;
    gap: 40px !important;
  }
  .hob-image-wrapper {
    width: 100% !important;
  }
  .hob-float-card--top-left{
    left: 0;
  }
    .hob-float-card--bottom-left {left: 0;}
}

@media (max-width: 575px) {
  .hob-stats-row { gap: 16px; }
  .hob-float-card { padding: 8px 9px 7px; gap: 7px; }
  .hob-float-card-icon { width: 28px; height: 28px; min-width: 28px; }
  .hob-float-card-icon img { width: 15px; height: 15px; }
  .hob-float-card-title { font-size: 0.62rem; }
  .hob-float-card-desc  { font-size: 0.57rem; }
  .hob-float-card-line  { width: 18px; margin-top: 4px; }
}

.industries-section {
  padding: 90px 15px 60px;
  background-color: #f4f5ff;
}

.industries-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #102c6d;
  line-height: 1.2;
  padding-bottom: 18px;
  max-width: 680px;
  text-align: center;
}

.industries-grid {
  margin: 0 -12px;
}

.industries-col {
  padding: 0 12px 24px;
}

.industries-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(16, 44, 109, 0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.industries-card:hover {
  box-shadow: 0 8px 32px rgba(20, 80, 222, 0.14);
  transform: translateY(-4px);
}

.industries-card > div:first-child {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 22px 0 22px 22px;
}

.industries-card > div:last-child {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.industries-card-top {
  margin-bottom: 16px;
}

.industries-card-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid rgba(20, 80, 222, 0.14);
  box-shadow: 0 4px 16px rgba(20, 80, 222, 0.18);
  background: rgba(20, 80, 222, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industries-card-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.industries-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-right: 12px;
}

.industries-card-title {
  color: #102c6d;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  padding: 0;
  line-height: 20px;
}

.industries-card-desc {
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.industries-card-link {
  color: #1450de;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.industries-card:hover .industries-card-link {
  gap: 8px;
}

@media (max-width: 991px) {
  .industries-grid .w-col { width: 50%; }
}

@media (max-width: 767px) {
  .industries-grid .w-col { width: 100%; }
  .industries-section { padding: 60px 15px 40px; }
}
.wwa-identity-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}

.wwa-eyebrow-line {
  flex: 1;
  max-width: 120px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(20, 80, 222, 0.25));
}

.wwa-eyebrow-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(20, 80, 222, 0.25));
}

.wwa-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(20, 80, 222, 0.06);
  border: 1px solid rgba(20, 80, 222, 0.18);
  border-radius: 50px;
  padding: 5px 18px;
}

.wwa-identity-headline {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.wwa-id-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.wwa-id-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wwa-id-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding-inline: 10px;
}

#testimonial_data .testimonial-section {
  overflow: hidden;
}

#testimonial_data .slider-container {
  overflow: hidden;
  width: 100%;
}

#testimonial_data .slider-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease;
  will-change: transform;
}

#testimonial_data .slider-track .relative {
  flex: 0 0 50%;
  min-width: 0;
  position: relative;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  #testimonial_data .slider-track .relative {
    flex: 0 0 100%;
    padding: 0;
  }
  #testimonial_data .testimonial-card {
    padding: 28px 24px 22px !important;
    min-height: unset;
  }
  #testimonial_data .review {
    font-size: 13.5px !important;
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  #testimonial_data .testimonial-card {
    padding: 24px 18px 18px !important;
    border-radius: 14px;
  }
  #testimonial_data .review {
    font-size: 13px !important;
    padding-top: 16px;
  }
  #testimonial_data .client-img {
    width: 54px !important;
    height: 54px !important;
  }
  #testimonial_data .testimonial_name_role .name {
    font-size: 13.5px !important;
  }
  .testimonial-obj {
    width: 70px;
    height: 90px;
  }
  #testimonial_data .testimonial-card::before {
    font-size: 56px;
  }
  #testimonial_data .testimonial-card::after {
    font-size: 90px;
    right: 30px;
  }
}

#testimonial_data .testimonial-card {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 36px 28px !important;
  box-shadow: 0 8px 32px rgba(60, 47, 192, 0.07);
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  column-gap: 0 !important;
  min-height: 260px;
  overflow: hidden;
  height: 100%;
}

#testimonial_data .testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 72px;
  line-height: 1;
  color: rgba(20, 80, 222, 0.12);
  font-family: Georgia, serif;
  font-weight: 700;
}
#testimonial_data .testimonial-card::after {
  content: '\201D';
  position: absolute;
  bottom: -10px;
  right: 60px;
  font-size: 120px;
  line-height: 1;
  color: rgba(20, 80, 222, 0.12);
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial-obj {
  width: 100px;
  height: 120px;
  border-radius: 20px;
  background-color: #1450de;
  position: absolute;
  left: 10px;
  top: 7px;
}

#testimonial_data .testimonial_desc {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  gap: 20px;
}

#testimonial_data .review {
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  color: #3a3a4a !important;
  margin: 0 !important;
  padding-top: 28px;
  flex-grow: 1;
}

#testimonial_data .testimonial_review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
}

#testimonial_data .testimonial_name {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

#testimonial_data .client-img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgba(20, 80, 222, 0.15) !important;
  box-shadow: 0 2px 8px rgba(20, 80, 222, 0.12) !important;
  margin-bottom: 0 !important;
}

#testimonial_data .testimonial_name_role .name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #102c6d !important;
  margin: 0 0 2px !important;
}

#testimonial_data .testimonial_name_role .role {
  font-size: 12.5px !important;
  color: #7b8ca8 !important;
  margin: 0 !important;
}

#testimonial_data .stars {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: #f59e0b !important;
  font-size: 14px !important;
  margin-bottom: 0 !important;
}

#testimonial_data .stars img {
  width: 80px;
  height: auto;
}

#testimonial_data .stars span {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #102c6d !important;
}
.testimonial-section-row { display: flex; justify-content: space-between; width: 100%; }
.wwa-identity-headline-no-mb { margin-bottom: 0px; }
.wwa-id-h2-start { text-align: start; }
.wwa-id-sub-start { width: 70%; text-align: start; padding-inline: 0px !important; }

@media screen and (max-width: 595px) {
  .wwa-id-h2-start { text-align: center !important; }
  .wwa-id-sub-start { text-align: center !important; width: 100% !important; }
  .testimonial-section-row { flex-wrap: wrap; justify-content: center !important; }
  .testimonial-heading-box-gap { padding-right: 0px !important; }
}
.home-one-explore-section.pt-0{
  padding-top: 0px !important;
}