:root {
  --bg: #ffffff;
  --bg-soft: #f5f9ff;
  --bg-softer: #eef6ff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --text: #0b1b42;
  --muted: #64748b;
  --muted-2: #8a9ab3;
  --line: rgba(29, 78, 216, 0.12);
  --line-strong: rgba(30, 115, 255, 0.22);
  --primary: #1e73ff;
  --primary-2: #08c5d8;
  --primary-3: #6c5ce7;
  --success: #16c784;
  --warning: #ffb020;
  --danger: #ff5d73;
  --shadow: 0 20px 70px rgba(27, 76, 164, 0.13);
  --shadow-soft: 0 14px 40px rgba(31, 75, 140, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 115, 255, 0.12), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(8, 197, 216, 0.14), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f8fbff 44%, #fff 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 115, 255, 0.08);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(20, 70, 140, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 235px;
}

.brand img {
  width: 230px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(30, 115, 255, 0.08));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(30, 115, 255, 0.09);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(32, 96, 180, 0.05);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: #31415f;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--primary);
  background: rgba(30, 115, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(30, 115, 255, 0.18);
  background: #fff;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0858e6 60%, #04bfd0);
  color: #fff;
  box-shadow: 0 18px 36px rgba(30, 115, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 50px rgba(30, 115, 255, 0.35);
}

.btn-ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(30, 115, 255, 0.28);
  box-shadow: 0 14px 34px rgba(31, 75, 140, 0.06);
}

.btn-ghost:hover {
  background: rgba(30, 115, 255, 0.07);
  border-color: rgba(30, 115, 255, 0.42);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(30, 115, 255, 0.12);
}

.section-shell {
  position: relative;
  padding: 86px 0 56px;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-tight {
  padding: 18px 0 44px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

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

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.85;
}

.orb-one {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 88px;
  background: radial-gradient(circle, rgba(30, 115, 255, 0.22), transparent 70%);
}

.orb-two {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 72px;
  background: radial-gradient(circle, rgba(8, 197, 216, 0.24), transparent 70%);
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 115, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 115, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  padding: 10px 14px;
  border: 1px solid rgba(30, 115, 255, 0.14);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(31, 75, 140, 0.08);
  text-transform: none;
  letter-spacing: 0;
  color: #1459d8;
  font-weight: 800;
}

.eyebrow-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 700px;
  font-size: clamp(44px, 6.6vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

h1 span {
  color: var(--primary);
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(105px, 1fr));
  max-width: 650px;
  gap: 14px;
  margin-top: 40px;
}

.metric-card {
  display: grid;
  gap: 6px;
  justify-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 115, 255, 0.1);
  box-shadow: 0 14px 34px rgba(31, 75, 140, 0.07);
}

.metric-card strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.metric-card small {
  color: var(--muted);
  font-weight: 700;
}

.metric-icon,
.trust-icon,
.feature-icon,
.process-icon,
.service-icon,
.security-icon,
.why-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(30, 115, 255, 0.28), rgba(8, 197, 216, 0.18)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(30, 115, 255, 0.12);
}

.metric-icon {
  width: 42px;
  height: 42px;
}

.metric-icon::before,
.trust-icon::before,
.feature-icon::before,
.process-icon::before,
.service-icon::before,
.security-icon::before,
.why-icon::before {
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shield::before { content: "◈"; }
.pulse::before { content: "↯"; }
.check::before { content: "✓"; }
.bill::before { content: "₹"; }

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

.visual-network {
  position: absolute;
  inset: -10% -8%;
  background:
    radial-gradient(circle at 22% 28%, rgba(30, 115, 255, 0.16), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(8, 197, 216, 0.14), transparent 30%);
  border-radius: 48px;
  overflow: hidden;
}

.visual-network::before,
.visual-network::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(30, 115, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.visual-network::after {
  inset: 22%;
  transform: rotate(18deg);
  border-style: dashed;
}

.phone-frame {
  position: relative;
  z-index: 4;
  width: min(330px, 78vw);
  min-height: 520px;
  padding: 34px 22px 24px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 255, 0.86));
  border: 1px solid rgba(30, 115, 255, 0.18);
  box-shadow:
    0 42px 80px rgba(31, 75, 140, 0.20),
    inset 0 0 0 8px rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 34px;
  border: 1px solid rgba(30, 115, 255, 0.08);
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 70px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(11, 27, 66, 0.14);
}

.hero-slide {
  position: absolute;
  inset: 42px 24px 24px;
  opacity: 0;
  transform: translateX(22px) scale(0.98);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.screen-head,
.bill-top {
  padding: 20px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, var(--primary), #0757df);
  box-shadow: 0 18px 36px rgba(30, 115, 255, 0.22);
}

.screen-head span,
.bill-top span {
  display: block;
  opacity: 0.8;
  font-size: 12px;
  font-weight: 700;
}

.screen-head b {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

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

.quick-grid span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #31537c;
  font-size: 12px;
  font-weight: 800;
  background: rgba(30, 115, 255, 0.08);
}

.hero-slide h3 {
  margin: 10px 0 14px;
  font-size: 20px;
}

.mini-chart {
  height: 96px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 15px;
  background: #f4f8ff;
  border: 1px solid rgba(30, 115, 255, 0.08);
  border-radius: 22px;
}

.mini-chart i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

.transaction-line,
.bill-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  color: #38506f;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(30, 115, 255, 0.1);
}

.kyc-ring {
  width: 180px;
  height: 180px;
  margin: 20px auto 26px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 72%, rgba(30, 115, 255, 0.12) 72% 100%);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 20px #f7fbff, 0 18px 50px rgba(30, 115, 255, 0.16);
}

.kyc-ring span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #eaf5ff);
  box-shadow: 0 16px 40px rgba(31, 75, 140, 0.12);
  position: relative;
}

.kyc-ring span::before {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--success);
  font-size: 34px;
  font-weight: 900;
}

.hero-slide p {
  color: var(--muted);
  line-height: 1.7;
}

.step-ticks {
  display: grid;
  gap: 10px;
}

.step-ticks span {
  padding: 11px 13px;
  border-radius: 14px;
  background: #f3f8ff;
  color: #42526e;
  font-weight: 800;
  font-size: 13px;
}

.step-ticks span::before {
  content: "✓";
  color: var(--success);
  margin-right: 8px;
}

.bill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.bill-top b {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.bill-item strong {
  color: var(--success);
}

.pay-preview {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(30, 115, 255, 0.22);
}

.floating-card {
  position: absolute;
  z-index: 5;
  width: 210px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(30, 115, 255, 0.15);
  box-shadow: var(--shadow-soft);
}

.verified-card {
  left: 0;
  top: 70px;
  transform: rotate(-5deg);
}

.bill-card {
  right: 0;
  bottom: 92px;
  transform: rotate(4deg);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #253858;
  font-size: 14px;
  margin-bottom: 14px;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(30, 115, 255, 0.10);
}

.status-dot.orange {
  background: linear-gradient(135deg, #ff8b2c, #ffcf5c);
  box-shadow: 0 0 0 6px rgba(255, 176, 32, 0.13);
}

.verified-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 115, 255, 0.08);
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.verified-row strong {
  color: var(--success);
}

.bill-card p {
  margin-bottom: 10px;
  font-weight: 900;
}

.select-line {
  padding: 10px 12px;
  margin-top: 9px;
  border-radius: 14px;
  background: #f5f9ff;
  color: #60708d;
  font-size: 12px;
  font-weight: 800;
}

.pay-chip {
  margin-top: 12px;
  padding: 12px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.slide-btn {
  position: absolute;
  z-index: 8;
  top: 48%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(30, 115, 255, 0.15);
  border-radius: 50%;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.slide-prev {
  left: 18px;
}

.slide-next {
  right: 18px;
}

.slide-dots {
  position: absolute;
  z-index: 9;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(30, 115, 255, 0.18);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.dot.active {
  width: 28px;
  background: var(--primary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(30, 115, 255, 0.11);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid rgba(30, 115, 255, 0.08);
}

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

.trust-item small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}

.trust-icon {
  width: 50px;
  height: 50px;
}

.official::before { content: "K"; }
.secure::before { content: "✓"; }
.grade::before { content: "⌂"; }
.bbps::before { content: "₹"; }

.trust-item.wide {
  grid-template-columns: 76px 1fr;
}

.bharat-mark {
  width: 76px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #ff8b2c, #1e73ff);
  box-shadow: 0 14px 30px rgba(30, 115, 255, 0.14);
}

.split-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.split-heading h2,
.section-side h2,
.license-copy h2,
.cta-copy h2,
.contact-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.split-heading p,
.section-side p,
.license-copy p,
.cta-copy p,
.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.security-card,
.why-card {
  position: relative;
  padding: 24px;
  min-height: 230px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.92));
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: 0 16px 42px rgba(31, 75, 140, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card::after,
.security-card::after,
.why-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(30, 115, 255, 0.13), transparent 70%);
}

.feature-card:hover,
.security-card:hover,
.why-card:hover,
.service-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(31, 75, 140, 0.12);
  border-color: rgba(30, 115, 255, 0.18);
}

.feature-icon,
.security-icon,
.why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-icon::before,
.security-icon::before,
.why-icon::before,
.service-icon::before,
.process-icon::before {
  font-size: 24px;
}

.pan::before { content: "ID"; font-size: 18px; }
.aadhaar::before { content: "◌"; font-size: 30px; }
.bank::before { content: "⌂"; }
.document::before { content: "▤"; }
.monitor::before { content: "↗"; }
.access::before { content: "🔒"; color: var(--primary); background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.tracking::before { content: "↻"; }
.compliance::before { content: "✓"; }

.feature-card h3,
.security-card h3,
.why-card h3,
.process-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.feature-card p,
.security-card p,
.why-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.kyc-section {
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.65), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 20% 70%, rgba(30, 115, 255, 0.10), transparent 30%);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(30, 115, 255, 0.18), rgba(8, 197, 216, 0.24));
}

.process-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 28px 18px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 115, 255, 0.11);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-number {
  position: absolute;
  top: -17px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(30, 115, 255, 0.24);
  font-weight: 900;
}

.process-number.success {
  background: var(--success);
}

.process-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border-radius: 22px;
}

.user::before { content: "👤"; background: none; color: var(--primary); -webkit-background-clip: border-box; background-clip: border-box; }
.folder::before { content: "▰"; }
.shield-check::before { content: "✓"; }
.bank-check::before { content: "⌂"; }
.activate::before { content: "✓"; color: var(--success); background: none; -webkit-background-clip: border-box; background-clip: border-box; font-size: 30px; }

.services-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 34px;
  align-items: start;
}

.section-side {
  position: sticky;
  top: 112px;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.86));
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: var(--shadow-soft);
}

.section-side .btn {
  margin-top: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0, rgba(30, 115, 255, 0.08), transparent 52%),
    #fff;
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: 0 14px 38px rgba(31, 75, 140, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card b {
  text-align: center;
  font-size: 15px;
}

.service-icon {
  width: 66px;
  height: 66px;
  border-radius: 24px;
}

.gas::before { content: "♨"; color: #178fff; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.dth::before { content: "⌁"; color: #7c3aed; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.education::before { content: "◆"; color: #10b981; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.travel::before { content: "✈"; color: #f59e0b; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.insurance::before { content: "♥"; color: #ec4899; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.fastag::before { content: "▣"; color: #7c3aed; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.municipal::before { content: "▥"; color: #14b8a6; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.electricity::before { content: "⚡"; color: #fbbf24; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.water::before { content: "◆"; color: #38bdf8; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.mobile::before { content: "▯"; color: #3b82f6; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.broadband::before { content: "◔"; color: #8b5cf6; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.loan::before { content: "₹"; color: #22c55e; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.more::before { content: "•••"; color: #64748b; background: none; -webkit-background-clip: border-box; background-clip: border-box; }

.dashboard-section {
  background:
    linear-gradient(180deg, #fff 0%, #f5f9ff 50%, #fff 100%);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 0;
  min-height: 600px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 115, 255, 0.12);
  box-shadow: 0 32px 80px rgba(31, 75, 140, 0.12);
}

.dash-sidebar {
  padding: 24px;
  background: linear-gradient(180deg, #f7fbff, #fff);
  border-right: 1px solid rgba(30, 115, 255, 0.10);
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-weight: 900;
}

.dash-logo span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.dash-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  margin: 6px 0;
  border-radius: 14px;
  color: #5b6c85;
  font-size: 14px;
  font-weight: 800;
}

.dash-sidebar a.selected {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0757df);
  box-shadow: 0 12px 26px rgba(30, 115, 255, 0.22);
}

.dash-main {
  padding: 26px;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dash-topbar span {
  color: var(--muted);
  font-weight: 800;
}

.dash-topbar h3 {
  margin: 6px 0 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.dash-date {
  padding: 12px 16px;
  border-radius: 999px;
  color: #38506f;
  background: #f4f8ff;
  border: 1px solid rgba(30, 115, 255, 0.10);
  font-weight: 800;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.kpi-card,
.chart-card,
.transactions-card,
.risk-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: 0 14px 34px rgba(31, 75, 140, 0.06);
}

.kpi-card {
  padding: 18px;
}

.kpi-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.kpi-card b {
  display: block;
  margin: 8px 0 6px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.kpi-card small {
  color: var(--success);
  font-weight: 900;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.8fr;
  gap: 14px;
}

.chart-card,
.transactions-card,
.risk-card {
  padding: 20px;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.chart-header span,
.chart-header a {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.line-chart {
  height: 210px;
  padding: 10px 0;
  border-radius: 18px;
  background:
    linear-gradient(rgba(30, 115, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 115, 255, 0.06) 1px, transparent 1px),
    #f8fbff;
  background-size: 48px 48px;
}

.legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.legend span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.legend .blue { background: var(--primary); }
.legend .red { background: var(--danger); }

.tx-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(30, 115, 255, 0.08);
}

.tx-row:last-child {
  border-bottom: 0;
}

.tx-row span {
  color: #334155;
  font-weight: 900;
}

.tx-row b {
  color: var(--text);
}

.tx-row em {
  grid-column: 1 / -1;
  color: var(--success);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.donut {
  width: 150px;
  height: 150px;
  margin: 4px auto 16px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 68%, var(--primary-2) 68% 86%, var(--warning) 86% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(30, 115, 255, 0.1);
}

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.status-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.complete { background: var(--primary); }
.progress { background: var(--primary-2); }
.pending { background: var(--warning); }

.risk-pulse {
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  color: var(--success);
  font-weight: 900;
  background: rgba(22, 199, 132, 0.09);
}

.risk-pulse span {
  display: block;
  margin-top: 4px;
  color: #60816f;
  font-size: 12px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.security-card {
  min-height: 250px;
}

.lock::before { content: "🔒"; color: var(--primary); background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.identity::before { content: "◌"; }
.radar::before { content: "◎"; }
.key::before { content: "◇"; }
.control::before { content: "⚙"; color: var(--primary); background: none; -webkit-background-clip: border-box; background-clip: border-box; }
.audit::before { content: "▤"; }

.license-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 92% 18%, rgba(8, 197, 216, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 100%, rgba(30, 115, 255, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.94));
  border: 1px solid rgba(30, 115, 255, 0.12);
  box-shadow: var(--shadow);
}

.license-checks {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.license-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 800;
}

.license-checks span::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
}

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

.license-badge {
  position: relative;
  z-index: 2;
  width: 280px;
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 28px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.30), transparent 36%),
    linear-gradient(135deg, #ff8b2c, var(--primary) 54%, var(--primary-2));
  box-shadow: 0 30px 70px rgba(30, 115, 255, 0.24);
}

.license-badge span {
  font-size: 46px;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.license-badge b {
  margin-top: 8px;
  font-size: 22px;
}

.license-badge small {
  margin-top: 8px;
  opacity: 0.84;
  font-weight: 800;
}

.license-rings,
.license-rings::before,
.license-rings::after {
  position: absolute;
  border: 1px solid rgba(30, 115, 255, 0.14);
  border-radius: 50%;
}

.license-rings {
  width: 380px;
  height: 380px;
}

.license-rings::before,
.license-rings::after {
  content: "";
  inset: 36px;
}

.license-rings::after {
  inset: 78px;
  border-style: dashed;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trusted::before { content: "✓"; }
.coverage::before { content: "◎"; }
.professional::before { content: "▤"; }
.experience::before { content: "★"; }

.cta-section {
  padding-top: 60px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 40%, rgba(30, 115, 255, 0.18), transparent 24rem),
    linear-gradient(135deg, #f3f8ff, #fff 46%, #edf9ff);
  border: 1px solid rgba(30, 115, 255, 0.13);
  box-shadow: var(--shadow);
}

.cta-illustration {
  position: relative;
  min-height: 220px;
}

.shield-3d {
  position: absolute;
  width: 156px;
  height: 156px;
  left: 48px;
  top: 28px;
  border-radius: 42px 42px 56px 56px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.65), transparent 32%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
  clip-path: polygon(50% 0, 95% 18%, 83% 82%, 50% 100%, 17% 82%, 5% 18%);
  box-shadow: 0 28px 60px rgba(30, 115, 255, 0.28);
}

.shield-3d::before {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 56px;
  font-weight: 900;
}

.mini-phone {
  position: absolute;
  width: 92px;
  height: 142px;
  right: 28px;
  bottom: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(30, 115, 255, 0.14);
  box-shadow: var(--shadow-soft);
  transform: rotate(8deg);
}

.mini-phone::before {
  content: "🔒";
  position: absolute;
  inset: 28px 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #f1f7ff;
  color: var(--primary);
  font-size: 30px;
}

.contact-panel {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(30, 115, 255, 0.11);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(30, 115, 255, 0.16);
  border-radius: 16px;
  background: #f8fbff;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(30, 115, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(30, 115, 255, 0.12);
  background: #fff;
}

.form-note {
  min-height: 22px;
  color: var(--success);
  font-weight: 800;
  margin: 0;
}

.site-footer {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, #f8fbff, #fff);
  border-top: 1px solid rgba(30, 115, 255, 0.09);
}

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

.footer-brand img {
  width: 235px;
}

.footer-brand p,
.footer-col a,
.footer-col span,
.footer-bottom {
  color: var(--muted);
  line-height: 1.65;
}

.footer-brand p {
  max-width: 340px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  font-weight: 900;
  background: rgba(30, 115, 255, 0.08);
  border: 1px solid rgba(30, 115, 255, 0.12);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(30, 115, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    text-align: center;
  }

  .hero-copy,
  .hero-metrics {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

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

  .trust-item.wide {
    grid-column: span 2;
  }

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

  .process-line::before {
    display: none;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .section-side {
    position: static;
  }

  .security-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .risk-card {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 84px;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a {
    justify-content: flex-start;
    padding: 10px 16px;
  }

  .nav-actions {
    display: none;
  }

  .split-heading,
  .contact-panel,
  .license-card,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

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

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

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

  .footer-brand {
    grid-column: span 2;
  }
}

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

  .section-shell,
  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

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

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

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

  .floating-card {
    position: relative;
    width: 100%;
    max-width: 310px;
    transform: none;
  }

  .verified-card {
    left: auto;
    top: auto;
    order: 1;
    margin-bottom: 16px;
  }

  .phone-frame {
    order: 2;
  }

  .bill-card {
    right: auto;
    bottom: auto;
    order: 3;
    margin-top: 16px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
  }

  .slide-btn {
    top: 46%;
  }

  .slide-prev {
    left: 0;
  }

  .slide-next {
    right: 0;
  }

  .trust-grid,
  .feature-grid,
  .process-line,
  .service-grid,
  .analytics-grid,
  .why-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .trust-item.wide,
  .risk-card {
    grid-column: auto;
  }

  .services-layout {
    gap: 18px;
  }

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

  .dash-main {
    padding: 18px;
  }

  .dash-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-card,
  .contact-panel {
    padding: 24px;
  }

  .cta-illustration {
    display: none;
  }

  .footer-grid,
  .footer-brand {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

.nav-login-mobile {
  display: none !important;
}

@media (max-width: 980px) {
  .nav-login-mobile {
    display: flex !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
    justify-content: center !important;
    margin-top: 6px;
  }
}

/* QarAh Pay individual services */
.service-page .site-header {
  background: rgba(255, 255, 255, 0.88);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--primary);
}

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

.service-hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 54px;
  align-items: center;
}

.service-hero-copy h1,
.service-index-copy h1 {
  max-width: 820px;
  margin: 16px 0 22px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.service-hero-copy p,
.service-index-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.service-bullets {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.service-bullets li,
.control-list li,
.usecase-list li {
  position: relative;
  padding-left: 34px;
  color: #334155;
  font-weight: 800;
  line-height: 1.55;
}

.service-bullets li::before,
.control-list li::before,
.usecase-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--success), #0fb879);
  font-size: 12px;
  font-weight: 900;
}

.service-visual-card {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 10%, rgba(30, 115, 255, 0.12), transparent 34%),
    radial-gradient(circle at 80% 88%, rgba(8, 197, 216, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 115, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-visual-orbit,
.service-visual-orbit::before,
.service-visual-orbit::after {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30, 115, 255, 0.14);
}

.service-visual-orbit {
  width: 410px;
  height: 410px;
}

.service-visual-orbit::before,
.service-visual-orbit::after {
  content: "";
  inset: 46px;
}

.service-visual-orbit::after {
  inset: 92px;
  border-style: dashed;
}

.service-phone {
  position: relative;
  z-index: 2;
  width: min(320px, 76vw);
  min-height: 470px;
  padding: 42px 22px 24px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(30, 115, 255, 0.16);
  box-shadow: 0 34px 72px rgba(31, 75, 140, 0.18), inset 0 0 0 8px rgba(255, 255, 255, 0.58);
}

.service-phone-head {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 38px rgba(30, 115, 255, 0.23);
}

.service-phone-head span {
  opacity: 0.85;
  font-size: 12px;
  font-weight: 800;
}

.service-phone-head b {
  font-size: 22px;
  letter-spacing: -0.035em;
}

.service-icon-large {
  width: 116px !important;
  height: 116px !important;
  margin: 28px auto;
  border-radius: 34px;
  font-size: 40px;
}

.service-preview-lines {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.service-preview-lines span {
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(30, 115, 255, 0.08), rgba(8, 197, 216, 0.06));
  border: 1px solid rgba(30, 115, 255, 0.08);
}

.service-float-card {
  position: absolute;
  right: 24px;
  bottom: 34px;
  z-index: 3;
  width: 210px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(30, 115, 255, 0.14);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.service-float-card b {
  display: block;
  margin-bottom: 12px;
}

.service-float-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-float-card span::before {
  content: "✓";
  color: var(--success);
  margin-right: 8px;
}

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

.coverage-card,
.related-card {
  min-height: 122px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(30, 115, 255, 0.08), transparent 52%),
    #fff;
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: 0 14px 38px rgba(31, 75, 140, 0.07);
}

.coverage-card b,
.related-card b {
  letter-spacing: -0.02em;
}

.mini-check {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: start;
}

.service-steps {
  display: grid;
  gap: 16px;
}

.service-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 115, 255, 0.11);
  box-shadow: var(--shadow-soft);
}

.service-step > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: 20px;
  font-weight: 1000;
}

.service-step h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.service-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.payment-preview-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1fr;
  gap: 24px;
  align-items: start;
}

.service-form-card,
.gateway-panel,
.usecase-card {
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(30, 115, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.service-form-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.form-card-head .service-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  flex: 0 0 58px;
}

.form-card-head b {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.form-card-head small {
  color: var(--muted);
  font-weight: 800;
}

.service-form-card label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}

.service-form-card input {
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(30, 115, 255, 0.16);
  border-radius: 18px;
  padding: 0 16px;
  background: #f8fbff;
  color: var(--text);
  outline: none;
}

.service-form-card input:focus {
  border-color: rgba(30, 115, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(30, 115, 255, 0.08);
}

.gateway-panel {
  padding: 26px;
}

.control-list,
.usecase-list {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.mini-transactions {
  margin-top: 24px;
  padding: 22px;
}

.usecase-card {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 197, 216, 0.14), transparent 28rem),
    radial-gradient(circle at 10% 90%, rgba(30, 115, 255, 0.10), transparent 24rem),
    #fff;
}

.usecase-card h2 {
  margin-bottom: 14px;
}

.usecase-card p {
  color: var(--muted);
  line-height: 1.7;
}

.usecase-list {
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.related-card {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.related-card .service-icon {
  width: 66px;
  height: 66px;
}

.related-card small,
.service-card small {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.service-card small {
  margin-top: -4px;
}

.service-card:hover,
.related-card:hover,
.coverage-card:hover,
.service-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(31, 75, 140, 0.11);
}

.service-index-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 34px;
}

.service-index-copy h1,
.service-index-copy p {
  margin-left: auto;
  margin-right: auto;
}

.service-index-grid {
  position: relative;
  z-index: 2;
}

@media (max-width: 1180px) {
  .service-hero-grid,
  .service-detail-grid,
  .payment-preview-grid,
  .usecase-card {
    grid-template-columns: 1fr;
  }

  .service-visual-card {
    min-height: 520px;
  }

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

@media (max-width: 720px) {
  .breadcrumb {
    flex-wrap: wrap;
  }

  .service-hero-copy h1,
  .service-index-copy h1 {
    font-size: clamp(40px, 13vw, 60px);
  }

  .service-visual-card {
    min-height: auto;
    padding: 28px 14px;
  }

  .service-float-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin-top: 18px;
  }

  .coverage-grid,
  .related-grid,
  .usecase-list {
    grid-template-columns: 1fr;
  }

  .service-step {
    grid-template-columns: 1fr;
  }
}


/* Individual services */
.service-detail-body {
  background:
    radial-gradient(circle at 10% 4%, rgba(30, 115, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(8, 197, 216, 0.12), transparent 30rem),
    linear-gradient(180deg, #fff 0%, #f8fbff 48%, #fff 100%);
}

.service-detail-page .section-shell {
  padding-top: 74px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb strong {
  color: var(--text);
}

.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 115, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 115, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.service-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: 56px;
  align-items: center;
}

.service-hero-copy h1 {
  margin: 12px 0 24px;
  max-width: 760px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.service-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #21456f;
  font-weight: 900;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(30, 115, 255, 0.13);
  box-shadow: 0 12px 28px rgba(31, 75, 140, 0.07);
}

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

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30, 115, 255, 0.12);
}

.service-visual::before {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 50% 50%, rgba(30, 115, 255, 0.08), transparent 62%);
}

.service-visual::after {
  width: 620px;
  height: 620px;
  border-style: dashed;
  transform: rotate(-18deg);
}

.service-device {
  position: relative;
  z-index: 2;
  width: min(370px, 86vw);
  min-height: 470px;
  padding: 26px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.9));
  border: 1px solid rgba(30, 115, 255, 0.16);
  box-shadow:
    0 38px 90px rgba(31, 75, 140, 0.18),
    inset 0 0 0 8px rgba(255, 255, 255, 0.58);
}

.service-device::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 30px;
  border: 1px solid rgba(30, 115, 255, 0.07);
  pointer-events: none;
}

.device-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.device-top span,
.detail-icon,
.service-float-card span {
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--accent, var(--primary));
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, color-mix(in srgb, var(--accent, var(--primary)) 45%, transparent), rgba(8, 197, 216, 0.20)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 34px rgba(30, 115, 255, 0.12);
  font-weight: 900;
}

.device-top span {
  width: 56px;
  height: 56px;
  font-size: 25px;
}

.device-top b {
  font-size: 20px;
}

.device-card {
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent, var(--primary)), var(--primary), var(--primary-2));
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent, var(--primary)) 22%, transparent);
}

.device-card small,
.device-card strong {
  display: block;
}

.device-card small {
  opacity: 0.86;
  font-weight: 800;
  margin-bottom: 6px;
}

.device-card strong {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.device-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(30, 115, 255, 0.09);
  color: var(--muted);
  font-weight: 800;
}

.device-row b {
  color: var(--success);
}

.device-button {
  margin-top: 24px;
  min-height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent, var(--primary)), var(--primary-2));
  box-shadow: 0 18px 38px rgba(30, 115, 255, 0.22);
}

.service-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(30, 115, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.service-float-card span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.service-float-card.one {
  left: 0;
  top: 88px;
  transform: rotate(-5deg);
}

.service-float-card.two {
  right: 0;
  bottom: 96px;
  transform: rotate(5deg);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-detail-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.service-mini-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0, rgba(30, 115, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: 0 16px 42px rgba(31, 75, 140, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-mini-card:hover,
.detail-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(31, 75, 140, 0.12);
  border-color: rgba(30, 115, 255, 0.18);
}

.detail-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  font-size: 22px;
}

.service-mini-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.service-mini-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.service-flow-section,
.service-policy-section {
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.76), rgba(255, 255, 255, 0.35));
}

.detail-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.detail-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(30, 115, 255, 0.18), rgba(8, 197, 216, 0.22));
}

.detail-step {
  position: relative;
  min-height: 220px;
  padding: 34px 20px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 115, 255, 0.11);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.detail-step span {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 24px rgba(30, 115, 255, 0.24);
  font-weight: 900;
}

.detail-step h3 {
  margin: 26px 0 12px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.detail-step p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.service-policy-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(8, 197, 216, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 255, 0.92));
  border: 1px solid rgba(30, 115, 255, 0.13);
  box-shadow: 0 28px 80px rgba(31, 75, 140, 0.11);
}

.service-policy-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.service-policy-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-policy-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.service-policy-card li {
  position: relative;
  padding: 15px 16px 15px 48px;
  border-radius: 18px;
  color: #35506f;
  background: #fff;
  border: 1px solid rgba(30, 115, 255, 0.10);
  font-weight: 800;
  line-height: 1.5;
}

.service-policy-card li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 13px;
}

.policy-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.related-grid,
.standalone-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.standalone-service-grid .service-card {
  align-content: center;
}

.standalone-service-grid .service-card small {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .service-detail-grid.compact,
  .related-grid,
  .standalone-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .detail-steps::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .service-hero-grid,
  .service-policy-card {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 500px;
  }

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

@media (max-width: 720px) {
  .service-hero-copy h1 {
    font-size: clamp(36px, 13vw, 52px);
  }

  .service-detail-grid,
  .service-detail-grid.compact,
  .related-grid,
  .standalone-service-grid,
  .detail-steps {
    grid-template-columns: 1fr;
  }

  .service-policy-card {
    padding: 24px;
  }

  .service-float-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    margin-top: 14px;
  }
}


/* QarAh Pay Legal Pages */
.policy-page .service-hero {
  min-height: auto;
}

.policy-hero {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-top: 12px;
}

.policy-hero h1 {
  max-width: 900px;
  margin: 12px 0 24px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.policy-card {
  min-height: 190px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0, rgba(30, 115, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: var(--shadow-soft);
}

.policy-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-card:focus-visible,
.related-card:focus-visible,
.breadcrumb a:focus-visible {
  outline: 3px solid rgba(30, 115, 255, 0.32);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
}


/* QarAh Pay Root Policy Pages */
.policy-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
}

.policy-content-section {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 50%, #fff 100%);
}

.policy-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.policy-content-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(30, 115, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: var(--shadow-soft);
}

.policy-content-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.policy-content-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .policy-hero-grid,
  .policy-content-grid {
    grid-template-columns: 1fr;
  }
}


/* Simple policy document pages */
.policy-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
}

.policy-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.policy-content-card {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0, rgba(30, 115, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 115, 255, 0.10);
  box-shadow: 0 16px 42px rgba(31, 75, 140, 0.07);
}

.policy-content-card h2 {
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.policy-content-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .policy-hero-grid,
  .policy-content-grid {
    grid-template-columns: 1fr;
  }
}

/* Final overrides for individual service layouts */
body.service-page .service-detail-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: start;
}

body.service-page .service-float-card {
  position: absolute;
  right: 24px;
  bottom: 34px;
  left: auto;
  top: auto;
  z-index: 3;
  display: block;
  width: 210px;
  max-width: none;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(30, 115, 255, 0.14);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transform: none;
}

body.service-page .service-float-card b {
  display: block;
  margin-bottom: 12px;
}

body.service-page .service-float-card span {
  display: block;
  width: auto;
  height: auto;
  flex: none;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.service-page .service-float-card span::before {
  content: "✓";
  color: var(--success);
  margin-right: 8px;
}

body.service-page .related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1180px) {
  body.service-page .service-detail-grid {
    grid-template-columns: 1fr;
  }

  body.service-page .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  body.service-page .service-float-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin-top: 18px;
  }

  body.service-page .related-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   QarAh Pay Next-Level Visual Upgrade
   Logo, dedicated service experiences, 3D SVG graphics and
   production-ready payment flows.
   ========================================================= */
.brand img,
.footer-brand img {
  width: 256px;
  height: auto;
  object-fit: contain;
}

.brand {
  min-width: 245px;
}

.nav-wrap {
  gap: 18px;
}

.primary-nav {
  flex-shrink: 0;
}

.industry-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(30, 115, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 34px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,251,255,0.86)),
    var(--service-bg) center/cover no-repeat;
  border: 1px solid rgba(30, 115, 255, 0.14);
  box-shadow: 0 24px 70px rgba(27, 76, 164, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background-image: var(--service-bg);
  background-size: 125%;
  background-position: center;
  opacity: 0.12;
  animation: servicePan 16s ease-in-out infinite alternate;
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 115, 255, 0.28);
  box-shadow: 0 32px 85px rgba(27, 76, 164, 0.16);
}

.showcase-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(30, 58, 138, 0.12));
  transform: translateY(2px);
  animation: softFloat 6s ease-in-out infinite;
}

.showcase-card span,
.service-badges span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(30, 115, 255, 0.08);
  border: 1px solid rgba(30, 115, 255, 0.13);
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.showcase-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.showcase-feature h3 {
  font-size: 30px;
}

.industry-hero {
  position: relative;
  overflow: hidden;
}

.industry-hero::after {
  content: "";
  position: absolute;
  width: min(820px, 70vw);
  height: min(560px, 50vw);
  right: -110px;
  top: 110px;
  background-image: var(--service-bg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.105;
  pointer-events: none;
  animation: servicePan 20s ease-in-out infinite alternate;
}

.service-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 4px;
}

.enhanced-service-visual {
  min-height: 530px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 10%, rgba(255,255,255,.85), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(235,246,255,0.86));
  border: 1px solid rgba(30, 115, 255, 0.14);
  box-shadow: 0 28px 90px rgba(27, 76, 164, 0.14);
  isolation: isolate;
}

.service-art-backdrop {
  position: absolute;
  inset: -20%;
  background-image: var(--service-bg);
  background-size: 112%;
  background-position: center;
  opacity: 0.17;
  z-index: 0;
  animation: servicePan 18s ease-in-out infinite alternate;
}

.service-art-img {
  position: absolute;
  width: min(560px, 86%);
  right: 4%;
  top: 6%;
  z-index: 1;
  filter: drop-shadow(0 28px 36px rgba(30, 58, 138, 0.16));
  animation: softFloat 6.5s ease-in-out infinite;
}

.service-device-float {
  position: absolute;
  left: 7%;
  bottom: 8%;
  z-index: 3;
  width: 265px;
  min-height: 370px;
  transform: rotate(-2deg);
}

.service-metrics {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-metrics article {
  border-radius: 24px;
  padding: 20px 22px;
  background: linear-gradient(135deg, var(--accent, #1e73ff), var(--accent-two, #08c5d8));
  color: #fff;
  box-shadow: 0 18px 40px rgba(30, 115, 255, 0.18);
}

.service-metrics b {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-metrics span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
  opacity: .9;
}

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

.coverage-card,
.service-mini-card,
.related-card,
.service-step {
  background:
    radial-gradient(circle at 15% 0%, rgba(30, 115, 255, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(30, 115, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(31, 75, 140, 0.08);
}

.coverage-card {
  min-height: 116px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-check {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(22, 199, 132, 0.22);
}

.payment-preview-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 55%, #ffffff 100%);
}

.premium-payment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 28px;
}

.service-card-media {
  overflow: hidden;
  isolation: isolate;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 170px;
  height: 130px;
  background: var(--service-bg) center/contain no-repeat;
  opacity: 0.18;
  z-index: -1;
  transform: rotate(-8deg);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-card-media:hover::after {
  opacity: 0.32;
  transform: rotate(-4deg) scale(1.08);
}

.service-index-hero .service-visual {
  min-height: 470px;
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}

@keyframes servicePan {
  0% { transform: translate3d(-10px, -6px, 0) scale(1); background-position: 46% 48%; }
  100% { transform: translate3d(16px, 8px, 0) scale(1.04); background-position: 58% 52%; }
}

@media (max-width: 1180px) {
  .brand { min-width: 215px; }
  .brand img,
  .footer-brand img { width: 225px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .premium-payment-card { grid-template-columns: 1fr; }
  .service-metrics { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .brand { min-width: 180px; }
  .brand img,
  .footer-brand img { width: 205px; }
  .service-metrics,
  .coverage-grid { grid-template-columns: 1fr; }
  .enhanced-service-visual { min-height: 520px; }
  .service-device-float { left: 50%; transform: translateX(-50%) rotate(-1deg); width: min(280px, 82%); }
  .service-art-img { width: 108%; right: -4%; top: 4%; opacity: .92; }
  .showcase-card { min-height: 320px; }
}

/* QarAh Pay next-level visual update: uploaded logo, tagline and service graphics */
.brand.brand-enhanced {
  min-width: 235px;
  gap: 10px;
  align-items: center;
}

.brand.brand-enhanced .brand-symbol {
  width: 62px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(30, 115, 255, 0.18));
}

.brand.brand-enhanced .brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand.brand-enhanced .brand-copy strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--text);
  white-space: nowrap;
}

.brand.brand-enhanced .brand-copy strong em {
  color: var(--primary);
  font-style: normal;
}

.brand.brand-enhanced .brand-copy small {
  margin-top: 8px;
  color: #647799;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-logo {
  min-width: 0 !important;
  margin-bottom: 14px;
}

.footer-logo .brand-symbol {
  width: 58px !important;
  height: 48px !important;
}

.footer-logo .brand-copy strong {
  font-size: 22px !important;
}

.footer-logo .brand-copy small {
  font-size: 9px !important;
}

.contact-direct-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-direct-list a,
.contact-direct-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 115, 255, 0.12);
}

.contact-direct-list a:hover {
  color: var(--primary);
  background: rgba(30, 115, 255, 0.06);
}

.home-visual-showcase {
  padding-top: 60px;
  background:
    radial-gradient(circle at 88% 8%, rgba(8, 197, 216, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

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

.visual-service-row a {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: 22px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(30, 115, 255, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.visual-service-row img {
  position: absolute;
  inset: 14px 14px auto 14px;
  width: calc(100% - 28px);
  height: 230px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(31, 75, 140, 0.12);
  transition: transform 520ms ease;
  z-index: -1;
}

.visual-service-row a:hover img {
  transform: translateY(-6px) scale(1.035);
}

.visual-service-row b {
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.visual-service-row span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.immersive-service-hero {
  overflow: hidden;
}

.service-scroll-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
  background-repeat: repeat-x;
  background-size: auto 76%;
  background-position: center bottom;
  animation: serviceBackdropMove 52s linear infinite;
  pointer-events: none;
}

.service-theme-travel .service-scroll-bg { background-image: url("assets/service-travel.svg"); }
.service-theme-education .service-scroll-bg { background-image: url("assets/service-education.svg"); }
.service-theme-fastag .service-scroll-bg { background-image: url("assets/service-fastag.svg"); }
.service-theme-insurance .service-scroll-bg { background-image: url("assets/service-insurance.svg"); }
.service-theme-gas .service-scroll-bg { background-image: url("assets/service-gas.svg"); }
.service-theme-dth .service-scroll-bg { background-image: url("assets/service-dth.svg"); }
.service-theme-municipal-tax .service-scroll-bg { background-image: url("assets/service-municipal-tax.svg"); }
.service-theme-electricity .service-scroll-bg { background-image: url("assets/service-electricity.svg"); }
.service-theme-water .service-scroll-bg { background-image: url("assets/service-water.svg"); }
.service-theme-mobile-recharge .service-scroll-bg { background-image: url("assets/service-mobile-recharge.svg"); }
.service-theme-broadband .service-scroll-bg { background-image: url("assets/service-broadband.svg"); }
.service-theme-loan-repayment .service-scroll-bg { background-image: url("assets/service-loan-repayment.svg"); }

@keyframes serviceBackdropMove {
  from { background-position: 0% bottom; }
  to { background-position: 1500px bottom; }
}

.premium-visual-card {
  min-height: 560px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.premium-visual-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(30, 115, 255, 0.10), transparent 34%),
    radial-gradient(circle at 80% 74%, rgba(8, 197, 216, 0.12), transparent 36%);
  border: 1px solid rgba(30, 115, 255, 0.10);
  z-index: 0;
}

.service-hero-image {
  position: relative;
  z-index: 1;
  width: 88%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(31, 75, 140, 0.18);
  transform: rotate(-2deg);
}

.service-phone-overlay {
  position: absolute;
  right: 24px;
  top: 56px;
  z-index: 3;
  width: 210px;
  min-height: 330px;
  transform: rotate(3deg);
  box-shadow: 0 22px 60px rgba(31, 75, 140, 0.18);
}

.service-showcase-section {
  background: linear-gradient(180deg, #fff 0%, #f4f9ff 100%);
  padding-top: 70px;
}

.visual-showcase {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  min-height: 430px;
  border-radius: 40px;
  border: 1px solid rgba(30, 115, 255, 0.12);
  background:
    radial-gradient(circle at 10% 10%, rgba(30, 115, 255, 0.10), transparent 40%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.showcase-copy {
  padding: 34px;
}

.showcase-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.showcase-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.showcase-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.showcase-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
  background: rgba(30, 115, 255, 0.08);
  border: 1px solid rgba(30, 115, 255, 0.12);
}

.showcase-media {
  overflow: hidden;
  min-height: 310px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(30, 115, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.image-marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 22px;
  animation: imageMarquee 26s linear infinite;
}

.image-marquee img {
  width: 430px;
  height: 270px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(31, 75, 140, 0.12);
}

@keyframes imageMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-448px); }
}

.service-index-page .service-index-hero {
  overflow: hidden;
}

.visual-service-grid .service-card,
.service-index-tile {
  position: relative;
  min-height: 315px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
  overflow: hidden;
}

.service-index-tile img {
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: 180px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(31, 75, 140, 0.10);
  transition: transform 500ms ease;
}

.service-index-tile:hover img {
  transform: scale(1.04) translateY(-4px);
}

.service-index-tile .service-icon {
  margin-top: 188px;
}

.related-card {
  overflow: hidden;
}

.related-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 12px 30px rgba(31, 75, 140, 0.10);
}

body.service-page .related-card .service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}

body.service-page .usecase-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(30, 115, 255, 0.10), transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(8, 197, 216, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.88);
}

@media (prefers-reduced-motion: reduce) {
  .service-scroll-bg,
  .image-marquee {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .visual-service-row,
  .visual-showcase {
    grid-template-columns: 1fr;
  }

  .visual-service-row a {
    min-height: 330px;
  }
}

@media (max-width: 860px) {
  .brand.brand-enhanced {
    min-width: 0;
  }

  .brand.brand-enhanced .brand-symbol {
    width: 54px;
    height: 44px;
  }

  .brand.brand-enhanced .brand-copy strong {
    font-size: 19px;
  }

  .brand.brand-enhanced .brand-copy small {
    font-size: 8px;
    letter-spacing: 1.35px;
  }

  .visual-service-row {
    grid-template-columns: 1fr;
  }

  .premium-visual-card {
    min-height: 430px;
  }

  .service-phone-overlay {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 250px);
    margin-top: -50px;
  }

  .service-hero-image {
    width: 100%;
  }

  .showcase-copy {
    padding: 12px;
  }

  .image-marquee img {
    width: 330px;
    height: 220px;
  }
}

@media (max-width: 520px) {
  .brand.brand-enhanced .brand-copy small {
    display: none;
  }

  .brand.brand-enhanced .brand-copy strong {
    font-size: 18px;
  }

  .brand.brand-enhanced .brand-symbol {
    width: 46px;
    height: 40px;
  }

  .service-index-tile img {
    height: 150px;
  }

  .service-index-tile .service-icon {
    margin-top: 156px;
  }
}


/* QarAh Pay Next Level Upgrade */
.brand { min-width: 240px; }
.brand img { width: 230px; max-height: 82px; object-fit: contain; }
.footer-brand img { width: 230px; max-height: 90px; object-fit: contain; }
.hero-visual::after { content: ""; position: absolute; inset: auto 8% -5% auto; width: 250px; height: 250px; background: url("assets/illustrations/platform-orbit.svg") center/contain no-repeat; opacity: .18; pointer-events: none; }
.service-card { position: relative; overflow: hidden; min-height: 205px; }
.service-card-art { width: 128px; height: 94px; object-fit: cover; border-radius: 22px; box-shadow: 0 18px 38px rgba(31, 75, 140, 0.12); transition: transform 220ms ease; }
.service-card:hover .service-card-art { transform: translateY(-4px) scale(1.04); }
.service-card .service-icon { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: 0 10px 24px rgba(31, 75, 140, 0.08); }
.service-card .service-icon::before { font-size: 18px; }
.service-card b { font-size: 16px; }
.service-card small { max-width: 190px; color: var(--muted); line-height: 1.45; text-align: center; }
.service-index-card { min-height: 285px; padding: 22px; }
.service-index-card .service-card-art { width: min(100%, 220px); height: 150px; }
.visual-showcase-section { background: linear-gradient(180deg, #fff 0%, #f5f9ff 48%, #fff 100%); }
.showcase-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 26px; align-items: stretch; margin-bottom: 22px; }
.showcase-screen, .showcase-copy-card { border-radius: 34px; background: rgba(255,255,255,.9); border: 1px solid rgba(30, 115, 255, .12); box-shadow: var(--shadow-soft); overflow: hidden; }
.showcase-screen { min-height: 420px; display: grid; place-items: center; background: radial-gradient(circle at 30% 10%, rgba(30, 115, 255, .10), transparent 44%), #fff; }
.showcase-screen img { width: 100%; height: 100%; object-fit: cover; }
.showcase-copy-card { padding: clamp(26px, 4vw, 42px); display: flex; flex-direction: column; justify-content: center; }
.showcase-copy-card h3 { margin: 10px 0 14px; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -.05em; }
.showcase-copy-card p { color: var(--muted); line-height: 1.75; }
.showcase-links { display: grid; gap: 10px; margin-top: 20px; }
.showcase-links a { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 0 18px; border-radius: 18px; color: var(--primary); font-weight: 900; background: rgba(30, 115, 255, .07); border: 1px solid rgba(30, 115, 255, .12); }
.media-shower { overflow: hidden; border-radius: 34px; padding: 18px; background: rgba(255,255,255,.84); border: 1px solid rgba(30, 115, 255, .12); box-shadow: var(--shadow-soft); }
.media-track { display: flex; gap: 18px; width: max-content; animation: qarah-marquee 38s linear infinite; }
.media-shower:hover .media-track { animation-play-state: paused; }
.media-tile { width: 220px; min-height: 220px; padding: 12px; border-radius: 26px; background: #fff; border: 1px solid rgba(30, 115, 255, .10); box-shadow: 0 12px 30px rgba(31,75,140,.07); display: grid; align-content: center; gap: 10px; text-align: center; }
.media-tile img { width: 100%; height: 150px; object-fit: cover; border-radius: 20px; }
.media-tile b { font-size: 15px; }
@keyframes qarah-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.contact-detail-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-detail-list a, .contact-detail-list div { display: grid; gap: 4px; padding: 18px; border-radius: 20px; background: rgba(30,115,255,.06); border: 1px solid rgba(30,115,255,.11); }
.contact-detail-list b { color: var(--text); }
.contact-detail-list span { color: var(--muted); line-height: 1.55; font-weight: 700; }
.service-hero-next { isolation: isolate; }
.service-scroll-bg { position: absolute; inset: 140px 0 auto; z-index: 0; display: flex; gap: 26px; opacity: .08; pointer-events: none; animation: qarah-bg-scroll 44s linear infinite; }
.service-scroll-bg img { width: 320px; height: 260px; object-fit: cover; border-radius: 32px; }
@keyframes qarah-bg-scroll { from { transform: translateX(0); } to { transform: translateX(-360px); } }
.service-visual-card-next { min-height: 610px; }
.service-art-hero { position: absolute; left: 34px; top: 42px; width: min(62%, 360px); border-radius: 34px; box-shadow: 0 32px 80px rgba(31,75,140,.18); transform: rotate(-4deg); z-index: 2; }
.mini-service-phone { width: min(290px, 72vw); min-height: 430px; transform: translate(88px, 42px) rotate(3deg); }
.enhanced-service-page .service-float-card { right: 32px !important; bottom: 30px !important; }
.related-art { width: 100%; height: 108px; object-fit: cover; border-radius: 20px; margin-bottom: 8px; }
.center-actions { justify-content: center; }
.standalone-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.policy-content-card a, .policy-card a { color: var(--primary); font-weight: 900; }
@media (max-width: 1180px) {
  .brand { min-width: 210px; }
  .brand img { width: 210px; }
  .showcase-grid, .standalone-service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-art-hero { position: relative; left: auto; top: auto; width: min(100%, 360px); transform: none; }
  .mini-service-phone { transform: none; }
}
@media (max-width: 720px) {
  .brand { min-width: 170px; }
  .brand img { width: 176px; }
  .showcase-grid, .standalone-service-grid { grid-template-columns: 1fr; }
  .showcase-screen { min-height: 280px; }
  .media-tile { width: 185px; min-height: 190px; }
  .media-tile img { height: 120px; }
  .service-card { min-height: 190px; }
  .service-card-art { width: 118px; height: 86px; }
}


/* Production polish updates */
.contact-detail-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 800;
}

.contact-detail-list a,
.contact-detail-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  line-height: 1.55;
}

.service-hero-art {
  position: absolute;
  width: min(58%, 360px);
  left: 28px;
  bottom: 34px;
  z-index: 1;
  filter: drop-shadow(0 30px 44px rgba(30, 115, 255, 0.18));
  animation: floatVisual 6s ease-in-out infinite;
}

.service-phone-overlay {
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.pay-preview-link {
  display: grid;
  place-items: center;
  text-decoration: none;
}

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

.service-index-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 24px;
  display: grid;
  grid-template-rows: 140px 1fr;
  gap: 16px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(244,249,255,.92));
  border: 1px solid rgba(30, 115, 255, 0.12);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.service-index-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -38% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,115,255,.16), transparent 70%);
}

.service-index-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(30,115,255,.15));
}

.service-index-card h3 {
  margin: 0 0 8px;
}

.service-index-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.service-index-card span {
  color: var(--primary);
  font-weight: 1000;
}

@keyframes floatVisual {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@media (max-width: 980px) {
  .brand { min-width: 205px; }
  .brand img { width: 205px; }
  .service-index-grid { grid-template-columns: repeat(2, 1fr); }
  .service-hero-art { position: relative; width: 80%; left: auto; bottom: auto; margin: 10px auto; }
}

@media (max-width: 720px) {
  .brand { min-width: 170px; }
  .brand img { width: 170px; }
  .service-index-grid { grid-template-columns: 1fr; }
}


/* Production polish: payment-mode symbols, cleaner service spotlight, logo refinement */
.brand img { width: 270px; }
.footer-brand img { width: 245px; }
.hero-payment-logos { margin-top: 22px; }
.hero-payment-logos > span { display: block; margin-bottom: 10px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.payment-badges img { width: 112px; height: auto; border-radius: 14px; transition: transform 180ms ease, filter 180ms ease; }
.payment-badges.compact img { width: 86px; }
.payment-badges img:hover { transform: translateY(-2px); filter: drop-shadow(0 12px 20px rgba(30,115,255,.14)); }
.payment-mode-panel { display: grid; grid-template-columns: .72fr 1fr; gap: 28px; align-items: center; padding: clamp(24px,4vw,42px); border-radius: 34px; background: radial-gradient(circle at 85% 10%, rgba(8,197,216,.13), transparent 44%), linear-gradient(145deg, rgba(255,255,255,.96), rgba(244,249,255,.9)); border: 1px solid rgba(30,115,255,.13); box-shadow: var(--shadow-soft); }
.payment-mode-panel h2 { margin: 8px 0 12px; font-size: clamp(26px, 3.2vw, 42px); line-height: 1.06; letter-spacing: -.045em; }
.payment-mode-panel p { color: var(--muted); line-height: 1.72; }
.payment-logo-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.payment-logo-grid img { width: 100%; min-height: 74px; object-fit: contain; border-radius: 18px; }
.payment-method-section { background: linear-gradient(180deg, #fff 0%, #f6faff 100%); }
.service-spotlight-section { background: linear-gradient(180deg, #fff 0%, #f5f9ff 52%, #fff 100%); }
.service-spotlight-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 22px; margin-bottom: 28px; }
.spotlight-card { position: relative; overflow: hidden; min-height: 380px; padding: 22px; display: grid; grid-template-rows: 190px 1fr; gap: 16px; border-radius: 34px; background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(244,249,255,.9)); border: 1px solid rgba(30,115,255,.12); box-shadow: var(--shadow-soft); color: var(--text); }
.spotlight-card::before { content: ""; position: absolute; inset: auto -12% -28% auto; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(30,115,255,.16), transparent 68%); }
.spotlight-card img { width: 100%; height: 190px; object-fit: contain; filter: drop-shadow(0 24px 36px rgba(30,115,255,.16)); transition: transform 220ms ease; }
.spotlight-card:hover img { transform: translateY(-6px) scale(1.02); }
.spotlight-card span { display: inline-flex; width: fit-content; padding: 8px 12px; border-radius: 999px; color: var(--primary); background: rgba(30,115,255,.08); font-weight: 1000; }
.spotlight-card h3 { margin: 12px 0 10px; font-size: clamp(22px,2vw,30px); line-height: 1.1; letter-spacing: -.04em; }
.spotlight-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.spotlight-feature { min-height: 420px; }
.service-form-card .payment-badges { margin-top: 16px; }
.service-hero-copy .payment-badges { margin-top: 18px; }
.form-card-head small { color: var(--muted); }
.hero-visual .phone-frame { transform: translateX(16px); }
.verified-card { left: -22px; top: 86px; width: 198px; }
.bill-card { right: -24px; bottom: 100px; }
.service-index-page .service-hero-art { width: min(72%, 460px); left: 12%; bottom: 54px; border-radius: 18px; }
@media (max-width: 1100px) {
  .service-spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-card, .spotlight-feature { min-height: auto; }
  .payment-mode-panel { grid-template-columns: 1fr; }
  .payment-logo-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-visual .phone-frame { transform: none; }
}
@media (max-width: 980px) {
  .brand img { width: 225px; }
  .payment-badges img { width: 98px; }
  .payment-badges.compact img { width: 78px; }
}
@media (max-width: 640px) {
  .brand img { width: 184px; }
  .footer-brand img { width: 205px; }
  .payment-logo-grid { grid-template-columns: 1fr; }
  .payment-badges img, .payment-badges.compact img { width: 92px; }
  .verified-card { left: 0; top: 60px; }
  .bill-card { right: 0; bottom: 62px; }
}


/* Official partner logos */
.official-logo-strip { margin-top: 16px; padding: 16px 18px; border: 1px solid rgba(30,115,255,.12); border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 18px 40px rgba(30,115,255,.08); }
.official-logo-strip > span { display:block; margin-bottom: 10px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.official-logo-grid { display:flex; flex-wrap:wrap; align-items:center; gap:14px; }
.official-logo-item { display:flex; align-items:center; justify-content:center; min-height:62px; padding:10px 16px; border-radius:18px; background:#fff; border:1px solid #dbeafe; box-shadow: 0 10px 24px rgba(30,115,255,.08); }
.official-logo-item img { height:38px; width:auto; display:block; object-fit:contain; }
.official-logo-item.fastag img { height:34px; }
.official-logo-item.npci img { height:44px; }
.official-logo-item.bharat img { height:42px; }
.trust-logo-card { display:flex; align-items:center; gap:14px; }
.trust-badge-logo { width:124px; max-width:100%; height:auto; display:block; border-radius:18px; }
.license-badge.license-badge-official { width:min(340px, 100%); min-height:246px; padding:24px; border-radius:30px; background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,248,255,.96)); color:#071a44; box-shadow: 0 26px 60px rgba(30,115,255,.16); border:1px solid rgba(30,115,255,.12); }
.license-badge-official .license-logo-main { max-width: 220px; width: 100%; height: auto; margin-bottom: 14px; }
.license-badge-official b { margin-top:0; font-size:20px; color:#071a44; }
.license-badge-official small { margin-top:4px; color:#607089; opacity:1; }
.license-badge-official .license-partner-logos { display:flex; justify-content:center; align-items:center; gap:12px; margin-top:16px; flex-wrap:wrap; }
.license-badge-official .license-partner-logos .logo-pill { padding:10px 14px; border-radius:18px; background:#fff; border:1px solid #dbeafe; box-shadow: 0 8px 18px rgba(30,115,255,.08); }
.license-badge-official .license-partner-logos img { max-height:28px; width:auto; object-fit:contain; }
.partner-highlight { margin-top:18px; display:grid; grid-template-columns: 1.1fr .9fr; gap:20px; align-items:center; padding:24px; border-radius:28px; background:linear-gradient(135deg, rgba(250,252,255,.96), rgba(241,248,255,.96)); border:1px solid rgba(30,115,255,.12); box-shadow: 0 20px 45px rgba(30,115,255,.08); }
.partner-highlight-copy h3 { margin:6px 0 8px; font-size:clamp(1.6rem, 2vw, 2rem); }
.partner-highlight-copy p { margin:0; color:#5b6b84; }
.partner-highlight-logos { display:flex; flex-wrap:wrap; gap:14px; justify-content:flex-end; }
.partner-highlight-logos .official-logo-item img { height:34px; }
.fastag-brand-note { display:flex; align-items:center; gap:12px; margin-top:18px; padding:14px 16px; border-radius:22px; background:#fff; border:1px solid #dbeafe; box-shadow: 0 14px 30px rgba(30,115,255,.08); width:max-content; max-width:100%; }
.fastag-brand-note img { height:30px; width:auto; object-fit:contain; }
.fastag-brand-note span { color:#071a44; font-weight:800; }
@media (max-width: 860px) { .partner-highlight { grid-template-columns:1fr; } .partner-highlight-logos { justify-content:flex-start; } .official-logo-grid, .license-badge-official .license-partner-logos { gap:10px; } .official-logo-item { min-height:56px; } .official-logo-item img { height:30px; } .official-logo-item.npci img { height:36px; } .official-logo-item.bharat img { height:34px; } .license-badge.license-badge-official { padding:20px; } .trust-logo-card { flex-direction:column; align-items:flex-start; } }


/* Production V4 refinements: premium network terminology and futuristic visuals */
.official-logo-strip {
  background:
    radial-gradient(circle at 12% 18%, rgba(30,115,255,.08), transparent 12rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,252,255,.92));
}
.official-logo-strip > span {
  color: #1e73ff;
  letter-spacing: .16em;
}
.official-logo-item {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.official-logo-item:hover {
  transform: translateY(-4px) rotateX(4deg);
  border-color: rgba(30,115,255,.28);
  box-shadow: 0 22px 45px rgba(30,115,255,.14);
}
.network-assurance {
  margin: 10px 0 0;
  font-size: .92rem;
  color: #64748b;
  font-weight: 700;
}
.ecosystem-showcase-section {
  padding-top: 36px;
}
.ecosystem-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(30,115,255,.13);
  border-radius: 42px;
  background:
    radial-gradient(circle at 86% 16%, rgba(8,197,216,.20), transparent 23rem),
    radial-gradient(circle at 10% 92%, rgba(30,115,255,.13), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,250,255,.94));
  box-shadow: 0 34px 80px rgba(30,115,255,.12);
}
.ecosystem-showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(rgba(30,115,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,115,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 80% 46%, #000 0, transparent 62%);
  pointer-events: none;
}
.ecosystem-copy, .ecosystem-stage { position: relative; z-index: 1; }
.ecosystem-copy h2 {
  max-width: 760px;
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: .94;
  letter-spacing: -.07em;
}
.ecosystem-copy p {
  max-width: 720px;
  color: #5b6b84;
  font-size: 1.08rem;
  line-height: 1.75;
}
.ecosystem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.ecosystem-pills span {
  padding: 11px 14px;
  border-radius: 999px;
  color: #0f2b66;
  font-weight: 900;
  background: rgba(255,255,255,.86);
  border: 1px solid #dbeafe;
  box-shadow: 0 12px 24px rgba(30,115,255,.08);
}
.ecosystem-stage {
  min-height: 470px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}
.ecosystem-stage::before,
.ecosystem-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30,115,255,.14);
  animation: ecosystemSpin 18s linear infinite;
}
.ecosystem-stage::before { width: 390px; height: 390px; }
.ecosystem-stage::after { width: 290px; height: 290px; animation-direction: reverse; border-style: dashed; }
.ecosystem-core {
  position: relative;
  z-index: 3;
  width: 210px;
  min-height: 210px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 24px;
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(238,247,255,.92));
  border: 1px solid rgba(30,115,255,.16);
  box-shadow: 0 36px 70px rgba(30,115,255,.18);
  transform: rotateX(8deg) rotateY(-8deg);
}
.ecosystem-core img { width: 82px; height: 82px; object-fit: contain; margin-bottom: 12px; filter: drop-shadow(0 14px 18px rgba(30,115,255,.18)); }
.ecosystem-core b { font-size: 1.35rem; color: #071a44; }
.ecosystem-core small { margin-top: 4px; color: #64748b; font-weight: 800; text-align: center; }
.orbit-logo {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 132px;
  min-height: 74px;
  padding: 12px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(30,115,255,.14);
  box-shadow: 0 24px 55px rgba(30,115,255,.16);
  backdrop-filter: blur(12px);
  animation: orbitFloat 6s ease-in-out infinite;
}
.orbit-logo img { max-width: 104px; max-height: 44px; object-fit: contain; }
.orbit-logo.npci { top: 32px; left: 50%; transform: translateX(-50%); width: 170px; }
.orbit-logo.bharat { right: 12px; top: 132px; width: 158px; animation-delay: -.8s; }
.orbit-logo.upi { right: 64px; bottom: 44px; width: 132px; animation-delay: -1.6s; }
.orbit-logo.fastag { left: 26px; bottom: 74px; width: 172px; animation-delay: -2.4s; }
.orbit-logo.cards { left: 14px; top: 142px; width: 140px; animation-delay: -3.2s; }
.ecosystem-rails {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ecosystem-rails span {
  position: absolute;
  left: 16%; right: 14%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(30,115,255,.28), rgba(8,197,216,.32), transparent);
  filter: blur(.2px);
  animation: railMove 4.4s linear infinite;
}
.ecosystem-rails span:nth-child(1) { top: 34%; }
.ecosystem-rails span:nth-child(2) { top: 50%; animation-delay: -1.4s; }
.ecosystem-rails span:nth-child(3) { top: 66%; animation-delay: -2.8s; }
.payment-mode-panel {
  background:
    radial-gradient(circle at 92% 18%, rgba(8,197,216,.12), transparent 14rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,250,255,.94));
}
.payment-logo-grid img[src*="official-logos"],
.payment-badges img[src*="official-logos"] {
  background: #fff;
  padding: 10px;
  border: 1px solid #dbeafe;
  box-shadow: 0 12px 26px rgba(30,115,255,.08);
}
@keyframes ecosystemSpin { to { transform: rotate(360deg); } }
@keyframes orbitFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@keyframes railMove {
  0% { transform: translateX(-18%) scaleX(.6); opacity: 0; }
  18%, 72% { opacity: 1; }
  100% { transform: translateX(18%) scaleX(1); opacity: 0; }
}
@media (max-width: 980px) {
  .ecosystem-showcase { grid-template-columns: 1fr; }
  .ecosystem-stage { min-height: 420px; }
}
@media (max-width: 620px) {
  .ecosystem-stage { min-height: 360px; transform: scale(.88); transform-origin: center; }
  .orbit-logo { width: 118px; min-height: 64px; }
  .orbit-logo.npci { width: 150px; }
  .orbit-logo.bharat { width: 142px; right: -6px; }
  .orbit-logo.fastag { width: 152px; left: -4px; }
  .ecosystem-core { width: 178px; min-height: 178px; }
}


/* Production V5 layout polish: balanced logo placement and premium visual scale */
.hero-grid {
  align-items: center;
}
.hero-content {
  max-width: 760px;
}
.hero-copy {
  max-width: 720px;
}
.hero-payment-logos {
  max-width: 620px;
  margin-top: 22px;
}
.hero-payment-logos .payment-badges {
  gap: 8px;
}
.hero-payment-logos .payment-badges.compact img {
  width: auto;
  height: 42px;
  max-width: 116px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 14px rgba(30,115,255,.08));
}
.hero-payment-logos .payment-badges.compact img[src*="bharat-connect"] {
  height: 46px;
  max-width: 124px;
  padding: 6px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dbeafe;
}
.hero-payment-logos .payment-badges.compact img[src*="cards"],
.hero-payment-logos .payment-badges.compact img[src*="netbanking"],
.hero-payment-logos .payment-badges.compact img[src*="wallet"] {
  height: 44px;
  max-width: 122px;
}
.trust-strip {
  padding-top: 18px;
}
.trust-grid {
  align-items: stretch;
}
.trust-item.wide {
  min-width: 260px;
}
.trust-badge-logo {
  width: 112px;
}
.partner-highlight {
  margin-top: 0;
  padding: clamp(22px, 3vw, 34px);
  grid-template-columns: minmax(0, 1fr) auto;
}
.partner-highlight-copy h3 {
  max-width: 720px;
  font-size: clamp(1.75rem, 2.4vw, 2.65rem);
  line-height: 1.08;
}
.partner-highlight-logos .official-logo-item {
  min-width: 160px;
}
.ecosystem-showcase-section {
  padding-top: 24px;
}
.ecosystem-showcase {
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(30px, 4.5vw, 52px);
}
.ecosystem-copy h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  line-height: .98;
  max-width: 680px;
}
.ecosystem-copy p {
  max-width: 660px;
  font-size: 1.02rem;
}
.ecosystem-stage {
  min-height: 430px;
}
.ecosystem-stage::before { width: 350px; height: 350px; }
.ecosystem-stage::after { width: 250px; height: 250px; }
.ecosystem-core {
  width: 190px;
  min-height: 190px;
}
.ecosystem-core img {
  width: 70px;
  height: 70px;
}
.orbit-logo {
  width: 124px;
  min-height: 66px;
  padding: 10px 14px;
}
.orbit-logo img { max-width: 102px; max-height: 38px; }
.orbit-logo.npci { width: 158px; top: 28px; }
.orbit-logo.bharat { width: 148px; right: 20px; top: 124px; }
.orbit-logo.upi { width: 122px; right: 72px; bottom: 46px; }
.orbit-logo.fastag { width: 164px; left: 36px; bottom: 72px; }
.orbit-logo.cards { width: 132px; left: 28px; top: 140px; }
.payment-mode-panel {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(26px, 4vw, 48px);
}
.payment-mode-panel h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  max-width: 680px;
}
.payment-mode-panel p {
  max-width: 620px;
}
.payment-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.payment-logo-cell {
  min-height: 118px;
  padding: 18px 20px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid #dbeafe;
  box-shadow: 0 18px 38px rgba(30,115,255,.09);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.payment-logo-cell:hover {
  transform: translateY(-5px);
  border-color: rgba(30,115,255,.30);
  box-shadow: 0 26px 52px rgba(30,115,255,.15);
}
.payment-logo-grid .payment-logo-cell img,
.payment-logo-grid .payment-logo-cell img[src*="official-logos"] {
  width: auto;
  min-height: 0;
  height: auto;
  max-width: 88%;
  max-height: 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}
.payment-logo-cell.upi img { max-height: 62px; max-width: 86%; }
.payment-logo-cell.bharat img { max-height: 64px; max-width: 92%; }
.payment-logo-cell.npci img { max-height: 58px; max-width: 92%; }
.payment-logo-cell.fastag img { max-height: 50px; max-width: 96%; }
.payment-logo-cell.cards img,
.payment-logo-cell.netbanking img,
.payment-logo-cell.wallet img { max-height: 58px; max-width: 92%; }
.official-logo-strip {
  padding: 14px 16px;
}
.official-logo-strip > span {
  font-size: 11px;
}
.official-logo-grid {
  gap: 10px;
}
.official-logo-item {
  min-height: 58px;
  padding: 9px 14px;
}
.official-logo-item.upi img { height: 36px; }
.official-logo-item.npci img { height: 38px; }
.official-logo-item.bharat img { height: 38px; }
.official-logo-item.fastag img { height: 30px; }
.service-hero-copy .official-logo-strip {
  max-width: 720px;
}
.service-spotlight-grid {
  gap: 24px;
}
.spotlight-card {
  min-height: 350px;
  grid-template-rows: 170px 1fr;
}
.spotlight-card img {
  height: 170px;
}
.license-badge.license-badge-official {
  width: min(320px, 100%);
  min-height: 230px;
}
.license-badge-official .license-logo-main {
  max-width: 210px;
}
@media (max-width: 1180px) {
  .payment-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ecosystem-showcase { grid-template-columns: 1fr; }
  .ecosystem-stage { min-height: 410px; }
}
@media (max-width: 980px) {
  .partner-highlight { grid-template-columns: 1fr; }
  .partner-highlight-logos { justify-content: flex-start; }
  .hero-payment-logos .payment-badges.compact img { height: 38px; max-width: 106px; }
}
@media (max-width: 640px) {
  .payment-logo-grid { grid-template-columns: 1fr; }
  .payment-logo-cell { min-height: 98px; }
  .hero-payment-logos .payment-badges.compact img { height: 34px; max-width: 96px; }
  .ecosystem-copy h2 { font-size: clamp(2rem, 12vw, 3.15rem); }
  .ecosystem-stage { min-height: 340px; }
}


/* v6 partner and official payment refinements */
.hero-payment-logos > span { margin-bottom: 12px; }
.hero-payment-logos .payment-badges { gap: 10px; }
.hero-payment-logos .payment-badges.compact img { height: 40px; max-width: 108px; border-radius: 12px; }
.hero-payment-logos .payment-badges.compact img[src*="cards-official"],
.hero-payment-logos .payment-badges.compact img[src*="bank-official"],
.hero-payment-logos .payment-badges.compact img[src*="wallet-official"] { background:#fff; border:1px solid #dbeafe; padding:4px 8px; box-shadow:0 10px 20px rgba(30,115,255,.08); }
.hero-payment-logos .payment-badges.compact img[src*="cards-official"] { max-width: 122px; height: 46px; }
.hero-payment-logos .payment-badges.compact img[src*="bank-official"] { max-width: 98px; height: 46px; }
.hero-payment-logos .payment-badges.compact img[src*="wallet-official"] { max-width: 58px; height: 52px; padding:2px; }
.payment-mode-panel { align-items:center; }
.payment-logo-grid { gap: 18px; }
.payment-logo-cell { min-height: 128px; padding: 16px 18px; overflow:hidden; }
.payment-logo-cell img, .payment-logo-grid .payment-logo-cell img[src*="official-logos"] { max-width: 90%; max-height: 62px; border-radius: 12px; }
.payment-logo-cell.upi img { max-width: 82%; max-height: 78px; }
.payment-logo-cell.bharat img { max-width: 88%; max-height: 72px; }
.payment-logo-cell.npci img { max-width: 88%; max-height: 62px; }
.payment-logo-cell.cards img { max-width: 90%; max-height: 86px; border-radius: 16px; }
.payment-logo-cell.netbanking img { max-width: 76%; max-height: 86px; background:transparent; }
.payment-logo-cell.wallet img { max-width: 42%; max-height: 84px; background:transparent; }
.trusted-partners-section { padding-top: 8px; }
.trusted-partners-panel { display:grid; grid-template-columns: minmax(0,.78fr) minmax(0,1fr); gap: clamp(22px, 4vw, 46px); padding: clamp(24px, 4vw, 40px); border-radius: 34px; background: linear-gradient(135deg, rgba(248,251,255,.96), rgba(238,248,255,.96)); border:1px solid rgba(30,115,255,.12); box-shadow:0 20px 50px rgba(30,115,255,.08); }
.trusted-partners-copy h2 { margin: 8px 0 10px; font-size: clamp(2rem, 3.2vw, 3.5rem); line-height:1; max-width: 620px; }
.trusted-partners-copy p { margin:0; color:#5b6b84; max-width: 580px; }
.partner-chip-grid { display:flex; flex-wrap:wrap; gap:14px; align-content:flex-start; }
.partner-chip { display:flex; align-items:center; justify-content:center; min-height:68px; padding:12px 18px; border-radius: 22px; background:#fff; border:1px solid #dbeafe; box-shadow: 0 14px 28px rgba(30,115,255,.08); color:#071a44; font-weight:800; font-size:1rem; }
.partner-chip.brand { min-width: 190px; padding: 12px 20px; }
.partner-chip img { max-height: 34px; width:auto; object-fit:contain; }
.partner-chip.brand.npci img { max-height: 38px; }
.partner-chip.brand.bharat img { max-height: 40px; }
@media (max-width: 1180px) { .trusted-partners-panel { grid-template-columns: 1fr; } }
@media (max-width: 980px) { .hero-payment-logos .payment-badges.compact img[src*="wallet-official"] { max-width: 54px; height: 46px; } }
@media (max-width: 640px) { .payment-logo-cell { min-height: 108px; } .trusted-partners-copy h2 { font-size: clamp(1.8rem, 10vw, 2.8rem); } .partner-chip { min-height: 58px; width:100%; justify-content:flex-start; } }


/* v7 ecosystem core refinement */
.ecosystem-core {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(30,115,255,.14), transparent 7rem),
    radial-gradient(circle at 82% 84%, rgba(8,197,216,.12), transparent 7rem),
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(238,247,255,.94));
}
.ecosystem-core::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 30px;
  border: 1px solid rgba(30,115,255,.1);
  pointer-events: none;
}
.ecosystem-core-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30,115,255,.08);
  border: 1px solid rgba(30,115,255,.12);
  color: #1e73ff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ecosystem-core-brand {
  margin-top: 2px;
  font-size: 1.52rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(90deg, #071a44 0%, #1d4ed8 58%, #08c5d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ecosystem-core-sub {
  max-width: 150px;
  margin-top: 8px;
  color: #5b6b84;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.orbit-logo.cards { width: 150px; }
.orbit-logo.cards img { max-width: 118px; max-height: 68px; border-radius: 12px; }
@media (max-width: 620px) {
  .ecosystem-core-kicker { font-size: .62rem; padding: 5px 10px; }
  .ecosystem-core-brand { font-size: 1.28rem; }
  .ecosystem-core-sub { max-width: 132px; font-size: .78rem; }
  .orbit-logo.cards { width: 136px; }
}


/* v8 ecosystem core simplification */
.ecosystem-core {
  padding: 22px 18px;
  gap: 0;
}
.ecosystem-core img {
  width: 62px;
  height: 62px;
  margin-bottom: 10px;
}
.ecosystem-core-kicker {
  margin-bottom: 10px;
  padding: 7px 14px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1e73ff;
  background: linear-gradient(180deg, rgba(30,115,255,.10), rgba(8,197,216,.10));
  border: 1px solid rgba(30,115,255,.12);
  border-radius: 999px;
  font-weight: 900;
}
.ecosystem-core-brand {
  margin-top: 0;
  font-size: 1.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(90deg, #071a44 0%, #1d4ed8 65%, #08c5d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ecosystem-core-sub {
  margin-top: 8px;
  font-size: .96rem;
  line-height: 1.25;
  color: #5b6b84;
  font-weight: 800;
  text-align: center;
}
.ecosystem-core-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.ecosystem-core-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbeafe;
  color: #0f2b66;
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(30,115,255,.08);
}
@media (max-width: 620px) {
  .ecosystem-core-brand { font-size: 1.48rem; }
  .ecosystem-core-sub { font-size: .84rem; }
  .ecosystem-core-pills { gap: 6px; }
  .ecosystem-core-pills span { min-width: 58px; font-size: .7rem; padding: 6px 10px; }
}


/* v9 ecosystem core logo-only refinement */
.ecosystem-core {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.98), rgba(239,247,255,.94) 58%, rgba(229,242,255,.92) 100%),
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(238,247,255,.94));
}
.ecosystem-core::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  border: 1px solid rgba(30,115,255,.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
  pointer-events: none;
}
.ecosystem-core::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,115,255,.16) 0%, rgba(8,197,216,.10) 35%, rgba(30,115,255,0) 72%);
  filter: blur(4px);
  pointer-events: none;
}
.ecosystem-core-logo {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(30,115,255,.18));
  transform: translateY(-2px);
}
@media (max-width: 620px) {
  .ecosystem-core-logo { width: 84px; height: 84px; }
  .ecosystem-core::after { width: 132px; height: 132px; }
}


/* v10 ecosystem logo sizing refinement */
.ecosystem-core {
  min-height: 320px;
}
.ecosystem-core-logo {
  width: 176px !important;
  height: 176px !important;
  max-width: 68%;
  max-height: 68%;
  filter: drop-shadow(0 18px 34px rgba(30,115,255,.18));
}
@media (max-width: 1100px) {
  .ecosystem-core { min-height: 290px; }
  .ecosystem-core-logo { width: 154px !important; height: 154px !important; }
}
@media (max-width: 620px) {
  .ecosystem-core { min-height: 230px; }
  .ecosystem-core-logo { width: 118px !important; height: 118px !important; max-width: 60%; max-height: 60%; }
}


/* v11 ecosystem logo fit refinement */
.ecosystem-core {
  min-height: 344px !important;
}
.ecosystem-core-logo {
  width: 220px !important;
  height: 220px !important;
  max-width: 82%;
  max-height: 82%;
  filter: drop-shadow(0 20px 38px rgba(30,115,255,.20));
}
@media (max-width: 1100px) {
  .ecosystem-core { min-height: 310px !important; }
  .ecosystem-core-logo { width: 188px !important; height: 188px !important; }
}
@media (max-width: 620px) {
  .ecosystem-core { min-height: 246px !important; }
  .ecosystem-core-logo { width: 132px !important; height: 132px !important; max-width: 66%; max-height: 66%; }
}


/* v12 ecosystem center brand refinement */
.ecosystem-core {
  width: 248px !important;
  min-height: 304px !important;
  padding: 26px 20px !important;
  border-radius: 42px;
}
.ecosystem-core::before {
  inset: 18px;
  border-radius: 34px;
}
.ecosystem-core-logo.ecosystem-core-wordmark {
  width: 228px !important;
  height: auto !important;
  max-width: 92%;
  max-height: none !important;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 18px 34px rgba(30,115,255,.16));
}
@media (max-width: 1100px) {
  .ecosystem-core { width: 226px !important; min-height: 286px !important; }
  .ecosystem-core-logo.ecosystem-core-wordmark { width: 206px !important; }
}
@media (max-width: 620px) {
  .ecosystem-core { width: 188px !important; min-height: 232px !important; padding: 18px 14px !important; }
  .ecosystem-core-logo.ecosystem-core-wordmark { width: 164px !important; max-width: 90%; }
}


/* v13 ecosystem center placement fix */
.ecosystem-core {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.ecosystem-core-logo.ecosystem-core-wordmark {
  width: 236px !important;
  max-width: 94% !important;
  margin: 0 auto !important;
  display: block;
}
@media (max-width: 1100px) {
  .ecosystem-core-logo.ecosystem-core-wordmark { width: 214px !important; }
}
@media (max-width: 620px) {
  .ecosystem-core-logo.ecosystem-core-wordmark { width: 170px !important; }
}


/* v14 full-site copy and card polish */
h1, h2, h3 {
  text-wrap: balance;
}
p, li {
  text-wrap: pretty;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e73ff, #08c5d8);
  box-shadow: 0 0 0 6px rgba(30,115,255,.08);
}
.split-heading > p {
  position: relative;
  max-width: 760px;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2vw, 28px);
  border-radius: 26px;
  color: #40506a;
  font-weight: 650;
  line-height: 1.78;
  background:
    radial-gradient(circle at 100% 0%, rgba(8,197,216,.10), transparent 12rem),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,249,255,.90));
  border: 1px solid rgba(30,115,255,.12);
  box-shadow: 0 18px 46px rgba(30,115,255,.07);
}
.split-heading > p::before,
.service-hero-copy > p::before,
.ecosystem-copy > p::before,
.payment-mode-panel p::before,
.partner-highlight-copy p::before,
.trusted-partners-copy p::before,
.license-copy p::before,
.cta-copy p::before,
.contact-panel > div > p::before,
.section-side p::before,
.usecase-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1e73ff, #08c5d8);
}
.service-hero-copy > p,
.ecosystem-copy > p,
.payment-mode-panel p,
.partner-highlight-copy p,
.trusted-partners-copy p,
.license-copy p,
.cta-copy p,
.contact-panel > div > p,
.section-side p,
.usecase-card p {
  position: relative;
  color: #40506a;
  font-weight: 650;
  line-height: 1.78;
}
.service-hero-copy > p,
.ecosystem-copy > p,
.payment-mode-panel p,
.partner-highlight-copy p,
.trusted-partners-copy p,
.section-side p {
  padding-left: 18px;
}

/* Premium card surfaces across home, service and policy pages */
.feature-card,
.process-card,
.security-card,
.why-card,
.coverage-card,
.service-step,
.related-card,
.service-index-card,
.service-form-card,
.gateway-panel,
.usecase-card,
.policy-content-card,
.trust-item,
.metric-card,
.service-card,
.spotlight-card,
.payment-logo-cell,
.cta-card,
.contact-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 0%, rgba(8,197,216,.10), transparent 11rem),
    radial-gradient(circle at 0% 100%, rgba(30,115,255,.08), transparent 13rem),
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(246,250,255,.93));
  border: 1px solid rgba(30,115,255,.13);
  box-shadow: 0 22px 52px rgba(30,115,255,.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}
.feature-card::before,
.process-card::before,
.security-card::before,
.why-card::before,
.coverage-card::before,
.service-step::before,
.related-card::before,
.service-index-card::before,
.service-form-card::before,
.gateway-panel::before,
.usecase-card::before,
.policy-content-card::before,
.trust-item::before,
.metric-card::before,
.service-card::before,
.spotlight-card::before,
.payment-logo-cell::before,
.cta-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.45) 28%, rgba(255,255,255,.0) 54%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}
.feature-card:hover,
.process-card:hover,
.security-card:hover,
.why-card:hover,
.coverage-card:hover,
.service-step:hover,
.related-card:hover,
.service-index-card:hover,
.service-form-card:hover,
.gateway-panel:hover,
.usecase-card:hover,
.policy-content-card:hover,
.trust-item:hover,
.metric-card:hover,
.service-card:hover,
.spotlight-card:hover,
.payment-logo-cell:hover {
  transform: translateY(-6px);
  border-color: rgba(30,115,255,.28);
  box-shadow: 0 34px 76px rgba(30,115,255,.14);
}
.feature-card:hover::before,
.process-card:hover::before,
.security-card:hover::before,
.why-card:hover::before,
.coverage-card:hover::before,
.service-step:hover::before,
.related-card:hover::before,
.service-index-card:hover::before,
.service-form-card:hover::before,
.gateway-panel:hover::before,
.usecase-card:hover::before,
.policy-content-card:hover::before,
.trust-item:hover::before,
.metric-card:hover::before,
.service-card:hover::before,
.spotlight-card:hover::before,
.payment-logo-cell:hover::before {
  transform: translateX(120%);
}

/* Make descriptive text inside cards feel intentional */
.feature-card p,
.process-card p,
.security-card p,
.why-card p,
.service-index-card p,
.spotlight-card p,
.service-step p,
.gateway-panel li,
.usecase-list li,
.policy-content-card p,
.service-form-card .form-note,
.control-list li,
.coverage-card b,
.related-card small,
.service-card small {
  color: #4a5b73;
  line-height: 1.65;
  font-weight: 650;
}
.feature-card p,
.process-card p,
.security-card p,
.why-card p,
.service-index-card p,
.spotlight-card p,
.service-step p,
.policy-content-card p,
.service-form-card .form-note {
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(219,234,254,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.feature-card h3,
.process-card h3,
.security-card h3,
.why-card h3,
.service-step h3,
.service-index-card h3,
.spotlight-card h3,
.policy-content-card h2,
.usecase-card h2,
.gateway-panel b {
  color: #071a44;
  letter-spacing: -.035em;
}
.feature-icon,
.process-icon,
.security-icon,
.why-icon,
.service-icon-large,
.service-step > span,
.process-number,
.mini-check {
  box-shadow:
    0 14px 30px rgba(30,115,255,.13),
    inset 0 1px 0 rgba(255,255,255,.78);
}
.process-card {
  padding-top: 48px;
}
.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}
.process-card .process-number {
  box-shadow: 0 12px 28px rgba(30,115,255,.24);
}
.process-card:nth-child(5) .process-number {
  box-shadow: 0 12px 28px rgba(16,185,129,.26);
}

/* Service pages: richer lists and forms */
.service-bullets li,
.control-list li,
.usecase-list li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(219,234,254,.86);
  box-shadow: 0 12px 28px rgba(30,115,255,.06);
}
.service-bullets li::before,
.control-list li::before,
.usecase-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, #1e73ff, #08c5d8);
}
.service-form-card label span {
  color: #0f2b66;
  font-weight: 900;
  letter-spacing: -.01em;
}
.service-form-card input,
.service-form-card textarea,
.contact-form input,
.contact-form textarea {
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,251,255,.92));
  border-color: rgba(30,115,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 22px rgba(30,115,255,.05);
}
.service-form-card input:focus,
.service-form-card textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(30,115,255,.55);
  box-shadow: 0 0 0 4px rgba(30,115,255,.10), 0 14px 30px rgba(30,115,255,.10);
}
.gateway-panel .chart-header,
.form-card-head,
.transactions-card .chart-header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(219,234,254,.85);
}

/* More polished service directories and related navigation */
.service-card,
.related-card {
  text-decoration: none;
}
.service-card b,
.related-card b,
.coverage-card b {
  color: #071a44;
}
.service-card small,
.related-card small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 8px;
  padding: 7px 11px;
  color: #1e73ff;
  border-radius: 999px;
  background: rgba(30,115,255,.08);
  border: 1px solid rgba(30,115,255,.11);
}
.service-card small::after,
.related-card small::after,
.service-index-card span::after {
  content: "→";
  font-weight: 900;
}
.service-index-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px;
  color: #1e73ff;
  border-radius: 999px;
  background: rgba(30,115,255,.08);
  border: 1px solid rgba(30,115,255,.11);
  font-weight: 900;
}

/* Polished payment/card assets */
.payment-badges img[src*="cards-end"],
.payment-logo-cell.cards img[src*="cards-end"],
.orbit-logo.cards img[src*="cards-end"] {
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  border: 1px solid rgba(219,234,254,.86);
}
.payment-logo-cell.cards img[src*="cards-end"] {
  max-width: 82%;
  max-height: 84px;
}
.hero-payment-logos .payment-badges.compact img[src*="cards-end"] {
  height: 48px;
  max-width: 104px;
  padding: 4px 7px;
}

/* Policy pages should look as polished as product pages */
.policy-content-card h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.policy-content-card h2::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e73ff, #08c5d8);
  box-shadow: 0 0 0 7px rgba(30,115,255,.08);
}

@media (max-width: 980px) {
  .split-heading > p {
    max-width: none;
  }
  .service-hero-copy > p,
  .ecosystem-copy > p,
  .payment-mode-panel p,
  .partner-highlight-copy p,
  .trusted-partners-copy p,
  .section-side p {
    padding-left: 16px;
  }
}
@media (max-width: 620px) {
  .split-heading > p,
  .feature-card p,
  .process-card p,
  .security-card p,
  .why-card p,
  .service-index-card p,
  .spotlight-card p,
  .service-step p,
  .policy-content-card p {
    padding: 12px 13px;
    border-radius: 16px;
  }
  .service-bullets li,
  .control-list li,
  .usecase-list li {
    padding: 12px 14px 12px 38px;
  }
}


/* Production V15: premium access-layer alignment with platform login */
:root {
  --glass-blue: rgba(215, 239, 250, .52);
  --glass-cyan: rgba(8, 197, 216, .14);
  --platform-cyan: #0ea5c6;
  --platform-blue: #1e73ff;
  --platform-navy: #061a3f;
  --platform-border: rgba(95, 174, 222, .24);
  --platform-panel: rgba(248, 253, 255, .80);
}

body.qarah-premium {
  background:
    linear-gradient(rgba(30,115,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,115,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 0% 0%, rgba(30,115,255,.13), transparent 30rem),
    radial-gradient(circle at 92% 8%, rgba(8,197,216,.18), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #f7fbff 44%, #fff 100%);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(245,251,255,.72));
  border-bottom: 1px solid rgba(95,174,222,.18);
  box-shadow: 0 12px 34px rgba(8, 68, 130, .045);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,115,255,.28), rgba(8,197,216,.24), transparent);
}

.site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,251,255,.86));
  box-shadow: 0 18px 48px rgba(8, 68, 130, .09);
}

.nav-wrap {
  min-height: 86px;
}

.primary-nav {
  padding: 9px;
  background:
    radial-gradient(circle at 8% 12%, rgba(8,197,216,.12), transparent 11rem),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(241,248,255,.72));
  border: 1px solid rgba(95,174,222,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.80),
    0 16px 40px rgba(30,115,255,.075);
}

.primary-nav a {
  font-weight: 850;
  letter-spacing: -.01em;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--platform-blue);
  background:
    linear-gradient(180deg, rgba(30,115,255,.12), rgba(8,197,216,.10));
  box-shadow: inset 0 0 0 1px rgba(30,115,255,.06), 0 10px 24px rgba(30,115,255,.09);
}

.btn.btn-primary {
  background:
    linear-gradient(135deg, #1e73ff 0%, #0ea5c6 100%);
  box-shadow:
    0 18px 40px rgba(30,115,255,.20),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 58px rgba(30,115,255,.26);
}

.btn.btn-ghost {
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(245,251,255,.72));
  border-color: rgba(95,174,222,.26);
  box-shadow: 0 12px 26px rgba(30,115,255,.06), inset 0 1px 0 rgba(255,255,255,.75);
}

.section-label {
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(95,174,222,.20);
  box-shadow: 0 10px 22px rgba(30,115,255,.06);
}

.split-heading {
  align-items: center;
}

.split-heading h2,
.section-side h2,
.license-copy h2,
.cta-copy h2,
.contact-panel h2,
.service-hero-copy h1,
.ecosystem-copy h2,
.payment-mode-panel h2,
.trusted-partners-copy h2 {
  letter-spacing: -.07em;
  color: var(--platform-navy);
  text-shadow: 0 18px 40px rgba(9, 38, 92, .06);
}

.split-heading > p,
.service-hero-copy > p,
.ecosystem-copy > p,
.payment-mode-panel p,
.partner-highlight-copy p,
.trusted-partners-copy p,
.license-copy p,
.cta-copy p,
.contact-panel > div > p,
.section-side p,
.usecase-card p {
  position: relative;
  border-radius: 26px;
  color: #425570;
  background:
    linear-gradient(90deg, rgba(14,165,198,.08), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(244,251,255,.66));
  border: 1px solid rgba(95,174,222,.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 18px 44px rgba(30,115,255,.065);
}

.split-heading > p {
  padding: clamp(20px, 2.1vw, 28px) clamp(24px, 2.5vw, 34px);
}

.service-hero-copy > p,
.ecosystem-copy > p,
.payment-mode-panel p,
.partner-highlight-copy p,
.trusted-partners-copy p,
.section-side p {
  padding: 18px 20px 18px 24px;
}

.split-heading > p::after,
.service-hero-copy > p::after,
.ecosystem-copy > p::after,
.payment-mode-panel p::after,
.partner-highlight-copy p::after,
.trusted-partners-copy p::after,
.license-copy p::after,
.cta-copy p::after,
.contact-panel > div > p::after,
.section-side p::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,.45), transparent 40%, rgba(8,197,216,.05));
}

/* Premium card system */
.feature-card,
.process-card,
.security-card,
.why-card,
.coverage-card,
.service-step,
.related-card,
.service-index-card,
.service-form-card,
.gateway-panel,
.usecase-card,
.policy-content-card,
.trust-item,
.metric-card,
.service-card,
.spotlight-card,
.payment-logo-cell,
.cta-card,
.contact-panel,
.dashboard-shell,
.license-card,
.partner-highlight,
.trusted-partners-panel,
.payment-mode-panel,
.ecosystem-showcase {
  border-color: rgba(95,174,222,.22) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(242,249,255,.72)),
    radial-gradient(circle at 96% 0%, rgba(8,197,216,.14), transparent 13rem),
    radial-gradient(circle at 0% 100%, rgba(30,115,255,.10), transparent 14rem) !important;
  box-shadow:
    0 28px 64px rgba(31,75,140,.09),
    inset 0 1px 0 rgba(255,255,255,.84) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.feature-card::after,
.process-card::after,
.security-card::after,
.why-card::after,
.coverage-card::after,
.service-step::after,
.related-card::after,
.service-index-card::after,
.service-form-card::after,
.gateway-panel::after,
.usecase-card::after,
.policy-content-card::after,
.trust-item::after,
.metric-card::after,
.service-card::after,
.spotlight-card::after,
.payment-logo-cell::after,
.cta-card::after,
.contact-panel::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30,115,255,.0), rgba(30,115,255,.48), rgba(8,197,216,.46), rgba(30,115,255,.0));
  opacity: .65;
}

.feature-card:hover,
.process-card:hover,
.security-card:hover,
.why-card:hover,
.coverage-card:hover,
.service-step:hover,
.related-card:hover,
.service-index-card:hover,
.service-form-card:hover,
.gateway-panel:hover,
.usecase-card:hover,
.policy-content-card:hover,
.trust-item:hover,
.metric-card:hover,
.service-card:hover,
.spotlight-card:hover,
.payment-logo-cell:hover {
  transform: translateY(-7px);
  border-color: rgba(30,115,255,.34) !important;
  box-shadow:
    0 38px 88px rgba(30,115,255,.16),
    inset 0 1px 0 rgba(255,255,255,.90) !important;
}

.feature-card p,
.process-card p,
.security-card p,
.why-card p,
.service-index-card p,
.spotlight-card p,
.service-step p,
.policy-content-card p,
.service-form-card .form-note,
.gateway-panel li,
.control-list li,
.usecase-list li {
  background:
    linear-gradient(180deg, rgba(255,255,255,.74), rgba(247,252,255,.62));
  border-color: rgba(95,174,222,.22);
  color: #425570;
  font-weight: 650;
}

.feature-icon,
.process-icon,
.security-icon,
.why-icon,
.service-icon,
.service-icon-large,
.trust-icon,
.metric-icon {
  background:
    radial-gradient(circle at 34% 22%, rgba(255,255,255,.95), rgba(238,248,255,.78)),
    linear-gradient(135deg, rgba(30,115,255,.12), rgba(8,197,216,.10));
  border: 1px solid rgba(95,174,222,.24);
  box-shadow: 0 16px 32px rgba(30,115,255,.12), inset 0 1px 0 rgba(255,255,255,.88);
}

.process-card {
  min-height: 286px;
}

.process-number {
  box-shadow: 0 16px 34px rgba(30,115,255,.20), inset 0 1px 0 rgba(255,255,255,.35);
}

.process-line::before {
  background: linear-gradient(90deg, transparent, rgba(30,115,255,.30), rgba(8,197,216,.34), transparent);
  box-shadow: 0 0 20px rgba(8,197,216,.18);
}

.dashboard-shell {
  border-radius: 36px;
  overflow: hidden;
}

.dash-sidebar,
.kpi-card,
.chart-card,
.recent-card,
.kyc-status-card {
  background: rgba(255,255,255,.74);
  border-color: rgba(95,174,222,.18);
}

.contact-panel input,
.contact-panel textarea,
.service-form-card input,
.service-form-card select,
.service-form-card textarea {
  background: rgba(255,255,255,.82);
  border-color: rgba(95,174,222,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 24px rgba(30,115,255,.04);
}

.contact-panel input:focus,
.contact-panel textarea:focus,
.service-form-card input:focus,
.service-form-card select:focus,
.service-form-card textarea:focus {
  outline: none;
  border-color: rgba(14,165,198,.55);
  box-shadow: 0 0 0 5px rgba(14,165,198,.10), inset 0 1px 0 rgba(255,255,255,.9);
}

/* Footer upgraded to trust console */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background:
    linear-gradient(rgba(30,115,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,115,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(30,115,255,.14), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(8,197,216,.16), transparent 26rem),
    linear-gradient(180deg, #f7fbff, #ffffff);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,115,255,.36), rgba(8,197,216,.28), transparent);
}

.footer-grid {
  grid-template-columns: 1.25fr repeat(4, minmax(0, .88fr));
  gap: 22px;
}

.footer-brand,
.footer-col {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(95,174,222,.18);
  box-shadow: 0 18px 42px rgba(30,115,255,.055), inset 0 1px 0 rgba(255,255,255,.85);
}

.footer-brand img {
  width: 220px;
  margin-bottom: 8px;
}

.footer-col h3 {
  color: #071a44;
  font-weight: 900;
}

.footer-col a,
.footer-col span,
.footer-brand p {
  font-weight: 650;
}

.footer-trust-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.80), rgba(241,249,255,.68));
  border: 1px solid rgba(95,174,222,.22);
  box-shadow: 0 24px 54px rgba(30,115,255,.08), inset 0 1px 0 rgba(255,255,255,.84);
}

.footer-trust-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--platform-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-trust-copy b {
  display: block;
  max-width: 620px;
  color: #071a44;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -.04em;
}

.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-trust-logos span {
  display: grid;
  place-items: center;
  min-width: 94px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(95,174,222,.18);
  box-shadow: 0 12px 24px rgba(30,115,255,.06);
}

.footer-trust-logos img {
  max-width: 110px;
  max-height: 34px;
  object-fit: contain;
}

.footer-bottom {
  border-top-color: rgba(95,174,222,.18);
}

@media (max-width: 1180px) {
  .footer-grid,
  .footer-trust-row {
    grid-template-columns: 1fr;
  }
  .footer-trust-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-wrap { min-height: 76px; }
  .brand img { width: 198px; }
  .split-heading > p,
  .service-hero-copy > p,
  .ecosystem-copy > p,
  .payment-mode-panel p,
  .partner-highlight-copy p,
  .trusted-partners-copy p,
  .section-side p {
    padding: 16px 18px 16px 22px;
  }
}

@media (max-width: 640px) {
  .section-label {
    font-size: 11px;
    padding: 7px 10px;
  }
  .footer-brand,
  .footer-col,
  .footer-trust-row {
    padding: 18px;
  }
  .footer-trust-logos span {
    flex: 1 1 44%;
  }
}


/* Production V16: alignment and readability corrections */
/* Keep the premium glass style but prevent paragraph panels from overlapping text/buttons. */
.split-heading > p,
.service-hero-copy > p,
.ecosystem-copy > p,
.payment-mode-panel p,
.partner-highlight-copy p,
.trusted-partners-copy p,
.license-copy p,
.cta-copy p,
.contact-panel > div > p,
.section-side p,
.usecase-card p {
  box-sizing: border-box;
  width: min(100%, 760px);
  padding: 15px 20px 15px 26px !important;
  margin: 10px 0 0 !important;
  line-height: 1.58 !important;
  font-size: clamp(0.98rem, 1vw, 1.08rem) !important;
  font-weight: 650 !important;
  color: #43546e !important;
  border-radius: 22px !important;
}

.split-heading > p::before,
.service-hero-copy > p::before,
.ecosystem-copy > p::before,
.payment-mode-panel p::before,
.partner-highlight-copy p::before,
.trusted-partners-copy p::before,
.license-copy p::before,
.cta-copy p::before,
.contact-panel > div > p::before,
.section-side p::before,
.usecase-card p::before {
  left: 0 !important;
  top: 14px !important;
  bottom: 14px !important;
  width: 3px !important;
}

.split-heading > p::after,
.service-hero-copy > p::after,
.ecosystem-copy > p::after,
.payment-mode-panel p::after,
.partner-highlight-copy p::after,
.trusted-partners-copy p::after,
.license-copy p::after,
.cta-copy p::after,
.contact-panel > div > p::after,
.section-side p::after {
  z-index: 0;
}

.split-heading > p > *,
.service-hero-copy > p > *,
.ecosystem-copy > p > *,
.payment-mode-panel p > *,
.partner-highlight-copy p > *,
.trusted-partners-copy p > *,
.license-copy p > *,
.cta-copy p > *,
.contact-panel > div > p > *,
.section-side p > *,
.usecase-card p > * {
  position: relative;
  z-index: 1;
}

/* CTA and contact panels: keep buttons and fields clear of description panels. */
.cta-copy,
.contact-panel > div,
.service-hero-copy,
.section-side,
.ecosystem-copy,
.payment-mode-panel > div:first-child,
.trusted-partners-copy,
.partner-highlight-copy {
  position: relative;
  z-index: 2;
}

.cta-actions,
.hero-actions,
.contact-form,
.payment-badges,
.official-logo-strip {
  position: relative;
  z-index: 3;
}

.cta-copy p {
  max-width: 760px;
  margin-bottom: 18px !important;
}

.contact-panel > div > p {
  max-width: 720px;
  margin-bottom: 20px !important;
}

/* KYC cards: stop number badges from being clipped and align the sequence. */
.process-line {
  padding-top: 22px;
  align-items: stretch;
}

.process-line::before {
  top: 41px !important;
  z-index: 0;
}

.process-card {
  overflow: visible !important;
  min-height: 292px !important;
  padding: 54px 20px 24px !important;
}

.process-card::after,
.process-card::before {
  pointer-events: none;
}

.process-number {
  top: -19px !important;
  z-index: 3;
  width: 42px !important;
  height: 42px !important;
  font-size: 1.05rem;
}

.process-card p {
  width: 100%;
  margin-top: 14px !important;
  padding: 14px 16px !important;
  line-height: 1.55 !important;
  font-size: .98rem !important;
}

/* Spotlight cards: balanced visuals and no oversized logo/content crop. */
.service-spotlight-grid {
  align-items: stretch;
}

.spotlight-card {
  min-height: 410px !important;
  grid-template-rows: 155px auto !important;
  gap: 18px !important;
  padding: 24px !important;
  overflow: hidden !important;
}

.spotlight-card img {
  width: min(100%, 360px) !important;
  max-width: 86% !important;
  height: 150px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

.spotlight-card h3 {
  max-width: 100%;
  margin: 12px 0 10px !important;
  font-size: clamp(1.35rem, 1.75vw, 1.9rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -.045em;
}

.spotlight-card p {
  width: 100%;
  padding: 13px 16px !important;
  margin-top: 12px !important;
  line-height: 1.55 !important;
  font-size: .98rem !important;
}

.fastag-brand-note {
  max-width: 100%;
  overflow: hidden;
}

.fastag-brand-note img {
  max-width: 150px;
  object-fit: contain;
}

/* Service and index pages: reduce over-wide copy blocks and maintain consistent rhythm. */
.service-hero-copy > p {
  max-width: 720px;
}

.service-page .service-hero-copy > p,
.service-index-page .service-hero-copy > p {
  margin-top: 18px !important;
}

.service-page .service-bullets {
  margin-top: 22px;
}

.service-page .service-bullets li,
.usecase-list li,
.control-list li {
  align-items: flex-start;
  line-height: 1.45;
}

.usecase-card p {
  max-width: 620px;
  margin-bottom: 18px !important;
}

/* Payment logo cards: consistent fit on directory and service pages. */
.payment-logo-cell {
  min-height: 116px !important;
  padding: 16px !important;
}

.payment-logo-cell img {
  object-fit: contain !important;
}

.payment-logo-cell.fastag img {
  max-width: 92% !important;
}

/* Footer and header: keep premium feel without crowding. */
.site-header {
  z-index: 50;
}

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

.footer-col span,
.footer-col a,
.footer-brand p {
  line-height: 1.55;
}

/* Responsive alignment fixes. */
@media (max-width: 1180px) {
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }
  .process-line::before {
    display: none;
  }
  .spotlight-card {
    min-height: auto !important;
  }
}

@media (max-width: 860px) {
  .split-heading > p,
  .service-hero-copy > p,
  .ecosystem-copy > p,
  .payment-mode-panel p,
  .partner-highlight-copy p,
  .trusted-partners-copy p,
  .license-copy p,
  .cta-copy p,
  .contact-panel > div > p,
  .section-side p,
  .usecase-card p {
    padding: 14px 16px 14px 22px !important;
  }
  .process-line {
    grid-template-columns: 1fr;
  }
  .process-card {
    min-height: auto !important;
  }
  .spotlight-card {
    grid-template-rows: auto auto !important;
  }
  .spotlight-card img {
    height: 136px !important;
  }
}

/* Production V16: alignment and spacing correction pass */
/* Keep step number badges visible above KYC cards */
.process-line {
  padding-top: 24px;
  overflow: visible;
}
.process-card {
  overflow: visible !important;
  padding-top: 60px !important;
}
.process-card::before,
.process-card::after {
  overflow: hidden;
  border-radius: inherit;
}
.process-number {
  top: -24px !important;
  width: 48px !important;
  height: 48px !important;
  z-index: 8;
  font-size: 1.15rem;
}
.process-icon,
.process-card h3,
.process-card p {
  position: relative;
  z-index: 2;
}

/* Give all premium description panels enough breathing room so text never touches the accent rail */
.split-heading > p,
.service-hero-copy > p,
.ecosystem-copy > p,
.payment-mode-panel p,
.partner-highlight-copy p,
.trusted-partners-copy p,
.license-copy p,
.cta-copy p,
.contact-panel > div > p,
.section-side p,
.usecase-card p {
  box-sizing: border-box;
  overflow: hidden;
  max-width: 100%;
  line-height: 1.72;
}
.service-hero-copy > p,
.ecosystem-copy > p,
.payment-mode-panel p,
.partner-highlight-copy p,
.trusted-partners-copy p,
.license-copy p,
.cta-copy p,
.contact-panel > div > p,
.section-side p,
.usecase-card p {
  padding: 18px 22px 18px 32px !important;
}
.split-heading > p::before,
.service-hero-copy > p::before,
.ecosystem-copy > p::before,
.payment-mode-panel p::before,
.partner-highlight-copy p::before,
.trusted-partners-copy p::before,
.license-copy p::before,
.cta-copy p::before,
.contact-panel > div > p::before,
.section-side p::before,
.usecase-card p::before {
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  z-index: 1;
}

/* CTA blocks: prevent descriptive panel from colliding with heading and buttons */
.cta-card {
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}
.cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.cta-copy h2 {
  max-width: 900px;
  margin-bottom: 12px;
}
.cta-copy p {
  width: 100%;
  max-width: 940px;
  margin: 6px 0 20px !important;
}
.cta-actions {
  position: relative;
  z-index: 3;
  margin-top: 0 !important;
}

/* Contact panel alignment and address wrapping */
.contact-panel {
  align-items: start;
}
.contact-panel > div,
.contact-form {
  min-width: 0;
}
.contact-panel > div > p {
  margin: 14px 0 20px !important;
}
.contact-direct-list {
  display: grid;
  gap: 12px;
}
.contact-direct-list a,
.contact-direct-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(95,174,222,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84);
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Service spotlight cards: keep nested FASTag logo small and prevent overflow */
.service-spotlight-grid {
  align-items: stretch;
  overflow: visible;
}
.spotlight-card {
  min-width: 0;
  grid-template-rows: 170px auto !important;
  gap: 18px;
}
.spotlight-card > img {
  height: 170px !important;
  width: 100%;
  object-fit: contain;
}
.spotlight-card > div {
  min-width: 0;
}
.spotlight-card h3,
.spotlight-card p {
  max-width: 100%;
  overflow-wrap: break-word;
}
.spotlight-card .fastag-brand-note {
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.spotlight-card .fastag-brand-note img {
  width: auto !important;
  height: 28px !important;
  max-width: 150px !important;
  max-height: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: none !important;
}
.spotlight-card .fastag-brand-note span {
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-size: .82rem;
  color: #0f2b66;
  font-weight: 900;
  white-space: nowrap;
}

/* Service and use-case pages: cleaner text panel width and grid alignment */
.usecase-card,
.gateway-panel,
.service-form-card {
  min-width: 0;
}
.usecase-card p,
.section-side p,
.service-form-card .form-note {
  margin-top: 14px !important;
}
.usecase-list li,
.control-list li,
.service-bullets li {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Footer cards should remain even and not visually jump */
.footer-brand,
.footer-col {
  min-width: 0;
}
.footer-col span,
.footer-col a,
.footer-brand p {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }
  .process-line::before {
    display: none;
  }
  .service-spotlight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spotlight-card.spotlight-feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .cta-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cta-illustration {
    min-height: 180px;
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .service-spotlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .process-line {
    grid-template-columns: 1fr;
  }
  .process-card {
    padding-top: 56px !important;
  }
  .service-hero-copy > p,
  .ecosystem-copy > p,
  .payment-mode-panel p,
  .partner-highlight-copy p,
  .trusted-partners-copy p,
  .license-copy p,
  .cta-copy p,
  .contact-panel > div > p,
  .section-side p,
  .usecase-card p {
    padding: 15px 16px 15px 24px !important;
  }
  .spotlight-card .fastag-brand-note span {
    white-space: normal;
  }
}


/* Production V16 alignment pass: section descriptions, cards, CTA and service pages */
html {
  scroll-padding-top: 116px;
}

/* Keep premium description panels but prevent overlap with headings/buttons */
.split-heading,
.service-hero-grid,
.usecase-card,
.cta-card,
.payment-mode-panel,
.partner-highlight,
.trusted-partners-panel,
.service-detail-grid,
.payment-preview-grid,
.contact-panel {
  min-width: 0;
}

.split-heading > p,
.service-hero-copy > p,
.ecosystem-copy > p,
.payment-mode-panel p,
.partner-highlight-copy p,
.trusted-partners-copy p,
.license-copy p,
.cta-copy p,
.contact-panel > div > p,
.section-side p,
.usecase-card p {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 16px 0 0 !important;
  clear: both;
  z-index: 1;
  box-sizing: border-box;
}

.split-heading > p,
.service-hero-copy > p,
.section-side p,
.usecase-card p,
.cta-copy p,
.contact-panel > div > p {
  padding: 16px 20px 16px 24px !important;
}

.split-heading > div,
.service-hero-copy,
.ecosystem-copy,
.payment-mode-panel > div,
.partner-highlight-copy,
.trusted-partners-copy,
.license-copy,
.cta-copy,
.contact-panel > div,
.section-side,
.usecase-card > div {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.split-heading h2,
.service-hero-copy h1,
.ecosystem-copy h2,
.payment-mode-panel h2,
.cta-copy h2,
.contact-panel h2,
.usecase-card h2,
.section-side h2 {
  margin-bottom: 12px;
}

/* KYC process numbers were being clipped by the premium card overflow. */
.process-line {
  padding-top: 30px;
  align-items: stretch;
}

.process-line::before {
  top: 48px !important;
  z-index: 0;
}

.process-card {
  overflow: visible !important;
  padding-top: 56px !important;
  min-height: 292px;
  isolation: isolate;
}

.process-card::before,
.process-card::after {
  border-radius: inherit;
}

.process-number {
  top: -22px !important;
  width: 44px !important;
  height: 44px !important;
  z-index: 6 !important;
  font-size: 18px;
  border: 4px solid rgba(255,255,255,.92);
}

.process-icon {
  position: relative;
  z-index: 2;
}

.process-card p {
  width: 100%;
  max-width: 230px;
  margin: 16px auto 0 !important;
  padding: 13px 14px !important;
}

/* Service spotlight cards: equal, readable, no cropped FASTag/card content. */
.service-spotlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.spotlight-card {
  min-width: 0;
  min-height: 0 !important;
  height: auto;
  grid-template-rows: 170px auto !important;
  padding: 22px !important;
  overflow: hidden;
}

.spotlight-card img {
  width: 100%;
  height: 170px !important;
  max-height: 170px;
  object-fit: contain;
}

.spotlight-card > div {
  min-width: 0;
  overflow-wrap: anywhere;
}

.spotlight-card h3 {
  font-size: clamp(21px, 1.75vw, 27px) !important;
  line-height: 1.12;
  margin: 12px 0 12px !important;
}

.spotlight-card p {
  max-width: 100%;
  margin-top: 12px !important;
  padding: 13px 15px !important;
}

.spotlight-card .fastag-brand-note {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  margin-top: 14px;
}

.spotlight-card .fastag-brand-note img {
  height: 28px !important;
  max-width: 150px;
}

/* CTA sections: keep paragraph below heading and above buttons. */
.cta-card {
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr) !important;
  gap: clamp(28px, 4vw, 48px) !important;
  align-items: center !important;
}

.cta-copy {
  min-width: 0;
  max-width: 920px;
}

.cta-copy p {
  max-width: 880px;
  margin: 18px 0 22px !important;
  padding: 15px 20px 15px 24px !important;
}

.cta-actions,
.hero-actions {
  position: relative;
  z-index: 3;
}

/* Use-case sections: balanced text and list alignment. */
.usecase-card {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr) !important;
  gap: clamp(26px, 4vw, 46px) !important;
  align-items: center;
  overflow: hidden;
}

.usecase-card p {
  max-width: 620px;
}

.usecase-list {
  min-width: 0;
  gap: 16px !important;
}

.usecase-list li {
  min-width: 0;
  align-content: center;
  line-height: 1.35;
}

/* Payment/service directory panels: avoid text or image overflow. */
.payment-mode-panel,
.service-index-hero .service-hero-grid,
.service-hero-grid,
.service-detail-grid,
.payment-preview-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
}

.payment-logo-grid,
.service-index-grid,
.related-grid,
.feature-grid,
.security-grid,
.why-grid {
  min-width: 0;
}

.payment-logo-cell,
.service-index-card,
.related-card,
.feature-card,
.security-card,
.why-card,
.service-card {
  min-width: 0;
}

.service-index-card p,
.related-card small,
.service-card small {
  overflow-wrap: anywhere;
}

.service-visual-card,
.service-hero-art,
.showcase-image-card,
.gateway-panel,
.service-form-card {
  min-width: 0;
}

.service-visual-card img,
.service-hero-art,
.showcase-image-card img {
  max-width: 100%;
}

/* Contact panels: prevent descriptive glass panel from touching form fields. */
.contact-panel {
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
}

.contact-panel > div > p {
  max-width: 720px;
  margin-bottom: 22px !important;
}

.contact-direct-list {
  position: relative;
  z-index: 2;
}

/* Better spacing after sticky header when linking to internal sections. */
section[id] {
  scroll-margin-top: 118px;
}

/* Responsive alignment fixes. */
@media (max-width: 1180px) {
  .service-spotlight-grid {
    grid-template-columns: 1fr !important;
  }
  .spotlight-card {
    grid-template-rows: 180px auto !important;
  }
  .spotlight-card img {
    height: 180px !important;
  }
  .payment-mode-panel,
  .service-index-hero .service-hero-grid,
  .service-hero-grid,
  .service-detail-grid,
  .payment-preview-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px) {
  .split-heading {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .split-heading > p,
  .service-hero-copy > p,
  .section-side p,
  .usecase-card p,
  .cta-copy p,
  .contact-panel > div > p {
    max-width: none;
  }
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 36px;
  }
  .process-line::before {
    display: none;
  }
  .usecase-card,
  .cta-card,
  .contact-panel {
    grid-template-columns: 1fr !important;
  }
  .cta-illustration {
    min-height: 170px;
  }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 92px; }
  section[id] { scroll-margin-top: 92px; }
  .process-line {
    grid-template-columns: 1fr !important;
  }
  .process-card {
    min-height: auto;
  }
  .spotlight-card {
    padding: 18px !important;
    grid-template-rows: 150px auto !important;
  }
  .spotlight-card img {
    height: 150px !important;
  }
  .split-heading > p,
  .service-hero-copy > p,
  .section-side p,
  .usecase-card p,
  .cta-copy p,
  .contact-panel > div > p {
    padding: 14px 16px 14px 20px !important;
  }
}


/* v17 official partner logo integration */
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 14px;
  align-items: stretch;
}
.partner-logo-grid.compact {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
}
.partner-logo {
  position: relative;
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 14px 16px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(30,115,255,.08), transparent 9rem),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(244,250,255,.92));
  border: 1px solid rgba(30,115,255,.13);
  box-shadow: 0 16px 34px rgba(30,115,255,.08), inset 0 1px 0 rgba(255,255,255,.72);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.partner-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.58) 45%, transparent 72%);
  translate: -110% 0;
  transition: translate 650ms ease;
  pointer-events: none;
}
.partner-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(30,115,255,.28);
  box-shadow: 0 24px 52px rgba(30,115,255,.14), inset 0 1px 0 rgba(255,255,255,.8);
}
.partner-logo:hover::before { translate: 110% 0; }
.partner-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 94%;
  max-height: 44px;
  object-fit: contain;
}
.partner-logo.razorpay img { max-height: 46px; max-width: 92%; }
.partner-logo.cashfree img { max-height: 52px; max-width: 96%; }
.partner-logo.payu img { max-height: 48px; }
.partner-logo.irctc img { max-height: 56px; }
.partner-logo.yesbank img { max-height: 42px; }
.partner-logo.idfc img { max-height: 54px; max-width: 96%; border-radius: 8px; }
.partner-logo.msme img { max-height: 52px; max-width: 96%; }
.partner-logo.iata img { max-height: 54px; }
.partner-logo.bharat img { max-height: 48px; }
.partner-logo.npci img { max-height: 42px; max-width: 90%; }
.trusted-partners-panel {
  align-items: center;
}
.trusted-partners-panel .partner-logo-grid {
  flex: 1 1 auto;
}
.trusted-partners-copy p {
  max-width: 680px;
}
.partner-mini-section {
  padding-top: 18px;
  padding-bottom: 18px;
}
.partner-mini-panel {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 34px;
  border: 1px solid rgba(30,115,255,.13);
  background:
    radial-gradient(circle at 88% 12%, rgba(8,197,216,.12), transparent 15rem),
    radial-gradient(circle at 12% 88%, rgba(30,115,255,.10), transparent 16rem),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,250,255,.94));
  box-shadow: 0 26px 60px rgba(30,115,255,.10);
}
.partner-mini-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.partner-mini-copy p {
  margin: 0;
  color: #5b6b84;
  font-weight: 750;
  line-height: 1.65;
}
.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-partner-logos .partner-logo {
  min-height: 54px;
  min-width: 112px;
  padding: 9px 12px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(30,115,255,.07);
}
.footer-partner-logos .partner-logo img { max-height: 30px; max-width: 100px; }
.footer-partner-logos .partner-logo.cashfree img { max-height: 34px; }
.footer-partner-logos .partner-logo.irctc img,
.footer-partner-logos .partner-logo.iata img,
.footer-partner-logos .partner-logo.msme img { max-height: 36px; }
@media (max-width: 1180px) {
  .partner-mini-panel { grid-template-columns: 1fr; }
  .partner-logo-grid { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
}
@media (max-width: 860px) {
  .partner-logo-grid, .partner-logo-grid.compact { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .footer-partner-logos { justify-content: flex-start; }
}
@media (max-width: 540px) {
  .partner-logo-grid, .partner-logo-grid.compact { grid-template-columns: 1fr; }
  .partner-logo { min-height: 68px; }
}


/* v18 DPIIT official logo and policy navigation polish */
.partner-logo.dpiit img,
.footer-partner-logos .partner-logo.dpiit img {
  max-width: 128px;
  max-height: 48px;
  object-fit: contain;
}
.partner-logo-grid.compact .partner-logo.dpiit img {
  max-width: 116px;
  max-height: 44px;
}
.footer-partner-logos .partner-logo.dpiit {
  min-width: 132px;
}
.partner-logo.dpiit {
  background: rgba(255,255,255,.96);
}
.partner-logo.dpiit::after {
  background: linear-gradient(120deg, transparent, rgba(255,111,0,.12), transparent);
}
.policy-page .primary-nav a[href*="index.html"],
.policy-page .primary-nav a[href*="services/index.html"] {
  cursor: pointer;
}
@media (max-width: 760px) {
  .partner-logo.dpiit img, .footer-partner-logos .partner-logo.dpiit img { max-width: 108px; max-height: 40px; }
  .footer-partner-logos .partner-logo.dpiit { min-width: 112px; }
}


/* v18 DPIIT official logo + policy navigation safety */
.partner-logo.dpiit img {
  max-height: 52px;
  max-width: 96%;
  object-fit: contain;
}
.partner-logo-grid.compact .partner-logo.dpiit img {
  max-height: 48px;
}
.footer-partner-logos .partner-logo.dpiit {
  min-width: 112px;
}
.footer-partner-logos .partner-logo.dpiit img {
  max-height: 34px;
  max-width: 104px;
}
@media (max-width: 540px) {
  .partner-logo.dpiit img { max-height: 48px; }
}


/* v18 DPIIT logo and policy navigation fix */
.partner-logo.dpiit img { max-height: 58px; max-width: 96%; object-fit: contain; }
.footer-partner-logos .partner-logo.dpiit { min-width: 116px; }
.footer-partner-logos .partner-logo.dpiit img { max-height: 36px; max-width: 100px; }
.partner-logo-grid.compact .partner-logo.dpiit img { max-height: 52px; }
.policy-hero .primary-nav a.active { background: transparent; }


/* v19 cleanup: reduce repeated logos, service visual alignment, and footer simplification */
.footer-trust-row { display: none !important; }
.service-hero-copy .official-logo-strip,
.service-hero-copy .network-assurance { display: none !important; }

/* Keep a single compact payment row in service heroes. */
.service-hero-copy .payment-badges.compact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 0;
}
.service-hero-copy .payment-badges.compact img {
  width: auto !important;
  height: 48px;
  max-width: 118px;
  padding: 7px 10px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(30,115,255,.13);
  box-shadow: 0 14px 26px rgba(30,115,255,.08);
}
.service-hero-copy .payment-badges.compact img[src*="cards-end"] {
  height: 62px;
  max-width: 108px;
  padding: 4px 8px;
}
.service-hero-copy .payment-badges.compact img[src*="netbanking"],
.service-hero-copy .payment-badges.compact img[src*="wallet"] {
  height: 44px;
  max-width: 114px;
}

/* Bring service-page hero visuals upward and keep them contained. */
.service-visual-card {
  display: grid;
  align-items: center;
  justify-items: center;
}
.service-visual-card .service-hero-art {
  top: clamp(34px, 6vw, 64px);
  bottom: auto !important;
  left: clamp(20px, 4vw, 42px);
  width: min(56%, 380px);
  max-height: 360px;
  object-fit: contain;
}
.service-index-page .service-visual-card {
  align-items: start;
  padding-top: clamp(28px, 5vw, 54px);
}
.service-index-page .service-hero-art {
  top: clamp(44px, 7vw, 82px) !important;
  bottom: auto !important;
  left: 50% !important;
  width: min(82%, 560px) !important;
  max-height: 360px;
  transform: translateX(-50%) rotate(-1deg) !important;
  animation: none !important;
  object-fit: contain;
}
.service-index-page .service-float-card {
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(46px, 7vw, 88px);
}

/* Service directory cards: pull illustrations upward for better balance. */
.service-index-card {
  grid-template-rows: 132px 1fr !important;
  align-content: start;
}
.service-index-card img,
.service-index-card .service-card-art {
  height: 136px !important;
  object-position: center top;
  transform: translateY(-10px);
}
.service-index-card > div {
  transform: translateY(-4px);
}

/* Partner section uses only relevant logos on service pages; make tiles consistent. */
.partner-mini-section {
  padding-top: clamp(14px, 3vw, 26px);
  padding-bottom: clamp(14px, 3vw, 26px);
}
.partner-logo-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 14px;
}
.partner-logo-grid.compact .partner-logo {
  min-height: 74px;
}
.partner-logo.fastag img {
  max-height: 34px;
  max-width: 144px;
}
.partner-logo-grid.compact .partner-logo.fastag img {
  max-height: 32px;
  max-width: 142px;
}
.partner-logo-grid.compact .partner-logo.razorpay img { max-height: 42px; }
.partner-logo-grid.compact .partner-logo.cashfree img { max-height: 48px; }
.partner-logo-grid.compact .partner-logo.payu img { max-height: 44px; }
.partner-logo-grid.compact .partner-logo.idfc img { max-height: 44px; }

/* Footer now stays lightweight. */
.site-footer {
  padding-bottom: 20px;
}
.site-footer .footer-bottom {
  margin-top: clamp(22px, 3vw, 36px);
}

@media (max-width: 980px) {
  .service-visual-card .service-hero-art {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: min(80%, 420px) !important;
    margin: 8px auto 0;
    transform: none !important;
  }
  .service-index-page .service-hero-art {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: min(86%, 520px) !important;
    transform: none !important;
    margin: 0 auto 18px;
  }
}
@media (max-width: 640px) {
  .service-hero-copy .payment-badges.compact img {
    height: 42px;
    max-width: 104px;
  }
  .service-hero-copy .payment-badges.compact img[src*="cards-end"] {
    height: 54px;
  }
  .service-index-card {
    grid-template-rows: 120px auto !important;
  }
  .service-index-card img,
  .service-index-card .service-card-art {
    height: 120px !important;
  }
}


/* v19 final cleanup: reduce repeated logos and refine service visuals */
.service-page .service-hero-copy > .payment-badges.compact,
.service-page .service-hero-copy > .official-logo-strip,
.service-page .service-hero-copy > .network-assurance {
  display: none !important;
}
.footer-trust-row {
  display: none !important;
}
/* Keep service visuals higher and fully visible. */
.service-visual-card .service-hero-art {
  top: clamp(28px, 5vw, 62px) !important;
  bottom: auto !important;
  object-position: center top;
}
.service-index-page .service-visual-card {
  align-items: start !important;
  padding-top: clamp(28px, 5vw, 56px) !important;
}
.service-index-page .service-hero-art {
  top: clamp(34px, 6vw, 76px) !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) rotate(-1deg) !important;
  animation: none !important;
}
.service-index-card img,
.service-index-card .service-card-art,
.spotlight-card > img {
  object-position: center top !important;
}
/* Payment option logos: ensure Net Banking and Wallet are not visually tiny. */
.payment-logo-cell.netbanking img {
  max-width: 82% !important;
  max-height: 78px !important;
}
.payment-logo-cell.wallet img {
  max-width: 68% !important;
  max-height: 74px !important;
}
.payment-logo-cell.cards img[src*="cards-end"] {
  max-width: 78% !important;
  max-height: 82px !important;
}
/* Service hero now breathes better after removing duplicate logo rows. */
.service-page .service-hero-copy .hero-actions {
  margin-top: 24px;
}
@media (max-width: 980px) {
  .service-visual-card .service-hero-art,
  .service-index-page .service-hero-art {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 auto 18px !important;
  }
}


/* v20 service payment-logo polish: make Net Banking and Wallet more visible everywhere */
.payment-logo-cell.netbanking img[src*="bank-official"] {
  max-width: 60% !important;
  max-height: 84px !important;
  border-radius: 18px;
}
.payment-logo-cell.wallet img[src*="wallet-official"] {
  max-width: 46% !important;
  max-height: 88px !important;
  border-radius: 16px;
}
.payment-badges.compact img[src*="bank-official"] {
  width: 74px !important;
  height: 56px !important;
  padding: 4px 8px;
  background: #fff;
  border: 1px solid rgba(30,115,255,.13);
  box-shadow: 0 10px 20px rgba(30,115,255,.08);
}
.payment-badges.compact img[src*="wallet-official"] {
  width: 54px !important;
  height: 54px !important;
  padding: 2px;
  background: #fff;
  border: 1px solid rgba(30,115,255,.13);
  box-shadow: 0 10px 20px rgba(30,115,255,.08);
}
.partner-logo-grid.compact .partner-logo.netbanking img {
  max-height: 42px;
  max-width: 72px;
  border-radius: 12px;
}
.partner-logo-grid.compact .partner-logo.wallet img {
  max-height: 40px;
  max-width: 48px;
  border-radius: 10px;
}

/* v21 service hero and mobile menu polish */
@media (min-width: 981px) {
  .service-page .service-visual-card {
    min-height: 640px !important;
    overflow: hidden;
  }

  .service-page .service-phone.service-phone-overlay {
    position: absolute !important;
    top: clamp(28px, 4vw, 46px) !important;
    right: clamp(44px, 6vw, 84px) !important;
    width: min(280px, 42%) !important;
    min-height: 480px !important;
    padding: 38px 20px 24px !important;
    transform: rotate(2deg) !important;
    z-index: 5 !important;
  }

  .service-page .service-phone .service-phone-head {
    padding: 16px !important;
  }

  .service-page .service-phone .service-icon-large {
    width: 96px !important;
    height: 96px !important;
    margin: 20px auto !important;
  }

  .service-page .service-preview-lines {
    gap: 10px !important;
    margin-bottom: 18px !important;
  }

  .service-page .service-preview-lines span {
    height: 40px !important;
  }

  .service-page .service-phone .pay-preview,
  .service-page .service-phone .pay-preview-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 52px !important;
    margin-top: 14px !important;
    position: relative;
    z-index: 7;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .service-page .service-float-card {
    left: clamp(24px, 4vw, 48px) !important;
    right: auto !important;
    bottom: clamp(26px, 4vw, 44px) !important;
    width: min(240px, 40%) !important;
    z-index: 6 !important;
  }

  .service-page .service-visual-card .service-hero-art {
    top: clamp(34px, 5vw, 62px) !important;
    left: clamp(18px, 4vw, 42px) !important;
    width: min(48%, 360px) !important;
    max-height: 330px !important;
    object-fit: contain;
  }
}

@media (max-width: 980px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 90;
    background:
      radial-gradient(circle at 12% 12%, rgba(30,115,255,.12), transparent 18rem),
      radial-gradient(circle at 92% 10%, rgba(8,197,216,.14), transparent 18rem),
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,249,255,.98));
    backdrop-filter: blur(18px);
  }

  .site-header {
    z-index: 1000;
  }

  .menu-open .primary-nav {
    z-index: 1001;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    background:
      radial-gradient(circle at 14% 10%, rgba(30,115,255,.10), transparent 13rem),
      linear-gradient(180deg, rgba(255,255,255,1), rgba(239,249,255,1)) !important;
    border: 1px solid rgba(30,115,255,.16) !important;
    box-shadow: 0 28px 70px rgba(8,68,130,.18) !important;
    backdrop-filter: none !important;
  }

  .menu-open .primary-nav a {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(30,115,255,.08);
  }

  .menu-open .primary-nav a.active {
    background: linear-gradient(180deg, rgba(30,115,255,.13), rgba(8,197,216,.10));
  }
}

@media (max-width: 640px) {
  .ecosystem-stage {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
    transform: none !important;
    place-items: stretch !important;
  }

  .ecosystem-stage::before,
  .ecosystem-stage::after,
  .ecosystem-rails {
    display: none !important;
  }

  .ecosystem-core {
    grid-column: 1 / -1;
    position: relative !important;
    width: 100% !important;
    min-height: 150px !important;
    transform: none !important;
  }

  .ecosystem-core-logo.ecosystem-core-wordmark {
    width: 180px !important;
    max-width: 82% !important;
  }

  .orbit-logo,
  .orbit-logo.npci,
  .orbit-logo.bharat,
  .orbit-logo.upi,
  .orbit-logo.fastag,
  .orbit-logo.cards {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    min-height: 68px !important;
    transform: none !important;
    translate: none !important;
    animation: none !important;
    padding: 10px 12px;
  }

  .orbit-logo.fastag {
    grid-column: 1 / -1;
  }

  .orbit-logo img {
    max-height: 38px !important;
    max-width: 112px !important;
  }

  .orbit-logo.fastag img {
    max-width: 160px !important;
  }
}


/* v22 main services page hero visual correction */
@media (min-width: 981px) {
  body.service-index-page .service-visual-card {
    min-height: 560px !important;
    padding-top: 0 !important;
    align-items: center !important;
    justify-items: center !important;
  }

  body.service-index-page .service-visual-card .service-hero-art {
    position: absolute !important;
    top: 48% !important;
    left: 50% !important;
    width: min(78%, 560px) !important;
    max-height: 390px !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: translate(-50%, -45%) rotate(-1deg) !important;
    z-index: 2 !important;
  }

  body.service-index-page .service-float-card {
    left: auto !important;
    right: clamp(26px, 5vw, 66px) !important;
    bottom: clamp(34px, 5vw, 70px) !important;
    width: min(250px, 42%) !important;
    z-index: 4 !important;
  }

  body.service-index-page .service-visual-orbit {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}

@media (max-width: 980px) {
  body.service-index-page .service-visual-card {
    min-height: auto !important;
    padding: 26px 18px 30px !important;
    display: grid !important;
    gap: 16px;
  }

  body.service-index-page .service-visual-card .service-hero-art {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: min(92%, 520px) !important;
    max-height: none !important;
    margin: 0 auto !important;
    transform: none !important;
    z-index: 2 !important;
  }

  body.service-index-page .service-float-card {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100%, 320px) !important;
    margin: -8px auto 0 !important;
  }
}


/* v22 service directory hero fix: restore main services page visual balance */
@media (min-width: 981px) {
  body.service-index-page .service-index-hero {
    padding-top: clamp(52px, 6vw, 86px) !important;
  }

  body.service-index-page .service-index-hero .service-hero-grid {
    align-items: center !important;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1fr) !important;
    gap: clamp(34px, 5vw, 72px) !important;
  }

  body.service-index-page .service-visual-card {
    min-height: 620px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
  }

  body.service-index-page .service-visual-card .service-visual-orbit {
    width: 520px !important;
    height: 520px !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  body.service-index-page .service-visual-card .service-hero-art {
    position: absolute !important;
    left: 50% !important;
    top: 46% !important;
    bottom: auto !important;
    width: min(84%, 610px) !important;
    max-height: 410px !important;
    transform: translate(-50%, -50%) rotate(-1deg) !important;
    object-fit: contain !important;
    object-position: center center !important;
    z-index: 2 !important;
    animation: none !important;
  }

  body.service-index-page .service-float-card {
    right: clamp(24px, 4vw, 56px) !important;
    bottom: clamp(38px, 5vw, 70px) !important;
    left: auto !important;
    width: min(255px, 42%) !important;
    z-index: 5 !important;
  }
}

@media (max-width: 980px) {
  body.service-index-page .service-index-hero {
    padding-top: 34px !important;
  }

  body.service-index-page .service-visual-card {
    min-height: 460px !important;
    padding: 24px 18px 32px !important;
    overflow: hidden !important;
  }

  body.service-index-page .service-visual-card .service-hero-art {
    position: relative !important;
    width: min(92%, 520px) !important;
    max-height: 280px !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 24px auto 0 !important;
    object-fit: contain !important;
  }

  body.service-index-page .service-float-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(92%, 280px) !important;
    margin: 18px auto 0 !important;
  }
}

@media (max-width: 560px) {
  body.service-index-page .service-visual-card {
    min-height: 390px !important;
  }

  body.service-index-page .service-visual-card .service-hero-art {
    width: 96% !important;
    max-height: 235px !important;
    margin-top: 18px !important;
  }
}
