:root {
  --navy: #07142f;
  --navy-2: #0b1f46;
  --blue: #155eef;
  --blue-2: #3b82f6;
  --sky: #eaf2ff;
  --cyan: #45c8ff;
  --white: #ffffff;
  --text: #10203d;
  --muted: #66748d;
  --line: #dce5f2;
  --surface: #f6f9fd;
  --green: #16a66a;
  --shadow: 0 20px 60px rgba(20, 52, 102, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  animation: loaderPulse 1s infinite alternate;
}

@keyframes loaderPulse {
  to { transform: translateY(-6px) scale(1.04); box-shadow: 0 18px 50px rgba(69,200,255,.35); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 20, 47, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0,0,0,.16);
}

.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  min-width: 48px;
  height: 48px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.6px;
  box-shadow: 0 10px 25px rgba(21, 94, 239, .28);
}

.brand-name,
.brand-subtitle {
  display: block;
  line-height: 1.05;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 11px;
  color: #9eb7df;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: #dce8ff;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 11px 18px;
  border-radius: 11px;
  background: var(--white);
  color: var(--navy);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255,255,255,.09);
  border-radius: 12px;
  display: none;
  place-items: center;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 940px;
  padding: 170px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 88%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(21,94,239,.34), transparent 65%);
  right: 3%;
  top: 5%;
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(69,200,255,.18), transparent 70%);
  left: -8%;
  bottom: 12%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(69,200,255,.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(69,200,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(69,200,255,0); }
}

.hero h1 {
  max-width: 700px;
  margin: 25px 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 1.04;
  letter-spacing: -3.8px;
}

.hero h1 span {
  background: linear-gradient(90deg, #66d7ff, #6f9cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 620px;
  color: #b7c7e3;
  font-size: 18px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 0;
  border-radius: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #367eff);
  box-shadow: 0 14px 35px rgba(21,94,239,.32);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(21,94,239,.42);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
}

.btn-white {
  color: var(--navy);
  background: var(--white);
}

.full-width {
  width: 100%;
}

.hero-trust {
  margin-top: 44px;
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  margin-top: 2px;
  color: #8fa4c9;
  font-size: 12px;
}

.trust-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.dashboard-shell {
  width: 100%;
  max-width: 575px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  box-shadow: 0 50px 100px rgba(0,0,0,.35);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
  backdrop-filter: blur(18px);
}

.dashboard-topbar {
  height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.mini-brand {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--blue);
  font-weight: 800;
  font-size: 12px;
}

.topbar-search {
  width: 38%;
  height: 28px;
  margin-left: auto;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.topbar-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #5ed4ff, #2a6cff);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-body {
  min-height: 410px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.dash-sidebar {
  padding: 20px 13px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.dash-sidebar span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
}

.dash-sidebar .active {
  background: rgba(65,132,255,.35);
  border: 1px solid rgba(102,165,255,.4);
}

.dash-content {
  padding: 24px;
  background: rgba(8,24,55,.36);
}

.dash-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-heading small,
.dash-heading strong {
  display: block;
}

.dash-heading small {
  color: #8fa5c9;
  font-size: 10px;
}

.dash-heading strong {
  margin-top: 3px;
  font-size: 16px;
}

.dash-heading button,
.browser-title button {
  border: 0;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
}

.metric-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-grid article {
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
}

.metric-grid span,
.metric-grid strong,
.metric-grid small {
  display: block;
}

.metric-grid span {
  color: #9eb0cf;
  font-size: 9px;
}

.metric-grid strong {
  margin: 4px 0 2px;
  font-size: 17px;
}

.metric-grid small {
  color: #57dda9;
  font-size: 8px;
}

.chart-card,
.activity-card {
  margin-top: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
}

.chart-card {
  padding: 16px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.chart-header small {
  color: #899fc1;
}

.chart-bars {
  height: 120px;
  margin-top: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.chart-bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--blue), var(--cyan));
  opacity: .85;
}

.activity-card {
  padding: 12px 14px;
}

.activity-line {
  height: 24px;
  display: grid;
  grid-template-columns: 24px 1fr 55px;
  align-items: center;
  gap: 10px;
}

.activity-line span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(58,132,255,.4);
}

.activity-line b,
.activity-line em {
  height: 5px;
  display: block;
  border-radius: 5px;
  background: rgba(255,255,255,.1);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: rgba(9,29,65,.88);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 45px rgba(0,0,0,.24);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 11px;
}

.floating-card span {
  color: #91a6ca;
  font-size: 9px;
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(34,197,133,.16);
  color: #5be3ad;
  font-weight: 800;
}

.float-icon.blue {
  color: #7fdcff;
  background: rgba(69,200,255,.13);
}

.floating-card-one {
  top: 40px;
  right: -30px;
}

.floating-card-two {
  left: -34px;
  bottom: 55px;
}

.logo-strip {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.logo-strip p {
  color: #8096ba;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.logo-cloud {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-cloud span {
  color: #7f96bc;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.section {
  padding: 115px 0;
}

.section-light {
  background: var(--white);
}

.section-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1fr .58fr;
  gap: 70px;
  align-items: end;
}

.section-heading.centered {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
}

.section-heading.centered p {
  max-width: 670px;
  margin: 16px auto 0;
}

.section-heading h2,
.product-copy h2,
.contact-copy h2 {
  margin-top: 13px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.1;
  letter-spacing: -2.2px;
}

.section-heading > p {
  color: var(--muted);
  font-size: 17px;
}

.section-tag {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.section-tag.light {
  color: #8bdfff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

.service-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(69,200,255,.22), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
}

.service-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #cbd7e9;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 12px;
}

.featured .service-number {
  color: #5f789f;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--sky);
  color: var(--blue);
  font-size: 25px;
}

.featured .service-icon {
  color: #9be6ff;
  background: rgba(255,255,255,.08);
}

.service-card h3 {
  margin: 30px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.service-card p {
  color: var(--muted);
}

.featured p {
  color: #aebfda;
}

.service-card ul {
  margin-top: 28px;
  list-style: none;
}

.service-card li {
  position: relative;
  margin: 11px 0;
  padding-left: 22px;
  color: #42536e;
  font-size: 14px;
}

.featured li {
  color: #d4e0f4;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

.featured li::before {
  color: var(--cyan);
}

.shivflow-section {
  background: var(--surface);
  overflow: hidden;
}

.product-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 80px;
}

.product-badge {
  width: fit-content;
  margin: 19px 0 18px;
  padding: 8px 13px;
  border: 1px solid #bdd4ff;
  border-radius: 8px;
  background: #e8f1ff;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.product-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 22px;
}

.feature-list > div {
  display: flex;
  gap: 13px;
}

.feature-list > div > span {
  min-width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e8f1ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.feature-list h3 {
  font-size: 15px;
}

.feature-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.product-visual {
  position: relative;
  padding: 30px 0;
}

.browser-frame {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(40,73,125,.18);
  border: 1px solid #d7e2f2;
  transform: perspective(1200px) rotateY(4deg);
}

.browser-bar {
  height: 48px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e5ebf4;
}

.browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8c5d8;
}

.browser-bar div {
  width: 52%;
  height: 24px;
  margin-left: 15px;
  padding: 4px 12px;
  border-radius: 8px;
  background: #f0f4f9;
  color: #8594a9;
  font-size: 8px;
}

.browser-content {
  min-height: 455px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.browser-sidebar {
  padding: 16px 12px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  background: var(--navy);
}

.side-logo {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  font-size: 12px;
}

.browser-sidebar i {
  width: 26px;
  height: 26px;
  display: block;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}

.browser-main {
  padding: 23px;
  background: #f6f9fd;
}

.browser-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.browser-title small,
.browser-title strong {
  display: block;
}

.browser-title small {
  color: #8997aa;
  font-size: 9px;
}

.browser-title strong {
  margin-top: 3px;
  font-size: 17px;
}

.browser-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.browser-stats article {
  padding: 13px;
  border: 1px solid #e2e8f2;
  border-radius: 11px;
  background: #fff;
}

.browser-stats small,
.browser-stats strong,
.browser-stats span {
  display: block;
}

.browser-stats small {
  color: #8391a5;
  font-size: 7px;
}

.browser-stats strong {
  margin: 5px 0 3px;
  font-size: 14px;
}

.browser-stats span {
  color: var(--green);
  font-size: 7px;
}

.browser-lower {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 12px;
}

.funnel,
.tasks {
  min-height: 250px;
  padding: 15px;
  border: 1px solid #e2e8f2;
  border-radius: 12px;
  background: #fff;
}

.mini-title {
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 700;
}

.funnel-row {
  position: relative;
  height: 41px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #edf1f6;
}

.funnel-row span {
  position: absolute;
  left: 0;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e7f0ff, #bcd4ff);
}

.funnel-row b,
.funnel-row em {
  position: relative;
  z-index: 1;
  font-size: 8px;
  font-style: normal;
}

.task-row {
  height: 44px;
  display: grid;
  grid-template-columns: 24px 1fr 25px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #edf1f6;
}

.task-row i {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: #dceaff;
}

.task-row span,
.task-row small {
  height: 5px;
  border-radius: 5px;
  background: #e4eaf2;
}

.product-stamp {
  position: absolute;
  right: -22px;
  bottom: 2px;
  padding: 14px 17px;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(7,20,47,.18);
}

.product-stamp strong,
.product-stamp span {
  display: block;
}

.product-stamp strong {
  font-size: 12px;
}

.product-stamp span {
  margin-top: 3px;
  color: #a8b9d4;
  font-size: 9px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.status-chip {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 100px;
  background: #def8eb;
  color: #0c8c55;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.status-chip.upcoming {
  color: #7c5c18;
  background: #fff4cf;
}

.product-card-icon {
  width: 58px;
  height: 58px;
  margin-top: 36px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #54caff);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.product-card h3 {
  margin: 22px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
}

.product-card > a:not(.btn) {
  position: absolute;
  left: 28px;
  bottom: 27px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.product-card.custom {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 100%, rgba(69,200,255,.22), transparent 36%),
    linear-gradient(145deg, var(--blue), var(--navy));
  overflow: hidden;
}

.product-card.custom h3 {
  max-width: 280px;
  margin-top: 18px;
  font-size: 30px;
  line-height: 1.15;
}

.product-card.custom p {
  color: #c9daf6;
}

.product-card.custom .btn {
  position: absolute;
  left: 28px;
  bottom: 27px;
}

.custom-lines {
  position: absolute;
  right: -60px;
  top: -70px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

.process-section {
  color: var(--white);
  background: var(--navy);
}

.process-section .section-heading > p {
  color: #9db0cf;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 38px 26px 0 0;
  border-right: 1px solid rgba(255,255,255,.12);
}

.process-step:not(:first-child) {
  padding-left: 26px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #98dbff;
  background: rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin: 42px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.process-step p {
  color: #9eb0cd;
  font-size: 14px;
}

.reviews-section {
  background: var(--surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.featured-review {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.stars {
  color: #f7b733;
  letter-spacing: 3px;
  font-size: 13px;
}

.review-card > p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.75;
}

.featured-review > p {
  color: #d4e0f2;
}

.review-person {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #e7f0ff;
  font-size: 11px;
  font-weight: 800;
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person strong {
  font-size: 13px;
}

.review-person span {
  color: var(--muted);
  font-size: 11px;
}

.featured-review .review-person span {
  color: #9db0ce;
}

.contact-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(55,131,255,.35), transparent 30%),
    var(--navy);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-copy > p {
  max-width: 560px;
  margin-top: 20px;
  color: #b6c6df;
  font-size: 17px;
}

.contact-details {
  margin-top: 35px;
  display: grid;
  gap: 17px;
}

.contact-details > a,
.contact-details > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #8bdfff;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  color: #8299bd;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details strong {
  max-width: 520px;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.55;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 25px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 35px 80px rgba(0,0,0,.25);
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading span {
  color: #8bdfff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.form-heading h3 {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
}

.contact-form label {
  display: block;
  margin-top: 14px;
  color: #dce7f7;
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  outline: 0;
  color: var(--white);
  background: rgba(255,255,255,.07);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form select option {
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8296b8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6bcfff;
  box-shadow: 0 0 0 3px rgba(69,200,255,.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form button {
  margin-top: 20px;
}

.form-note {
  display: block;
  margin-top: 10px;
  color: #8195b5;
  text-align: center;
}

.site-footer {
  padding: 75px 0 24px;
  color: #d5e0f2;
  background: #040d20;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand p {
  max-width: 290px;
  margin-top: 20px;
  color: #8195b5;
  font-size: 14px;
}

.site-footer h4 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
}

.site-footer .footer-grid > div:not(.footer-brand) a,
.site-footer .footer-grid > div:not(.footer-brand) span {
  margin: 10px 0;
  display: block;
  color: #8397b8;
  font-size: 12px;
}

.site-footer a:hover {
  color: var(--white) !important;
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #64799b;
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 35px rgba(37,211,102,.35);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 31px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 75px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .product-grid {
    gap: 55px;
  }

  .product-copy {
    max-width: 780px;
  }

  .services-grid,
  .products-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .contact-copy {
    max-width: 780px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 86px 0 auto;
    padding: 22px 20px 30px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    background: rgba(7,20,47,.98);
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .main-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero {
    padding-top: 145px;
  }

  .hero h1 {
    letter-spacing: -2.5px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    height: 76px;
  }

  .brand-mark {
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 15px;
  }

  .main-nav {
    inset: 76px 0 auto;
  }

  .hero {
    padding: 125px 0 65px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -2.1px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-divider {
    display: none;
  }

  .hero-visual {
    min-height: 400px;
  }

  .dashboard-shell {
    border-radius: 20px;
    transform: none;
  }

  .dashboard-body {
    grid-template-columns: 44px 1fr;
  }

  .dash-sidebar {
    padding: 15px 8px;
  }

  .dash-sidebar span {
    width: 27px;
    height: 27px;
  }

  .dash-content {
    padding: 15px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid article:nth-child(n+2) {
    display: none;
  }

  .floating-card-one {
    right: -2px;
    top: 8px;
  }

  .floating-card-two {
    left: -3px;
    bottom: 5px;
  }

  .logo-strip {
    margin-top: 65px;
  }

  .logo-cloud {
    justify-content: center;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .product-copy h2,
  .contact-copy h2 {
    font-size: 37px;
    letter-spacing: -1.6px;
  }

  .services-grid,
  .products-grid,
  .reviews-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .browser-frame {
    transform: none;
  }

  .browser-content {
    min-height: 360px;
    grid-template-columns: 44px 1fr;
  }

  .browser-main {
    padding: 14px;
  }

  .browser-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .browser-stats article:nth-child(n+3) {
    display: none;
  }

  .browser-lower {
    grid-template-columns: 1fr;
  }

  .tasks {
    display: none;
  }

  .product-stamp {
    right: 0;
  }

  .process-step,
  .process-step:not(:first-child) {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 0;
  }

  .process-step h3 {
    margin-top: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}


/* =====================================================
   DVD logo and ShivFlow CRM real screenshot gallery
===================================================== */
.logo-container {
  min-width: 158px;
  height: 62px;
  padding: 5px 10px;
  overflow: hidden;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.brand-logo {
  width: 138px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.footer-brand-logo {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 14px;
  background: #ffffff;
}

.footer-brand-logo .brand-logo {
  width: 170px;
  height: auto;
}

.crm-product-visual {
  min-width: 0;
  padding: 22px 0 36px;
}

.crm-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e2f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 35px 90px rgba(40, 73, 125, 0.2);
}

.crm-window-bar {
  min-height: 52px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  border-bottom: 1px solid #e4eaf2;
  background: #f9fbfe;
}

.crm-window-bar strong {
  overflow: hidden;
  color: #1d2d47;
  font-size: 13px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-window-dots {
  display: flex;
  gap: 7px;
}

.crm-window-dots span {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: #c6d1df;
}

.crm-window-dots span:first-child { background: #ff6b6b; }
.crm-window-dots span:nth-child(2) { background: #ffc857; }
.crm-window-dots span:nth-child(3) { background: #4ecb88; }

.crm-expand-btn {
  width: 35px;
  height: 35px;
  justify-self: end;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  color: #1f395e;
  background: #ffffff;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.crm-expand-btn:hover {
  color: var(--blue);
  border-color: #a9c6ff;
  transform: translateY(-1px);
}

.crm-image-stage {
  position: relative;
  height: 385px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(21, 94, 239, .025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(21, 94, 239, .025) 25%, transparent 25%),
    #f3f7fc;
  background-size: 24px 24px;
}

.crm-image-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(7, 20, 47, .08), transparent);
}

.crm-image-stage > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  cursor: zoom-in;
  transition: opacity .18s ease, transform .35s ease;
}

.crm-image-stage > img.is-changing {
  opacity: .25;
  transform: scale(.985);
}

.crm-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(7, 20, 47, .72);
  box-shadow: 0 8px 25px rgba(7, 20, 47, .22);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.crm-gallery-arrow:hover {
  background: var(--blue);
  transform: translateY(-50%) scale(1.06);
}

.crm-gallery-prev { left: 14px; }
.crm-gallery-next { right: 14px; }

.crm-screen-details {
  min-height: 105px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 25px;
  align-items: center;
  border-top: 1px solid #e5ebf3;
}

.crm-screen-details span {
  display: block;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.crm-screen-details h3 {
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.crm-screen-details p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.crm-thumbnail-strip {
  padding: 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  border-top: 1px solid #e8edf4;
  background: #f7f9fc;
  scrollbar-width: thin;
  scrollbar-color: #a9b9cf transparent;
}

.crm-thumbnail-strip::-webkit-scrollbar { height: 7px; }
.crm-thumbnail-strip::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #a9b9cf;
}

.crm-thumb {
  min-width: 118px;
  width: 118px;
  padding: 6px;
  display: block;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid #dfe6f0;
  border-radius: 11px;
  color: #52647f;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.crm-thumb:hover,
.crm-thumb.active {
  border-color: var(--blue);
  box-shadow: 0 8px 22px rgba(21, 94, 239, .15);
  transform: translateY(-2px);
}

.crm-thumb img {
  width: 100%;
  height: 58px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 7px;
  background: #edf2f8;
}

.crm-thumb span {
  margin-top: 6px;
  display: block;
  overflow: hidden;
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-lightbox[hidden] { display: none; }

.crm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: 40px 78px;
  display: grid;
  place-items: center;
  background: rgba(3, 10, 24, .94);
  backdrop-filter: blur(14px);
}

.crm-lightbox figure {
  width: min(1400px, 100%);
  max-height: calc(100vh - 80px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.crm-lightbox img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 140px);
  display: block;
  object-fit: contain;
  background: #f5f7fa;
}

.crm-lightbox figcaption {
  padding: 13px 18px;
  color: #172842;
  background: #ffffff;
  font-weight: 800;
  text-align: center;
}

.crm-lightbox-close,
.crm-lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  color: #ffffff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.crm-lightbox-close {
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
}

.crm-lightbox-arrow {
  top: 50%;
  width: 50px;
  height: 65px;
  border-radius: 14px;
  font-size: 40px;
  transform: translateY(-50%);
}

.crm-lightbox-prev { left: 16px; }
.crm-lightbox-next { right: 16px; }
.crm-lightbox-close:hover,
.crm-lightbox-arrow:hover { background: var(--blue); }

body.crm-lightbox-open { overflow: hidden; }

@media (max-width: 1080px) {
  .crm-image-stage { height: 430px; }
}

@media (max-width: 640px) {
  .logo-container {
    min-width: 128px;
    height: 54px;
    padding: 4px 8px;
  }

  .brand-logo {
    width: 112px;
    height: 46px;
  }

  .crm-product-visual { padding-top: 8px; }
  .crm-showcase { border-radius: 18px; }

  .crm-window-bar {
    min-height: 46px;
    grid-template-columns: 55px 1fr 55px;
    padding: 0 10px;
  }

  .crm-window-bar strong { font-size: 11px; }
  .crm-window-dots { gap: 4px; }
  .crm-window-dots span { width: 7px; height: 7px; }
  .crm-expand-btn { width: 31px; height: 31px; }

  .crm-image-stage { height: 250px; }
  .crm-gallery-arrow { width: 35px; height: 35px; font-size: 25px; }
  .crm-gallery-prev { left: 7px; }
  .crm-gallery-next { right: 7px; }

  .crm-screen-details {
    min-height: 0;
    padding: 15px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .crm-screen-details h3 { font-size: 17px; }
  .crm-thumbnail-strip { padding: 10px; }
  .crm-thumb { min-width: 100px; width: 100px; }
  .crm-thumb img { height: 49px; }

  .crm-lightbox { padding: 65px 12px 20px; }
  .crm-lightbox-arrow {
    top: auto;
    bottom: 18px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transform: none;
  }
  .crm-lightbox-prev { left: calc(50% - 56px); }
  .crm-lightbox-next { right: calc(50% - 56px); }
  .crm-lightbox img { max-height: calc(100vh - 190px); }
}


/* =========================
   CLIENT COMPANY CARDS
========================= */
.client-company-grid {
  align-items: stretch;
}

.client-company-card {
  min-height: 330px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.client-company-card:hover {
  transform: translateY(-6px);
  border-color: #bfd2f2;
  box-shadow: var(--shadow);
}

.client-logo-box {
  min-height: 215px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e9f2;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.client-logo-box-dark {
  padding: 0;
  background: #04122d;
  border-color: #04122d;
}

.client-company-logo {
  width: 100%;
  height: 175px;
  display: block;
  object-fit: contain;
}

.client-logo-box-dark .client-company-logo {
  height: 215px;
  object-fit: cover;
}

.client-company-info {
  padding: 24px 5px 4px;
}

.client-company-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.client-company-info h3 {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.client-rating {
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #e8edf4;
}

.client-rating-stars {
  color: #f7b733;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 3px;
  white-space: nowrap;
}

.client-rating-label {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.client-rating-label strong {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.client-rating-label small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.client-review-text {
  position: relative;
  margin-top: 18px;
  padding: 18px 18px 18px 22px;
  border-radius: 14px;
  background: #f6f9fd;
  color: #43516a;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.client-review-text::before {
  content: "“";
  position: absolute;
  left: 8px;
  top: 1px;
  color: #b7cdf3;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

@media (max-width: 640px) {
  .client-company-card {
    min-height: auto;
  }

  .client-logo-box {
    min-height: 190px;
  }

  .client-company-logo {
    height: 150px;
  }

  .client-logo-box-dark .client-company-logo {
    height: 190px;
  }
}


/* =====================================================
   Main DVD Infotech logo — cropped asset and large display
===================================================== */
.main-logo {
  width: 190px;
  height: 88px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7px 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.main-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.site-header .nav-wrap {
  height: 108px;
}

@media (max-width: 820px) {
  .main-logo {
    width: 174px;
    height: 82px;
    padding: 6px 10px;
  }

  .site-header .nav-wrap {
    height: 100px;
  }

  .main-nav {
    inset: 100px 0 auto;
  }
}

@media (max-width: 640px) {
  .main-logo {
    width: 160px;
    height: 78px;
    padding: 6px 9px;
    border-radius: 14px;
  }

  .site-header .nav-wrap {
    height: 94px;
  }

  .main-nav {
    inset: 94px 0 auto;
  }
}

/* ==================================
   CLIENT LOGO IMAGE FIX
================================== */

.client-logo-box {
  width: 100%;
  height: 220px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #dbe4f1;
  border-radius: 18px;
  background: #ffffff;
}

.client-company-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
}

/* SNKB image has extra white space */
.client-logo-snkb .client-company-logo {
  transform: scale(1.75);
}

/* Swastik logo needs slightly more space */
.client-logo-swastik .client-company-logo {
  transform: scale(1.08);
}

/* Keep the IBS logo inside the border */
.client-logo-ibs .client-company-logo {
  transform: scale(0.94);
}

/* Tablet */
@media (max-width: 900px) {
  .client-logo-box {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .client-logo-box {
    height: 190px;
    padding: 16px;
  }

  .client-logo-snkb .client-company-logo {
    transform: scale(1.6);
  }

  .client-logo-swastik .client-company-logo {
    transform: scale(1.02);
  }

  .client-logo-ibs .client-company-logo {
    transform: scale(0.9);
  }
}

/* =====================================================================
   PREMIUM EXPERIENCE LAYER
   Added after the base stylesheet so these rules safely enhance the site.
===================================================================== */

:root {
  --premium-shadow: 0 28px 75px rgba(18, 48, 96, 0.17);
  --premium-glow: 0 0 70px rgba(21, 94, 239, 0.12);
}

/* Reading progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 14px rgba(69, 200, 255, 0.68);
  transition: width 0.08s linear;
}

/* More polished navigation state */
.main-nav a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue-2), var(--cyan));
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).active::after {
  width: 72%;
}

.main-nav .nav-cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-nav .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Real ShivFlow CRM in the hero */
.hero-product-preview {
  position: relative;
  width: 100%;
  max-width: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 52px 115px rgba(0, 0, 0, 0.43), var(--premium-glow);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s ease-out, box-shadow 0.3s ease;
}

.hero-product-preview:hover {
  box-shadow: 0 58px 125px rgba(0, 0, 0, 0.48), 0 0 90px rgba(69, 200, 255, 0.13);
}

.hero-product-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%);
}

.hero-product-header {
  min-height: 58px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 90px 1fr 110px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-product-header strong {
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.hero-product-dots {
  display: flex;
  gap: 7px;
}

.hero-product-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.hero-product-dots span:first-child { background: #ff6b6b; }
.hero-product-dots span:nth-child(2) { background: #ffd166; }
.hero-product-dots span:nth-child(3) { background: #47d7a2; }

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #c2f5df;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.hero-live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #47d7a2;
  box-shadow: 0 0 0 5px rgba(71, 215, 162, 0.12);
  animation: liveBadgePulse 2s infinite;
}

@keyframes liveBadgePulse {
  50% { box-shadow: 0 0 0 9px rgba(71, 215, 162, 0); }
}

.hero-product-image {
  padding: 13px;
  background: radial-gradient(circle at 80% 10%, rgba(69, 200, 255, 0.14), transparent 36%), rgba(4, 15, 37, 0.58);
}

.hero-product-image img {
  width: 100%;
  height: 365px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 17px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
}

.hero-product-footer {
  min-height: 64px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-product-footer div {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c3d2ea;
  font-size: 10px;
  font-weight: 700;
}

.hero-product-footer span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #66e0b0;
  background: rgba(71, 215, 162, 0.12);
}

/* Mouse-following light on major cards */
.service-card,
.product-card,
.client-company-card {
  position: relative;
  isolation: isolate;
}

.service-card::before,
.product-card::before,
.client-company-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(430px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(21, 94, 239, 0.14), transparent 43%);
  transition: opacity 0.3s ease;
}

.service-card > *,
.product-card > *,
.client-company-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover::before,
.product-card:hover::before,
.client-company-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.product-card:hover,
.client-company-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 94, 239, 0.3);
  box-shadow: var(--premium-shadow), 0 0 0 1px rgba(21, 94, 239, 0.04);
}

/* Product cards get a subtle top highlight */
.product-card:not(.custom)::after,
.service-card:not(.featured)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  z-index: 1;
  height: 2px;
  opacity: 0;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(90deg, transparent, var(--blue-2), var(--cyan), transparent);
  transition: opacity 0.3s ease;
}

.product-card:hover::after,
.service-card:hover::after { opacity: 1; }

/* Premium CRM gallery frame */
.crm-showcase {
  border: 1px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, rgba(21, 94, 239, 0.85), rgba(69, 200, 255, 0.38), rgba(21, 94, 239, 0.1)) border-box;
  box-shadow: 0 42px 105px rgba(20, 52, 102, 0.22), var(--premium-glow);
}

.crm-image-stage {
  background: radial-gradient(circle at 75% 15%, rgba(69, 200, 255, 0.13), transparent 35%),
              linear-gradient(145deg, #edf4ff, #f9fbff);
}

.crm-image-stage > img {
  padding: 10px;
  object-fit: contain;
  background: transparent;
}

.crm-thumb {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.crm-thumb:hover {
  transform: translateY(-3px);
}

/* Button light sweep */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -80%;
  width: 45%;
  height: 210%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: rotate(20deg);
  transition: left 0.72s ease;
}

.btn-primary:hover::after { left: 140%; }

/* Stronger visual rhythm between sections */
.section-heading h2,
.product-copy h2,
.contact-copy h2 {
  text-wrap: balance;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.section-tag::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 5px;
  background: currentColor;
  opacity: 0.8;
}

.reviews-section {
  position: relative;
  background: radial-gradient(circle at 12% 12%, rgba(21, 94, 239, 0.08), transparent 28%),
              radial-gradient(circle at 88% 80%, rgba(69, 200, 255, 0.08), transparent 27%),
              var(--surface);
}

.client-company-card {
  min-height: 100%;
}

.client-review-text {
  flex: 1;
  border: 1px solid #e6edf7;
  box-shadow: inset 3px 0 0 rgba(21, 94, 239, 0.16);
}

.client-rating-stars {
  filter: drop-shadow(0 4px 8px rgba(247, 183, 51, 0.2));
}

/* Keep each logo visually balanced */
.client-logo-box-dark {
  padding: 20px;
  background: #ffffff;
  border-color: #dbe4f1;
}

.client-logo-ibs .client-company-logo {
  transform: scale(0.98);
}

/* More refined contact form */
.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -190px;
  right: -120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(69, 200, 255, 0.2), transparent 68%);
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

/* Responsive premium layer */
@media (max-width: 820px) {
  .main-nav a:not(.nav-cta)::after { display: none; }

  .hero-product-preview {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-product-header {
    grid-template-columns: 60px 1fr 85px;
    min-height: 52px;
    padding: 0 12px;
  }

  .hero-product-header strong { font-size: 11px; }
  .hero-live-badge { font-size: 8px; }

  .hero-product-image { padding: 8px; }
  .hero-product-image img { height: 245px; }

  .hero-product-footer {
    gap: 10px;
    justify-content: flex-start;
    padding: 12px;
  }

  .hero-product-footer div { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-product-preview,
  .service-card,
  .product-card,
  .client-company-card {
    transform: none !important;
  }
}


/* =====================================================
   REFINED COMPANY LOGO — compact, balanced, professional
===================================================== */
.site-header .nav-wrap {
  height: 84px;
}

.main-logo {
  width: 156px;
  height: 62px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7px 10px;
  border: 1px solid rgba(214, 226, 243, 0.92);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(3, 15, 39, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 28px rgba(3, 15, 39, 0.18);
}

.main-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.footer-brand-logo {
  width: 150px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.footer-brand-logo .brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.footer-brand p {
  margin-top: 16px;
}

@media (max-width: 820px) {
  .site-header .nav-wrap {
    height: 78px;
  }

  .main-logo {
    width: 146px;
    height: 58px;
    padding: 6px 9px;
  }

  .main-nav {
    inset: 78px 0 auto;
  }
}

@media (max-width: 640px) {
  .site-header .nav-wrap {
    height: 74px;
  }

  .main-logo {
    width: 138px;
    height: 54px;
    padding: 6px 8px;
    border-radius: 12px;
  }

  .main-nav {
    inset: 74px 0 auto;
  }

  .footer-brand-logo {
    width: 138px;
    height: 62px;
    padding: 7px 9px;
  }

  .footer-brand p {
    max-width: 250px;
    margin-top: 14px;
  }
}


/* =====================================================
   CAMOUFLAGE LOGO — transparent and blended with navy
===================================================== */
.site-header .nav-wrap {
  height: 80px;
}

.main-logo {
  width: 148px;
  height: 58px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-logo:hover {
  transform: translateY(-1px);
  box-shadow: none;
  opacity: 0.96;
}

.main-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.18));
}

.footer-brand-logo {
  width: 148px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand-logo .brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.footer-brand p {
  max-width: 285px;
  margin-top: 14px;
  color: #91a6c8;
}

@media (max-width: 820px) {
  .site-header .nav-wrap {
    height: 76px;
  }

  .main-logo {
    width: 140px;
    height: 54px;
  }

  .main-nav {
    inset: 76px 0 auto;
  }
}

@media (max-width: 640px) {
  .site-header .nav-wrap {
    height: 72px;
  }

  .main-logo {
    width: 128px;
    height: 50px;
  }

  .main-nav {
    inset: 72px 0 auto;
  }

  .footer-brand-logo {
    width: 136px;
    height: 60px;
  }

  .footer-brand p {
    max-width: 240px;
    margin-top: 12px;
  }
}

.main-nav .nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #0b64d8 0%, #1187ff 100%);
  border: 1px solid rgba(93, 181, 255, 0.45);
  box-shadow: 0 10px 24px rgba(17, 135, 255, 0.28);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #1187ff 0%, #32a8ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(17, 135, 255, 0.38);
}