*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #fafaf7;
  --white: #ffffff;
  --ink: #111110;
  --ink-2: #2c2c2a;
  --ink-3: #4a4a47;
  --ink-4: #6b6b68;
  --ink-5: #9a9a96;
  --border: rgba(17, 17, 16, 0.08);
  --border-md: rgba(17, 17, 16, 0.14);
  --accent: #1a56e8;
  --accent-light: #ebf0fd;
  --accent-mid: #3b6fef;
  --green: #0e8f5a;
  --green-light: #e6f5ee;
  --amber: #c4760a;
  --amber-light: #fdf3e1;
  --r: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  --font: "DM Sans", system-ui, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 131, 246, 0.096) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 131, 246, 0.096) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 131, 246, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 131, 246, 0.22) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-3);
  transition:
    background 0.18s,
    color 0.18s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--accent-light);
  color: var(--accent);
}
.nav-cta {
  padding: 0.5rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    background 0.18s,
    transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-mid);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  background: linear-gradient(
    155deg,
    #f8f9ff 0%,
    var(--white) 45%,
    #f7fbf9 100%
  );
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 86, 232, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 143, 90, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--green-light);
  border: 1px solid rgba(14, 143, 90, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 1.4rem;
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.3rem;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.6rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(26, 86, 232, 0.3);
}
.btn-primary:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 232, 0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  background: rgb(241, 239, 239);
  color: var(--ink-2);
  border: 1.5px solid var(--border-md);
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-1px);
}
.hero-stats {
  display: flex;
  gap: 2rem;
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--ink-5);
  margin-top: 2px;
}
.hero-stat + .hero-stat {
  padding-left: 2rem;
  border-left: 1px solid var(--border-md);
}
.hero-visual {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.hero-card-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow:
    0 10px 30px rgba(26, 86, 232, 0.15),
    0 20px 60px rgba(26, 86, 232, 0.1),
    0 30px 80px rgba(26, 86, 232, 0.08);
  animation: float-card 6s ease-in-out infinite;
  transform: rotateY(-5deg) rotateX(5deg);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.hero-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 86, 232, 0.03) 0%,
    transparent 50%,
    rgba(26, 86, 232, 0.02) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-card-main:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
  box-shadow:
    0 15px 40px rgba(26, 86, 232, 0.2),
    0 25px 70px rgba(26, 86, 232, 0.15),
    0 35px 90px rgba(26, 86, 232, 0.1);
}
.hero-card-main > * {
  position: relative;
  z-index: 1;
}
@keyframes float-card {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(3deg) translateY(-15px);
  }
}
.hcm-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.hcm-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    rgba(26, 86, 232, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 86, 232, 0.15);
}
.hcm-avatar svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
}
.hcm-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.hcm-sub {
  font-size: 0.78rem;
  color: var(--ink-5);
}
.hcm-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
  margin-bottom: 1rem;
}
.hcm-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(
    180deg,
    var(--accent-light) 0%,
    rgba(26, 86, 232, 0.05) 100%
  );
  transition:
    height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s ease;
  transform-origin: bottom;
  position: relative;
  overflow: hidden;
}
.hcm-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.hcm-bar:hover {
  transform: scaleY(1.05);
  filter: brightness(1.1);
}
.hcm-bar.active {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-mid) 100%);
  box-shadow: 0 0 20px rgba(26, 86, 232, 0.4);
}
.hcm-bar.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: glow-bar 1.5s infinite;
}
@keyframes glow-bar {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.hcm-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.hcm-metric-val {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  text-shadow: 0 2px 4px rgba(14, 143, 90, 0.2);
}
.hcm-metric-label {
  font-size: 0.78rem;
  color: var(--ink-5);
}
.hcm-metric-change {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 500;
  background: linear-gradient(
    135deg,
    var(--green-light) 0%,
    rgba(14, 143, 90, 0.1) 100%
  );
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(14, 143, 90, 0.15);
}
.hero-float-1 {
  position: absolute;
  top: -20px;
  right: -30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  box-shadow:
    0 8px 24px rgba(26, 86, 232, 0.12),
    0 4px 12px rgba(26, 86, 232, 0.08);
  font-size: 0.82rem;
  animation: float-card2 5s ease-in-out infinite;
  transform: rotate(3deg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-float-1:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow:
    0 12px 32px rgba(26, 86, 232, 0.18),
    0 6px 16px rgba(26, 86, 232, 0.12);
}
.hero-float-2 {
  position: absolute;
  bottom: -10px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  box-shadow:
    0 8px 24px rgba(26, 86, 232, 0.12),
    0 4px 12px rgba(26, 86, 232, 0.08);
  font-size: 0.82rem;
  animation: float-card2 7s ease-in-out infinite 0.5s;
  transform: rotate(-3deg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-float-2:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow:
    0 12px 32px rgba(26, 86, 232, 0.18),
    0 6px 16px rgba(26, 86, 232, 0.12);
}
@keyframes float-card2 {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-8px);
  }
}
.float-label {
  font-size: 0.7rem;
  color: var(--ink-5);
  margin-bottom: 2px;
}
.float-val {
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(14, 143, 90, 0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(14, 143, 90, 0.6);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(14, 143, 90, 0.8);
  }
}
section {
  padding: 96px 2rem;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 400;
}
.section-heading em {
  font-style: italic;
  color: var(--accent);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-4);
  max-width: 560px;
  margin-top: 0.8rem;
  line-height: 1.7;
}
.trust-bar {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  overflow: hidden;
}
.trust-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-4);
  border-right: 1px solid var(--border);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 86, 232, 0.12);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  box-shadow:
    0 2px 4px rgba(26, 43, 87, 0.04),
    0 4px 12px rgba(26, 86, 232, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.service-card {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 1;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(26, 86, 232, 0.07) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover {
  border-color: rgba(26, 86, 232, 0.28);
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 0 0 1px rgba(26, 86, 232, 0.1),
    0 8px 24px rgba(26, 86, 232, 0.12),
    0 20px 48px rgba(26, 86, 232, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover::after {
  opacity: 1;
}
.service-card > * {
  position: relative;
  z-index: 2;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    rgba(26, 86, 232, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow:
    0 2px 8px rgba(26, 86, 232, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 6px 16px rgba(26, 86, 232, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--ink-4);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--ink-3);
}
.service-feature::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.process-bg {
  background: var(--cream);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-md),
    var(--accent),
    var(--border-md),
    transparent
  );
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-3);
  margin: 0 auto 1.2rem;
  transition: all 0.3s;
}
.process-step:hover .process-num {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.process-step h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--ink-4);
  line-height: 1.6;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 1.8;
}
.why-point h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.why-point p {
  font-size: 0.88rem;
  color: var(--ink-4);
  line-height: 1.65;
}
.why-visual {
  position: relative;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-card-header {
  background: var(--cream);
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.why-dots {
  display: flex;
  gap: 5px;
}
.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.why-card-body {
  padding: 1.6rem;
}
.why-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.why-row:last-child {
  border: none;
}
.why-row-label {
  font-size: 0.88rem;
  color: var(--ink-3);
}
.why-row-val {
  font-size: 0.88rem;
  font-weight: 600;
}
.badge-green {
  background: var(--green-light);
  color: var(--green);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}
.badge-blue {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}
.badge-amber {
  background: var(--amber-light);
  color: var(--amber);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}
.testimonials-bg {
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.t-star {
  color: #f4a416;
  font-size: 0.9rem;
}
.t-text {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.t-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.t-role {
  font-size: 0.78rem;
  color: var(--ink-3);
}
.faq-bg {
  background: var(--white);
}
.faq-list {
  max-width: 720px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--accent);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  padding-right: 1rem;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.3s;
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink-3);
  fill: none;
  transition: stroke 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg {
  stroke: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 1.3rem 1.2rem;
  font-size: 0.9rem;
  color: var(--ink-4);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.cta-section {
  background: var(--ink);
  padding: 80px 2rem;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
}
.cta-inner h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-white:hover {
  background: #f0f0ee;
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
.footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 2rem 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand-name img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  max-width: 260px;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: fill 0.2s ease;
}
.footer-social a[aria-label*="LinkedIn"] {
  color: #0077b5;
  background: rgba(0, 119, 181, 0.12);
}
.footer-social a[aria-label*="LinkedIn"]:hover {
  color: #fff;
  background: #0077b5 !important;
}
.footer-social a[aria-label*="Instagram"] {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.12);
}
.footer-social a[aria-label*="Instagram"]:hover {
  color: #fff;
  background: #e1306c !important;
}
.footer-social a[aria-label*="Reddit"] {
  color: #ff4500;
  background: rgba(255, 69, 0, 0.12);
}
.footer-social a[aria-label*="Reddit"]:hover {
  color: #fff;
  background: #ff4500 !important;
}
.footer-social a[aria-label*="Facebook"] {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.12);
}
.footer-social a[aria-label*="Facebook"]:hover {
  color: #fff;
  background: #1877f2 !important;
}
.footer-social a[aria-label*="Twitter"],
.footer-social a[aria-label*="X"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.footer-social a[aria-label*="Twitter"]:hover,
.footer-social a[aria-label*="X"]:hover {
  color: #000;
  background: #ffffff !important;
}
.footer-social a[aria-label*="WhatsApp"] {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}
.footer-social a[aria-label*="WhatsApp"]:hover {
  color: #fff;
  background: #25d366 !important;
}
.footer-col h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.55);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.68);
}
.footer-contact-item a:hover {
  color: #fff;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
  cursor: pointer;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.wa-tooltip {
  position: absolute;
  right: 64px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1024px) {
  .hero-inner,
  .why-grid,
  .calculator-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    display: block;
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-card-main {
    transform: rotateY(0deg) rotateX(0deg);
    animation: float-card 6s ease-in-out infinite;
  }
  @keyframes float-card {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  .hero-float-1,
  .hero-float-2 {
    transform: rotate(0deg);
  }
  @keyframes float-card2 {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 64px 1.25rem;
  }
  .nav {
    padding: 0 1.25rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-mobile {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    z-index: 890;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.5rem;
  }
  .nav-mobile.open {
    display: flex;
  }
  .nav-mobile a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-2);
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile a:hover {
    background: var(--accent-light);
    color: var(--accent);
  }
  .nav-mobile .btn-primary {
    margin-top: 0.5rem;
    justify-content: center;
    color: #fff;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .calc-checkboxes {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 90px 1.25rem 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-stats {
    gap: 2rem;
    flex-wrap: nowrap;
  }
  .hero-stat-num {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 0.65rem;
    color: var(--ink-5);
    margin-top: 3px;
    white-space: nowrap;
  }
  .hero-stat + .hero-stat {
    padding-left: 0.5rem;
    border-left: 1px solid var(--border-md);
  }
  .hero-visual {
    display: block;
    margin-top: 2rem;
    max-width: 100%;
  }
  .hero-card-main {
    padding: 1.2rem;
    transform: none;
  }
  .hero-float-1,
  .hero-float-2 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    transform: none;
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .btn-primary {
    color: #fff;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-visual {
    margin-top: 1.5rem;
  }
  .hero-card-main {
    padding: 1rem;
  }
  .hcm-chart {
    height: 50px;
  }
  .hero-float-1,
  .hero-float-2 {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-stats {
    gap: 2rem;
  }
  .hero-stat-num {
    font-size: 1.5rem;
  }
  .hero-stat-label {
    font-size: 0.55rem;
  }
  .hero-stat + .hero-stat {
    padding-left: 0.4rem;
  }
}
.hero {
  position: relative;
  background: var(--cream) !important;
  color: var(--ink) !important;
  width: 100%;
  overflow: hidden;
  font-family: "DM Sans", system-ui, sans-serif !important;
  padding: 140px 0 80px 0 !important;
  display: flex !important;
  align-items: center !important;
  min-height: 100vh !important;
  box-sizing: border-box !important;
}
.hero::after {
  display: none !important;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 0%,
    black 75%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent,
    black 0%,
    black 75%,
    transparent
  );
}
.hero-inner {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  display: block !important;
  box-sizing: border-box !important;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .hero-left {
    grid-column: span 7;
  }
  .hero-right {
    grid-column: span 5;
    margin-top: 0px;
  }
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  box-sizing: border-box;
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.33%);
  }
}
.animate-fade-in {
  animation: fadeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.hero-new-badge {
  display: inline-flex;
}
.badge-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(17, 17, 16, 0.08);
  background: rgba(255, 255, 255, 0.65);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #898989;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.2s;
  cursor: default;
}
.badge-text:hover {
  background: rgba(255, 255, 255, 0.85);
}
.badge-star {
  width: 14px;
  height: 14px;
  color: #facc15;
  fill: #facc15;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.4rem) !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -1px !important;
  line-height: 1.05 !important;
  color: var(--ink) !important;
  margin: 0 !important;
  text-transform: none !important;
}
.hero-new-highlight {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-mid) 60%,
    var(--amber) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block;
  font-style: normal !important;
  font-weight: 600 !important;
}
.hero-new-desc {
  max-width: 520px;
  font-size: 18px !important;
  color: #898989 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-weight: 400 !important;
}
.hero-new-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 15;
}
@media (min-width: 640px) {
  .hero-new-actions {
    flex-direction: row;
  }
}
.btn-new-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  background: var(--ink);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white) !important;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    background-color 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(17, 17, 16, 0.15);
}
.btn-new-primary:hover {
  transform: scale(1.02);
  background: var(--ink-2);
  color: var(--white) !important;
}
.btn-new-primary:active {
  transform: scale(0.98);
}
.btn-new-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid var(--border-md);
  background: rgba(255, 255, 255, 0.7);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}
.btn-new-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 17, 16, 0.18);
}
.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.btn-new-primary:hover .group-hover-translate {
  transform: translateX(4px);
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}
.new-stats-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 16, 0.08);
  background: rgba(255, 255, 255, 0.7);
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 15px 35px -5px rgba(17, 17, 16, 0.06),
    0 5px 15px -3px rgba(17, 17, 16, 0.02);
  box-sizing: border-box;
}
.card-glow-bg {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -64px;
  margin-right: -64px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(26, 86, 232, 0.03);
  filter: blur(64px);
  pointer-events: none;
}
.card-content {
  position: relative;
  z-index: 10;
}
.card-header-new {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.icon-ring {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(26, 86, 232, 0.08);
  border: 1px solid rgba(26, 86, 232, 0.15);
}
.target-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.header-stat-val {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--ink);
}
.header-stat-label {
  font-size: 14px;
  color: #898989;
  margin-top: 4px;
}
.progress-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.progress-title {
  color: #898989;
}
.progress-val {
  color: var(--ink);
  font-weight: 600;
}
.progress-track-bg {
  height: 8px;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(17, 17, 16, 0.06);
}
.progress-fill-bar {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
}
.card-divider {
  height: 1px;
  width: 100%;
  background: rgba(17, 17, 16, 0.08);
  margin-bottom: 24px;
}
.mini-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  margin-bottom: 32px;
}
.mini-stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s;
  cursor: default;
}
.mini-stat-col:hover {
  transform: translateY(-4px);
}
.mini-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.mini-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #898989;
  font-weight: 600;
}
.mini-divider {
  width: 1px;
  height: 24px;
  background: rgba(17, 17, 16, 0.08);
  margin: 0 auto;
}
.tag-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-pill-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  border: 1px solid rgba(17, 17, 16, 0.06);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #898989;
}
.pulse-dot-container {
  position: relative;
  display: flex;
  height: 8px;
  width: 8px;
}
.pulse-ring {
  animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #4ade80;
  opacity: 0.75;
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.pulse-dot {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  background-color: #22c55e;
}
.tag-pill-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  border: 1px solid rgba(17, 17, 16, 0.06);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #898989;
}
.crown-icon {
  width: 12px;
  height: 12px;
  color: #eab308;
}
.new-marquee-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 16, 0.08);
  background: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-sizing: border-box;
  box-shadow: 0 15px 35px -5px rgba(17, 17, 16, 0.04);
}
.marquee-title {
  margin-bottom: 20px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  color: #898989;
}
.marquee-viewport-mask {
  position: relative;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}
.marquee-slide-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  padding: 0 16px;
  animation: marquee 25s linear infinite;
}
.marquee-slide-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
  transition:
    opacity 0.2s,
    transform 0.2s;
  cursor: default;
  filter: grayscale(100%);
}
.marquee-item:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0%);
}
.marquee-icon {
  width: 20px;
  height: 20px;
  color: var(--ink) !important;
}
.marquee-item span {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink) !important;
  letter-spacing: -0.5px;
}
@media (max-width: 1024px) {
  .hero {
    display: block !important;
    min-height: auto !important;
    padding: 110px 0 60px 0 !important;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 50px 0 !important;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
    text-align: center;
  }
  .hero-new-desc {
    text-align: center;
    margin: 0 auto !important;
  }
  .hero-new-badge {
    justify-content: center;
  }
  .hero-new-actions {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .btn-new-primary,
  .btn-new-secondary {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .new-stats-card {
    padding: 20px !important;
  }
  .header-stat-val {
    font-size: 24px !important;
  }
  .mini-val {
    font-size: 16px !important;
  }
  .mini-label {
    font-size: 8px !important;
    letter-spacing: 0.8px !important;
  }
  .tag-pills-row {
    justify-content: center;
  }
}

/* --- PORTFOLIO AUTO SLIDER SECTION --- */
.showcase-section {
  padding: 96px 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.slider-container {
  display: flex;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.slider-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: 10px 0;
}

.slider-track-left {
  animation: slideLeft 35s linear infinite;
}

.slider-track-right {
  animation: slideRight 35s linear infinite;
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}

.slide-card {
  width: 320px;
  height: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s;
  cursor: pointer;
  background: var(--cream);
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 16, 0.9) 0%,
    rgba(17, 17, 16, 0.3) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.slide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 86, 232, 0.25);
}

.slide-card:hover img {
  transform: scale(1.06);
}

.slide-card:hover .slide-overlay {
  opacity: 1;
}

.slide-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 4px;
}

.slide-overlay h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .slide-card {
    width: 260px;
    height: 162px;
  }
}

/* --- SERVICES DYNAMIC HORIZONTAL SCROLL SECTION --- */
.services-scroll-section {
  position: relative;
  height: 380vh;
  background: var(--white);
  padding: 0;
}

/* Glossy grid background wrapper */
.services-scroll-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Glowing background blobs */
  background:
    radial-gradient(
      circle at 20% 35%,
      rgba(26, 86, 232, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 75% 65%,
      rgba(14, 143, 90, 0.04) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(239, 68, 68, 0.015) 0%,
      transparent 50%
    ),
    /* Grid lines */
    linear-gradient(to right, rgba(26, 86, 232, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 86, 232, 0.02) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    50px 50px,
    50px 50px;
  z-index: 0;
  pointer-events: none;
}

/* Glassy overlay sheet to blend the grid and give a sheen */
.services-scroll-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      var(--white) 0%,
      transparent 10%,
      transparent 90%,
      var(--white) 100%
    ),
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.4),
      transparent 70%
    );
  z-index: 1;
  pointer-events: none;
}

.services-scroll-track {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.services-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.services-split-layout {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem 4rem; /* Added bottom padding to create a gap between cards and the section line */
  align-items: center;
  gap: 6rem;
  box-sizing: border-box;
}

.services-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 100;
  background: transparent;
}

.services-left-col .section-heading {
  margin: 0;
}

.services-left-col .section-sub {
  margin: 0;
  max-width: 440px;
}

.services-cta-wrap {
  margin-top: 1rem;
}

.services-right-col {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.services-horizontal-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Service Card Wrapper representing absolute position container */
.service-card-wrapper {
  position: absolute;
  width: 440px;
  height: 450px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  will-change: transform, opacity;
  transform-origin: center center;
  box-sizing: border-box;
  transition: opacity 0.2s ease-out;
}

/* Actual card element container */
.service-card-wrapper .service-card {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 86, 232, 0.12);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  background: var(--white);
  box-sizing: border-box;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s,
    border-color 0.4s;
  cursor: pointer;
}

/* Enhanced Hover state visual */
.service-card-wrapper .service-card:hover {
  border-color: rgba(26, 86, 232, 0.35);
  transform: translateY(-12px);
  box-shadow:
    0 20px 40px rgba(26, 86, 232, 0.18),
    0 0 0 1.5px rgba(26, 86, 232, 0.2);
}

.service-card-wrapper .service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 16px rgba(26, 86, 232, 0.22);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .services-split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem 3.5rem; /* Added bottom padding for tablet gap */
  }

  .services-left-col {
    text-align: center;
    align-items: center;
  }

  .services-right-col {
    height: 480px;
  }

  .service-card-wrapper {
    width: calc(100% - 32px);
    max-width: 380px;
    height: 410px;
  }
}

@media (max-width: 768px) {
  .services-scroll-section {
    height: 420vh;
  }

  .services-sticky-container {
    height: 100vh;
    padding-top: 60px;
    align-items: flex-start;
  }

  .services-split-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1.5rem 2.5rem; /* Added bottom padding for mobile gap */
  }

  .services-left-col {
    gap: 0.5rem;
  }

  .services-left-col .section-heading {
    font-size: 1.7rem !important;
  }

  .services-left-col .section-sub {
    font-size: 0.85rem !important;
    max-width: 100%;
  }

  .services-cta-wrap {
    margin-top: 0.5rem;
  }

  .services-right-col {
    height: 385px; /* Increased to prevent card bottom cutoff */
    margin-top: 0.5rem;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .service-card-wrapper {
    width: calc(100% - 16px);
    max-width: 320px;
    height: 345px; /* Increased to allow full card content to fit */
  }

  .service-card-wrapper .service-card {
    padding: 1.25rem 1.1rem; /* Compact padding to fit content better */
  }

  /* Compact typography inside cards on mobile to prevent text overflows */
  .service-card-wrapper .service-card .service-icon {
    width: 38px !important;
    height: 38px !important;
  }
  .service-card-wrapper .service-card h3 {
    font-size: 1.1rem !important;
    margin: 0.5rem 0 0.4rem !important;
  }
  .service-card-wrapper .service-card p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.6rem !important;
  }
  .service-card-wrapper .service-card .service-feature {
    font-size: 0.72rem !important;
    padding: 0.2rem 0.5rem !important;
  }
}

.slide-caption {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  line-height: 1.35;
  font-weight: 400;
}
