:root {
  --ink: #002364;
  --ink-soft: #3d4a63;
  --paper: #f5f7fa;
  --white: #ffffff;
  --line: #d9dee8;
  --primary: #002364;
  --primary-deep: #00091f;
  --accent: #ffc800;
  --centre: #002364;
  --centre-accent: #ffc800;
  --shadow: 0 18px 50px rgba(0, 17, 49, 0.14);
  --font: "Saira", sans-serif;
  --display: "Saira", sans-serif;
}

* { box-sizing: border-box; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes wavePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.65; }
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 200, 0, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(255, 200, 0, 0); }
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

.container-xl {
  max-width: 1680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
}

/* Nav — dark navy like Phenom IT */
.guide-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #002364;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}
.guide-nav .container-xl {
  position: relative;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}
.brand img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(280px, 62vw);
  object-fit: contain;
}
.nav-toggle {
  display: none;
  border: 0;
  background: #ffc800;
  color: #002364;
  font-size: 18px;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  line-height: 1.2;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.nav-links a:hover,
.nav-links a:focus {
  background: #ffc800;
  color: #002364;
  transform: translateY(-1px);
}
.nav-toggle:hover {
  background: #fff;
  color: #002364;
}

/* Hero — navy + waves, white copy, shaped image */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 56px 0 64px;
  overflow: hidden;
  color: #fff;
  background: #002364;
}
.hero-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(90, 140, 200, 0.18), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 200, 0, 0.08), transparent 45%);
}
.hero-waves::before,
.hero-waves::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(140, 180, 230, 0.22);
  border-radius: 50%;
  animation: wavePulse 9s ease-in-out infinite;
}
.hero-waves::before {
  width: 720px;
  height: 720px;
  right: -180px;
  top: -320px;
}
.hero-waves::after {
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -280px;
  animation-duration: 12s;
  animation-direction: reverse;
}
.hero-product {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px 40px;
  align-items: center;
  width: 100%;
}
.hero-copy {
  padding-right: 8px;
  animation: fadeUp 0.85s ease both;
}
.hero-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.hero-logo i {
  color: #ffc800;
  font-size: 1.7rem;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.15;
  font-weight: 800;
  color: #ffc800;
  margin: 0 0 16px;
}
.hero-hindi {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  margin: 0 0 16px;
}
.hero-hindi span { color: #fff; }
.hero-hindi em {
  font-style: normal;
  color: #ffc800;
}
.hero-lead {
  font-size: 0.98rem;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-main,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn-main {
  background: #ffc800;
  color: #002364;
  border: 1px solid #ffc800;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-main,
.btn-ghost {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-main:hover,
.btn-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: #002364;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: #002364;
  border-radius: 12px;
  animation: fadeUp 0.95s ease 0.12s both;
}
.hero-visual img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: right center;
  transition: transform 0.7s ease;
}
.hero-visual:hover img {
  transform: scale(1.04);
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: #eaf1f7; }

.pain-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 200, 0, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(47, 111, 237, 0.1), transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
  overflow: hidden;
}
.pain-glow {
  position: absolute;
  inset: auto -10% -20% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.12);
  filter: blur(40px);
  pointer-events: none;
}
.pain-intro {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}
.pain-intro h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--ink);
}
.pain-hook {
  display: inline-block;
  margin: 0 0 14px;
  padding: 10px 18px;
  background: #002364;
  color: #ffc800;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  border-radius: 999px;
  line-height: 1.35;
}
.pain-lead {
  margin: 0 auto;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.pain-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 24px;
  border: 1px solid #dce4f0;
  box-shadow: 0 14px 36px rgba(0, 17, 49, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 17, 49, 0.14);
}
.pain-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 17, 49, 0.06);
  pointer-events: none;
}
.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff3c4;
  color: #002364;
  font-size: 18px;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.35;
  padding-right: 48px;
}
.pain-problem {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.pain-fix {
  border-top: 1px dashed #d5dde8;
  padding-top: 14px;
}
.pain-fix span {
  display: inline-block;
  background: #002364;
  color: #ffc800;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.pain-fix p {
  margin: 0;
  color: #1b2433;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}
.pain-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #002364;
  color: #fff;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 18px 40px rgba(0, 17, 49, 0.28);
}
.pain-cta strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.pain-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
}
.pain-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-pain-main,
.btn-pain-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-pain-main {
  background: #ffc800;
  color: #002364;
}
.btn-pain-main:hover {
  background: #fff;
  color: #002364;
  transform: translateY(-2px);
}
.btn-pain-wa {
  background: #25d366;
  color: #fff;
}
.btn-pain-wa:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 12px;
}
.section-head p { color: var(--ink-soft); margin: 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px !important;
}

.panel-intro {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.panel-intro:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 17, 49, 0.16);
}
.panel-intro.centre-tone { border-top-color: var(--accent); }
.panel-intro-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e8ebf2;
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 18px;
}
.centre-tone .panel-intro-icon { background: rgba(255, 200, 0, 0.2); color: var(--primary); }
.panel-intro h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.panel-intro ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

/* Workflow — compact split, no wasted space */
.workflow-screen {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #eef5fb 0%, #f7fafc 48%, #eef5fb 100%);
  padding: 56px 0 60px;
}
.workflow-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.2), transparent 70%);
  pointer-events: none;
}
.workflow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 24px 32px;
  align-items: start;
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.workflow-copy {
  position: sticky;
  top: 88px;
  padding: 4px 0 0;
}
.workflow-copy h2 {
  font-family: "Saira", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: #002364;
  line-height: 1.15;
  margin: 0 0 10px;
}
.workflow-copy > p {
  margin: 0 0 18px;
  color: #4f5e71;
  font-size: 0.98rem;
  line-height: 1.5;
}
.workflow-highlights {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.workflow-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  background: #fff;
  border: 1px solid rgba(0, 17, 49, 0.06);
  border-radius: 999px;
  color: #002364;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(0, 17, 49, 0.04);
}
.workflow-highlights li:nth-child(even) i {
  background: #ffc800;
  color: #002364;
}
.workflow-highlights i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #002364;
  color: #ffc800;
  font-size: 12px;
  flex: 0 0 28px;
}
.flow-track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
}
.flow-track::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, #002364, #ffc800);
  border-radius: 99px;
  z-index: 0;
}
.flow-track li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  position: relative;
  animation: fadeIn 0.55s ease both;
}
.flow-track li:nth-child(1) { animation-delay: 0.05s; }
.flow-track li:nth-child(2) { animation-delay: 0.1s; }
.flow-track li:nth-child(3) { animation-delay: 0.15s; }
.flow-track li:nth-child(4) { animation-delay: 0.2s; }
.flow-track li:nth-child(5) { animation-delay: 0.25s; }
.flow-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #002364;
  color: #ffc800;
  font-family: "Saira", sans-serif;
  font-size: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px #eef5fb;
  margin-top: 8px;
}
.flow-track li:nth-child(even) .flow-step {
  background: #ffc800;
  color: #002364;
}
.flow-body {
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 22px rgba(0, 17, 49, 0.06);
  border: 1px solid rgba(0, 17, 49, 0.04);
  min-width: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.flow-track li:hover .flow-body {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 17, 49, 0.1);
  border-color: rgba(255, 200, 0, 0.45);
}
.flow-track strong {
  display: block;
  margin-bottom: 2px;
  color: #002364;
  font-size: 14px;
  line-height: 1.3;
}
.flow-track p {
  margin: 0;
  color: #4f5e71;
  font-size: 13px;
  line-height: 1.45;
}

/* Section photo + upload */
.section-photo {
  position: relative;
  margin: 0 0 28px;
  border-radius: 16px;
  overflow: hidden;
  background: #002364;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-photo.reveal.in-view,
.section-photo.in-view {
  opacity: 1;
  transform: none;
}
.section-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
}
.section-shot {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
  position: relative;
}
.section-shot img {
  max-height: 520px;
}
.photo-upload {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #002364;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 17, 49, 0.25);
}
.photo-upload input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.photo-upload:hover {
  background: #ffc800;
  color: #002364;
}
.mock-shot {
  background: #0f1c2a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mock-shot.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #1a2b3d;
}
.mock-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4b5d70;
}
.mock-chrome span:nth-child(1) { background: #e57373; }
.mock-chrome span:nth-child(2) { background: #ffd54f; }
.mock-chrome span:nth-child(3) { background: #81c784; }
.mock-chrome em {
  margin-left: 12px;
  color: #9db0c3;
  font-size: 12px;
  font-style: normal;
}
.mock-body { display: grid; grid-template-columns: 180px 1fr; min-height: 240px; }
.mock-side {
  background: #152536;
  color: #c5d4e2;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.mock-side b { color: #fff; margin-bottom: 6px; }
.mock-side.centre-side { background: #002364; }
.mock-main {
  background: linear-gradient(180deg, #f7fafc, #eef1f7);
  color: var(--ink);
  padding: 22px;
}
.mock-main h4 {
  font-family: var(--display);
  margin: 0 0 14px;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mock-stats div {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  border-top: 3px solid var(--primary);
}
.centre-stats div { border-top-color: var(--accent); }
.mock-stats strong { display: block; font-size: 14px; }
.mock-stats i {
  font-style: normal;
  font-size: 12px;
  color: var(--ink-soft);
}
.mock-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}

/* Feature cards */
.feat-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  height: 100%;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  font-family: "Saira", sans-serif;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #ffc800;
}
.feat-card:hover > i {
  transform: scale(1.08);
}
.feat-card > i {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e8ebf2;
  color: #002364;
  margin-bottom: 12px;
  transition: transform 0.28s ease;
}
.section-alt .feat-card > i { background: rgba(255, 200, 0, 0.22); color: var(--primary); }
.feat-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #002364;
  margin: 0 0 8px;
}
.feat-card p {
  margin: 0 0 14px;
  color: #4f5e71;
  font-size: 14px;
}
.feat-shot {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: #eef1f6;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  line-height: 0;
  position: relative;
}
.feat-shot img {
  width: 100%;
  height: 140px;
  transition: transform 0.45s ease;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.feat-card:hover .feat-shot img {
  transform: scale(1.07);
}
.zoom-eye {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffc800;
  color: #002364;
  display: grid;
  place-items: center;
  font-size: 16px;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(0, 17, 49, 0.28);
}
.hero .zoom-eye { display: none !important; }
.feat-shot:hover .zoom-eye,
.section-shot:hover .zoom-eye,
.doc-guide-shot:hover .zoom-eye {
  background: #fff;
}

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 17, 49, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.img-lightbox[hidden] { display: none !important; }
.img-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.35s ease both;
}
.img-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ffc800;
  color: #002364;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(0, 17, 49, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}
.demo-modal[hidden] { display: none !important; }
.demo-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100dvh - 24px);
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.3s ease both;
}
.demo-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  color: #002364;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.demo-modal-close:hover { background: #ffc800; }
.demo-modal-head {
  padding-right: 36px;
  margin-bottom: 12px;
}
.demo-modal-head h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  color: #002364;
  line-height: 1.25;
}
.demo-modal-head p {
  margin: 0;
  color: #5a6578;
  font-size: 0.85rem;
  line-height: 1.35;
}
.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.demo-form-row {
  margin-bottom: 10px;
}
.demo-form-grid .demo-form-row {
  margin-bottom: 0;
}
.demo-form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #002364;
  margin-bottom: 4px;
}
.demo-form-row input,
.demo-form-row textarea {
  width: 100%;
  border: 1px solid #d5dde8;
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  color: #002364;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  resize: none;
}
.demo-form-row input:focus,
.demo-form-row textarea:focus {
  border-color: #ffc800;
  box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.25);
  background: #fff;
}
.demo-form-error {
  margin: 0 0 8px;
  color: #c62828;
  font-size: 12px;
  font-weight: 600;
}
.demo-form-submit {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #ffc800;
  color: #002364;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.demo-form-submit:hover { background: #002364; color: #ffc800; }
.demo-form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
.demo-form-success {
  text-align: center;
  padding: 12px 8px 4px;
}
.demo-form-success i {
  font-size: 36px;
  color: #25d366;
  margin-bottom: 8px;
}
.demo-form-success strong {
  display: block;
  font-size: 1.15rem;
  color: #002364;
  margin-bottom: 6px;
}
.demo-form-success p {
  margin: 0 0 14px;
  color: #5a6578;
  font-size: 0.9rem;
}

@media (max-width: 575.98px) {
  .demo-form-grid { grid-template-columns: 1fr; gap: 8px; }
  .demo-modal-panel { padding: 16px 14px 12px; }
  .demo-modal-head h2 { font-size: 1.1rem; }
}

/* Compare */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
  word-break: break-word;
}
.compare-table th {
  background: #12263a;
  color: #fff;
  font-weight: 600;
}
.compare-table tbody tr {
  transition: background 0.2s ease;
}
.compare-table tbody tr:nth-child(even) { background: #f8fafc; }
.compare-table tbody tr:hover { background: #fff6d6; }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding-top: 12px;
  overflow: visible;
}
.plan-card {
  background: #fff;
  border-radius: 14px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #dfe5f0;
  box-shadow: 0 10px 28px rgba(0, 35, 100, 0.1);
}
.plan-card.is-popular {
  border: 2px solid var(--accent);
  box-shadow: 0 14px 34px rgba(0, 35, 100, 0.16);
}
.plan-badge {
  position: absolute;
  top: -11px;
  right: -8px;
  z-index: 3;
  background: var(--accent);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 9px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 35, 100, 0.18);
}
.plan-ribbon {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  padding: 12px 12px;
  background: var(--primary);
  border-radius: 12px 12px 0 0;
}
.plan-custom .plan-ribbon {
  background: #3a4f7a;
}
.plan-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px 12px 12px;
  border-radius: 0 0 12px 12px;
  background: #fff;
}
.plan-price {
  text-align: center;
  padding: 0;
}
.plan-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.plan-price-row s {
  font-size: 0.92rem;
  font-weight: 600;
  color: #9aa3b5;
  text-decoration: line-through;
}
.plan-price-row strong {
  color: var(--primary);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
}
.plan-custom-label {
  font-size: clamp(1.35rem, 2vw, 1.65rem) !important;
}
.plan-billing {
  margin: 4px 0 0;
  color: #1f8f4e;
  font-size: 11px;
  font-weight: 700;
}
.plan-term {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6b7385;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 8px 0 0;
}
.plan-term span {
  flex: 1;
  height: 1px;
  background: #d8dee8;
}
.plan-desc {
  margin: 6px 0 0;
  text-align: center;
  color: #6b7385;
  font-size: 11px;
  line-height: 1.35;
  min-height: 0;
}
.plan-features {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  flex: 1;
}
.plan-features li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 6px;
  align-items: start;
  padding: 4px 0;
  border-top: 1px solid #edf1f7;
}
.plan-features li:first-child {
  border-top: 0;
}
.plan-features li i {
  color: #1f8f4e;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 2px;
}
.plan-features li div {
  min-width: 0;
}
.plan-features li strong {
  display: block;
  font-size: 11.5px;
  color: #1b2433;
  line-height: 1.2;
}
.plan-features li span {
  display: block;
  font-size: 10px;
  color: #6b7385;
  line-height: 1.3;
  margin-top: 1px;
}
.plan-features li.is-new {
  grid-template-columns: 14px 1fr auto;
}
.plan-new {
  font-style: normal;
  background: var(--accent);
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 6px;
  align-self: start;
  margin-top: 1px;
}
.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.plan-cta-main {
  border: 0;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 6px 14px rgba(255, 200, 0, 0.3);
}
.plan-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 200, 0, 0.4);
}
.plan-cta-outline {
  border: 1.5px solid var(--primary);
  background: #fff;
  color: var(--primary);
}
.plan-cta-outline:hover {
  background: #f3f6fc;
  transform: translateY(-2px);
}

.story-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(18, 38, 58, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.story-card span {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.story-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.story-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.doc-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 28px 40px;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.doc-guide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #ffc800;
}
.doc-guide-alt { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr); }
.doc-guide-alt .doc-gallery { order: 2; }
.doc-guide-alt .doc-guide-copy { order: 1; }
.doc-gallery { min-width: 0; }
.doc-guide-shot {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #eef1f6;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  line-height: 0;
  position: relative;
}
.doc-guide-shot img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}
.doc-guide-shot:hover img {
  transform: scale(1.05);
}
.doc-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.doc-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #eef1f6;
  cursor: pointer;
  line-height: 0;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.doc-thumb:hover {
  transform: translateY(-2px);
}
.doc-thumb img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: cover;
  object-position: top center;
}
.doc-thumb.is-active {
  border-color: #ffc800;
}
.doc-badge {
  display: inline-block;
  background: #002364;
  color: #ffc800;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  animation: badgeGlow 2.4s ease-in-out infinite;
}
.doc-badge-centre {
  background: #ffc800;
  color: #002364;
}
.doc-guide-copy h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #002364;
  margin: 0 0 12px;
}
.doc-guide-copy ol {
  margin: 0;
  padding-left: 18px;
  color: #4f5e71;
}
.doc-guide-copy li {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
}

.callout {
  margin-top: 36px;
  padding: 40px 44px;
  border-radius: 20px;
  background: linear-gradient(120deg, #002364, #00091f);
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-left: 6px solid var(--accent);
}
.callout.in-view { opacity: 1; transform: none; }
.callout h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 10px;
}
.callout p { margin: 0; opacity: 0.95; font-size: 16px; line-height: 1.6; }
.callout-dash { color: var(--accent); }

.callout-cta {
  margin-top: 0;
}
.callout-cta p { margin-bottom: 22px; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feat-support-meta {
  margin: auto 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.feat-support-meta a {
  color: #002364;
  text-decoration: none;
}
.feat-support-meta a:hover { color: #0a3a8a; }

.support-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 24px rgba(18, 38, 58, 0.06);
}
.support-card i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #002364;
  color: #ffc800;
  margin-bottom: 12px;
}
.support-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #002364;
}
.support-card p {
  margin: 0 0 12px;
  color: #4f5e71;
  font-size: 14px;
}
.support-card a,
.support-card span {
  color: #002364;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.support-card a:hover { color: #0a3a8a; }

.guide-footer {
  background: #002364;
  color: rgba(255, 255, 255, 0.72);
  padding: 28px 0 0;
  font-family: "Saira", sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 0.9fr;
  gap: 20px 28px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 8px;
}
.footer-logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.footer-brand p {
  margin: 0;
  max-width: 320px;
  line-height: 1.45;
  font-size: 13px;
}
.footer-col h3 {
  color: #ffc800;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 0;
}
.footer-col li {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.35;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.footer-col a:hover {
  color: #ffc800;
}
.footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 14px;
  font-size: 12px;
  text-align: center;
}
.footer-copy p { margin: 0; }

.wa-float {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wa-float i {
  font-size: 22px;
  line-height: 1;
}
.wa-float:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #ffc800;
  color: #002364;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 17, 49, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.18s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: backTopBounce 2s ease-in-out infinite;
}
.back-to-top:hover {
  background: #fff;
  color: #002364;
  animation: none;
  transform: translateY(-3px);
}
@keyframes backTopBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.feat-card.reveal.in-view:hover,
.panel-intro.reveal.in-view:hover,
.story-card.reveal.in-view:hover,
.doc-guide.reveal.in-view:hover {
  transform: translateY(-6px);
}

.flow-track li:nth-child(1) { animation-delay: 0.05s; }
.flow-track li:nth-child(2) { animation-delay: 0.12s; }
.flow-track li:nth-child(3) { animation-delay: 0.19s; }
.flow-track li:nth-child(4) { animation-delay: 0.26s; }
.flow-track li:nth-child(5) { animation-delay: 0.33s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199.98px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: #002364;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    padding: 12px 14px;
  }
  .nav-links.open { display: flex; }
  .hero-product,
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .hero {
    min-height: auto;
    padding: 32px 0 40px;
  }
  .hero-copy { padding-right: 0; }
  .hero-visual,
  .hero-visual img {
    min-height: 220px;
    border-radius: 16px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .btn-main,
  .hero-actions .btn-ghost {
    flex: 0 0 auto;
    width: auto;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 12px;
  }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .workflow-screen {
    padding: 40px 0 48px;
  }
  .workflow-copy {
    position: static;
    top: auto;
  }
  .flow-track::before {
    left: 17px;
  }
  .section-photo img,
  .section-shot img {
    max-height: 280px;
  }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { flex-direction: row; flex-wrap: wrap; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .feat-shot img { height: 120px; }
  .doc-guide,
  .doc-guide-alt {
    grid-template-columns: 1fr;
  }
  .doc-guide-alt .doc-gallery,
  .doc-guide-alt .doc-guide-copy {
    order: 0;
  }
  .doc-guide-shot img { height: 180px; }
  .doc-thumb img { height: 52px; }
  .callout { padding: 28px 24px; }
  .img-lightbox { padding: 56px 12px 16px; }
  .img-lightbox img {
    max-width: 100%;
    max-height: 78vh;
  }
  .img-lightbox-close {
    top: 10px;
    right: 10px;
  }
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
  .wa-float {
    left: 12px;
    bottom: 14px;
    padding: 10px 14px 10px 12px;
    font-size: 13px;
    gap: 8px;
  }
  .wa-float i { font-size: 20px; }
}

@media (max-width: 575.98px) {
  .brand img { height: 42px; }
  .hero-logo { font-size: 1.45rem; }
  .hero-hindi { font-size: 0.95rem; }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-actions .btn-main,
  .hero-actions .btn-ghost {
    width: auto;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 7px 14px;
    font-size: 12px;
  }
  .workflow-copy h2 { font-size: 1.55rem; }
  .flow-body { padding: 11px 14px; }
  .mock-stats { grid-template-columns: 1fr; }
  .feat-card { padding: 16px; }
  .footer-logo img {
    height: 36px;
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 991.98px) {
  .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .plan-badge { right: 8px; }
}
@media (max-width: 767.98px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-price-row s { font-size: 1rem; }
  .plan-features li { padding: 5px 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-section { padding: 56px 0; }
  .pain-cta { padding: 22px 18px; }
  .pain-cta-actions { width: 100%; }
  .btn-pain-main,
  .btn-pain-wa { flex: 1 1 auto; justify-content: center; }
  .table-wrap {
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table th,
  .compare-table td,
  .compare-table tr {
    display: block;
    width: 100%;
  }
  .compare-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }
  .compare-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .compare-table tbody tr {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 17, 49, 0.06);
  }
  .compare-table tbody tr:nth-child(even) { background: #fff; }
  .compare-table td {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .compare-table td:last-child { border-bottom: 0; }
  .compare-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #002364;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .compare-table td:first-child {
    display: block;
    background: #002364;
    color: #fff;
    font-size: 15px;
    padding: 12px 14px;
  }
  .compare-table td:first-child::before { display: none; }
}
