:root {
  /* Colors */
  --primary-color: #0052cc;
  --primary-color-hover: #0043a6;
  --text-primary: #0f172a;
  /* Deep premium slate */
  --text-secondary: #475569;
  /* Clean medium slate */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f7fc;
  /* Subtle blue-tinted neutral */
  --bg-tertiary: #edf2f9;
  /* Slightly deeper tint */
  --border-color: rgba(0, 82, 204, 0.12);
  /* Blue-tinted border */

  /* Textures */
  --grid-pattern: radial-gradient(rgba(0, 82, 204, 0.06) 1px, transparent 1px);
  --grid-pattern-dark: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);

  /* Premium Tinted Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 82, 204, 0.04);
  --shadow-md: 0 12px 24px rgba(0, 82, 204, 0.06);
  --shadow-lg: 0 24px 64px rgba(0, 82, 204, 0.10);

  /* Typography */
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout constraints */
  --max-width: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --padding-section: 120px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Utilities */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

@media (min-width: 900px) {
  .mobile-only-lang {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .mobile-toggles {
    position: relative;
  }

  #mobile-lang-select {
    position: absolute !important;
    top: 100%;
    right: 0;
    margin-top: 12px !important;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  pointer-events: none;
  /* Let clicks pass through empty areas */
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
  gap: 16px;
}

@media (min-width: 900px) {
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}

/* Three Wrappers Base */
.nav-wrapper {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  height: 60px;
}

/* Wrapper 1: Logo */
.nav-logo-wrapper {
  padding: 0 24px;
  justify-self: start;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* Limit logo image to a clean size */
.logo img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Wrapper 2: Links */
.nav-links-wrapper {
  padding: 0 32px;
  display: none;
  /* Hidden on mobile */
  justify-self: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
  color: var(--text-secondary);
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Wrapper 3: Actions */
.nav-actions-wrapper {
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.nav-actions {
  display: none;
  /* Hidden on mobile */
  align-items: center;
  gap: 16px;
  padding: 0 8px;
  /* space text btn */
}

.nav-text-btn {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
  padding: 8px;
}

.nav-text-btn:hover {
  color: var(--primary-color);
}

.nav-btn {
  padding: 8px 16px;
  border-radius: 100px;
  margin: 0;
  height: auto;
  gap: 8px;
}

.nav-btn .btn-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.nav-btn .btn-large-text {
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Mobile Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 50%;
  margin-left: 0;
}

@media (min-width: 900px) {

  .nav-links-wrapper,
  .nav-actions {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.mobile-links a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Buttons */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.cta-group .btn {
  min-width: 185px;
}

@media (min-width: 640px) {
  .cta-group {
    flex-direction: row;
  }
}


.hero-trust-text {
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  padding-bottom: 20px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .hero-trust-text {
    margin-top: 24px;
    padding-bottom: 40px;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
}

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

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

svg[viewBox="0 0 384 512"] {
  transform: scale(1.2);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-small-text {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.btn-large-text {
  font-size: 1rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--text-primary);
  color: white;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
  /* Tint shadow */
}

.btn-primary:hover {
  background-color: var(--primary-color);
  box-shadow: 0 12px 24px rgba(0, 82, 204, 0.25);
  color: white;
}

.btn-outline {
  background-color: #ffffff;
  color: var(--text-primary);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.text-primary {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px 0;
  overflow: hidden;
  background: var(--bg-primary);
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* Premium Dim Ambient Patches */
@keyframes ambientPulse {
  0% {
    transform: scale(1.0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-patch {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  animation: ambientPulse 8s ease-in-out infinite alternate;
}

.patch-1 {
  width: 700px;
  height: 700px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.45) 0%, rgba(224, 242, 254, 0.1) 100%);
}

.patch-2 {
  width: 800px;
  height: 800px;
  bottom: -150px;
  right: -200px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.35) 0%, rgba(191, 219, 254, 0.1) 100%);
}

.hero-container {
  line-height: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.hero-headline {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 4rem;
  }
}

.hero-subheadline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

/* Base button styles inherited from generic variables */

.hero-mockup {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-mockup {
    margin-top: 90px;
    margin-bottom: -100px;
    /* Pull down to touch bottom border on mobile and prevent overlap top text */
  }
}

@media (min-width: 992px) {
  .hero-mockup {
    margin-top: 100px;
    margin-bottom: -100px;
    /* Pull down to exactly offset 100px padding */
  }
}

/* ===========================
   Circular Stats Section
=========================== */
.stats-circles-section {
  padding: 80px 0 72px;
  background: #f0f2f5;
}

.stats-circles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  justify-items: center;
}

@media (min-width: 768px) {
  .stats-circles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.stat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 260px;
}

/* Ring SVG */
.stat-ring-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.stat-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  /* start arc from top */
}

/* Track (background ring) — visible light gray */
.stat-track {
  stroke: #e0e3e8;
  stroke-width: 14;
  fill: none;
}

/* Filled arc */
.stat-fill {
  fill: none;
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Three distinct colors matching the reference */
.stat-fill-1 {
  stroke: #e63957;
}

/* rose / red   */
.stat-fill-2 {
  stroke: #2656c9;
}

/* deep blue    */
.stat-fill-3 {
  stroke: #f5a76c;
}

/* peach orange  */

/* Arc endpoint dot */
.stat-dot {
  fill: currentColor;
  /* No CSS transition — GSAP onUpdate drives cx/cy each frame along the arc */
}

.stat-dot-1 {
  color: #e63957;
}

.stat-dot-2 {
  color: #2656c9;
}

.stat-dot-3 {
  color: #f5a76c;
}

/* Inner text centred over the SVG */
.stat-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  pointer-events: none;
}

.stat-ring-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.stat-ring-number {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
}

/* Description box below each ring */
.stat-desc-box {
  width: 100%;
  background: #e8eaee;
  border: none;
  border-radius: var(--border-radius);
  padding: 20px 20px;
  text-align: center;
}

.stat-desc-box strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-desc-1 strong {
  color: #e63957;
}

.stat-desc-2 strong {
  color: #2656c9;
}

.stat-desc-3 strong {
  color: #f5a76c;
}

.stat-desc-box p {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.hero-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius);
  padding: 14px 22px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  animation: floatBubble 5s ease-in-out infinite;
}

.hero-bubble:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 16px 48px rgba(0, 82, 204, 0.25);

}

@keyframes floatBubble {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

.hero-bubble-1 {
  top: -2%;
  left: -5%;
  animation-delay: 0s;
}

.hero-bubble-2 {
  top: -35%;
  right: 5%;
  animation-delay: -1.5s;
}

.hero-bubble-3 {
  bottom: 25%;
  left: -5%;
  animation-delay: -3s;
}

@media (max-width: 1200px) {
  .hero-bubble-1 {
    left: 0%;
  }

  .hero-bubble-2 {
    right: 0%;
  }

  .hero-bubble-3 {
    left: 0%;
  }
}

@media (max-width: 991px) {
  .hero-bubble {
    font-size: 0.8rem;
    padding: 8px 14px;
    border-width: 1px;
    line-height: 1.3;
  }

  .hero-bubble-1 {
    top: 0%;
    left: 0%;
  }

  .hero-bubble-2 {
    top: 0%;
    right: 0%;
  }

  .hero-bubble-3 {
    bottom: 20%;
    left: 5%;
  }
}

@media (max-width: 576px) {
  .hero-bubble {
    display: none;
  }
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}


.hero-hand-image {
  display: block;
  margin-top: -55px;
  width: 250%;
  max-width: 400%;
  max-height: 100vh;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
  filter: drop-shadow(var(--shadow-lg));
  animation: floatImage 4s ease-in-out infinite;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, black 95%, transparent 100%);
}

@media (min-width: 900px) {
  .hero-hand-image {
    margin-top: -275px;
    /* Moved upwards from -260px */
  }
}

/* Trust Bar */
.trust-bar {
  margin-top: 0px;
  z-index: 2;
  padding: 48px 24px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, var(--bg-secondary));
  border-bottom: 1px solid var(--border-color);
}

.trust-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.marquee-scroller {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.logos-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  width: max-content;
  max-width: none;
  margin: 0;
  animation: scrollMarquee 20s linear infinite;
}

.marquee-scroller:hover .logos-grid {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.4;
  letter-spacing: -0.02em;
  filter: grayscale(100%);
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 1;
  color: var(--primary-color);
  filter: grayscale(0%);
}

/* ===== Features Section ===== */
.features {
  padding: var(--padding-section) 0;
  background: var(--bg-primary);
  background-image: var(--grid-pattern);
  background-size: 32px 32px;
  overflow-x: hidden;
  /* only clip horizontal during icon animation */
}

/* Header */
.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-color);
  background: rgba(0, 82, 204, 0.07);
  border: 1px solid rgba(0, 82, 204, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.features-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.features-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ─── Features Slider ───────────────────────────── */
.features-slider-outer {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 8px;
  /* give dots room to breathe */
}

/* Cards Grid */
.features-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .features-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 28px;
    display: grid;
    align-items: stretch;
  }

  .feature-card-v2:nth-child(1),
  .feature-card-v2:nth-child(4) {
    grid-column: 1;
    grid-row: 1;
  }

  .feature-card-v2:nth-child(2),
  .feature-card-v2:nth-child(5) {
    grid-column: 2;
    grid-row: 1;
  }

  .feature-card-v2:nth-child(3),
  .feature-card-v2:nth-child(6) {
    grid-column: 3;
    grid-row: 1;
  }

  /* Hide extra cards by default using opacity to preserve container height */
  .feature-card-extra {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    visibility: hidden;
  }

  .feature-card-v2:not(.feature-card-extra) {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    visibility: visible;
  }

  .features-cards-grid.slide-2 .feature-card-extra {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    visibility: visible;
  }

  .features-cards-grid.slide-2 .feature-card-v2:not(.feature-card-extra) {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    visibility: hidden;
  }
}

@media (max-width: 767px) {

  /* On mobile show all stacked — no slider */
  .feature-card-extra {
    display: block;
  }
}

/* Slider Dots */
.features-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

/* Hide slider dots on mobile (all cards stacked, no need for pagination) */
@media (max-width: 767px) {
  .features-slider-dots {
    display: none;
  }
}

.feat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.2);
  border: 2px solid rgba(0, 82, 204, 0.25);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
  padding: 0;
}

.feat-dot.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.35);
}

.feature-card-v2 {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 36px 32px 40px;
  box-shadow: var(--shadow-sm);
  overflow: visible;
  transition: box-shadow var(--transition-medium);
}

.feature-card-v2:hover {
  box-shadow: var(--shadow-lg);
}

/* Icon Wrap */
.feat-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(0, 82, 204, 0.06);
  border: 1px solid rgba(0, 82, 204, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--primary-color);
  position: relative;
  /* needed for z-index during animation */
}

.feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Card Text */
.feature-card-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.feature-card-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}


/* ===== Product Showcase v2 (Diagonal) ===== */
.features-showcase {
  padding: var(--padding-section) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  margin-bottom: 80px;
}

.showcase-main-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 120px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .showcase-row {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .showcase-row.reverse .sc-text-col {
    order: 2;
  }

  .showcase-row.reverse .sc-graphic-col {
    order: 1;
  }
}

@media (max-width: 899px) {
  .sc-graphic-col {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    max-width: calc(100% + 48px);
    padding: 20px 0;
  }
}

/* Text Column */
.sc-text-col {
  max-width: 480px;
}

.sc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.sc-label-icon {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
}

.sc-text-col h3 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}


/* Showcase Bullet Points */
.showcase-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.showcase-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: rgba(0, 82, 204, 0.09);
  border: 1px solid rgba(0, 82, 204, 0.18);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%230052cc' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Glow keyframe for individual tick */
@keyframes tickGlow {

  0%,
  100% {
    background-color: rgba(0, 82, 204, 0.09);
    border-color: rgba(0, 82, 204, 0.18);
    box-shadow: none;
  }

  50% {
    background-color: rgba(0, 82, 204, 0.22);
    border-color: rgba(0, 82, 204, 0.55);
    box-shadow: 0 0 8px 3px rgba(0, 82, 204, 0.35);
  }
}

/* Applied per-li via JS: pulses the ::before tick */
.showcase-bullets li.tick-glow::before {
  animation: tickGlow 0.7s ease forwards;
}

.sc-text-col p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 100px;
}

/* Show Get Started only on mobile — desktop uses floating nav buttons */
.btn-mobile-only {
  display: none;
}

@media (max-width: 899px) {
  .btn-mobile-only {
    display: inline-flex;
  }
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Graphic Column & Glassmorphism */



.glass-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 82, 204, 0.06), 0 0 0 1px rgba(0, 82, 204, 0.05) inset;
  padding: 24px;
  z-index: 2;
  transition: transform var(--transition-medium);
}

.showcase-row:hover .glass-card {
  transform: translateY(-8px);
}

.glass-blur {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glass-blur-1 {
  background: var(--primary-color);
}

.glass-blur-2 {
  background: #3b82f6;
}

.glass-blur-3 {
  background: #60a5fa;
}

.glass-blur-4 {
  background: var(--primary-color);
}

/* Feature UI Image Embeds */
.image-card {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}



.feature-image {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 82, 204, 0.12);
  display: block;
}


/* Benefits */
.benefits {
  padding: var(--padding-section) 0;
  background: white;
}

.percentage-bars-container {
  max-width: 900px;
  margin: 80px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perc-track {
  width: 100%;
  background-color: var(--bg-tertiary);
  border-radius: 16px;
  overflow: hidden;
}

.perc-fill {
  background-color: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 24px;
}

.perc-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 75%;
}

.perc-num {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.benefits-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .benefits-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .percentage-bars-container {
    margin-top: 56px;
  }

  .perc-fill {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    min-width: 260px;
  }

  .perc-text {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .perc-num {
    align-self: flex-end;
    font-size: 2.75rem;
  }
}

.benefit-block {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.benefit-number {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-weight: 600;
  background: var(--bg-tertiary);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
}

.benefit-block h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.benefit-block p {
  color: var(--text-secondary);
}

/* Testimonial */
.testimonial {
  padding: var(--padding-section) 0;
  background: var(--bg-secondary);
  background-image: radial-gradient(circle at center, rgba(0, 82, 204, 0.04) 0%, transparent 70%);
  position: relative;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.testimonial-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .testimonial-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.testimonial-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  max-width: 500px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.testi-nav {
  display: flex;
  gap: 16px;
}

.t-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  transform-origin: center center;
}

.t-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.t-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.testi-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.testi-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.testi-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .testi-card {
    flex: 0 0 280px;
  }
}

.testi-quote-mark {
  color: var(--primary-color);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0;
  margin-top: 40px;
  margin-bottom: 32px;
  opacity: 0.8;
}

.testi-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  flex-grow: 1;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--border-color);
  /* placeholder color */
  background-position: center;
  background-size: cover;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testi-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* FAQ & Contact Section */
.final-cta {
  padding: var(--padding-section) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
  }
}

.faq-left,
.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-heading {
  font-size: clamp(3rem, 3vw, 4rem);
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.faq-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 400px;
}

/* Form Styles */
.faq-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 440px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  width: 100%;
  padding: 18px 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  background: var(--bg-tertiary);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-input:focus {
  outline: none;
  background: var(--bg-primary);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  align-self: flex-start;
  margin-top: 12px;
  min-width: 160px;
}

/* FAQ Styles */
.faq-right-heading {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition-medium);
  color: var(--text-secondary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  transition: max-height var(--transition-medium), opacity var(--transition-medium);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Final Download CTA */
.final-download-cta {
  padding: 100px 0;
  background: var(--primary-color);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-download-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grid-pattern-dark);
  background-size: 32px 32px;
  opacity: 0.3;
  pointer-events: none;
}

.final-download-cta .cta-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.download-cta-title {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.download-cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 48px;
}

.final-download-cta .cta-group {
  justify-content: center;
  margin-top: 0;
}

.final-download-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.final-download-cta .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.final-download-cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-download-cta .btn-primary:hover {
  background-color: #f8fafc;
  color: #000;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-primary);
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.logo.footer-logo {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 32px;
}

.footer-download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-btn {
  padding: 10px 20px;
}

.footer-btn .btn-icon {
  width: 24px;
  height: 24px;
}

.btn.footer-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}


.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-links-col h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

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

.footer-india-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (min-width: 640px) {
  .footer-india-section {
    flex-direction: row;
    justify-content: space-between;
  }
}

.india-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
  cursor: default;
}

.india-text:hover {
  color: var(--primary-color);
}

.india-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.india-logo {
  height: 48px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.designed-by a,
.developed-by a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
}

.designed-by a:hover,
.developed-by a:hover {
  color: var(--primary-color);
}

/* Footer Buttons Equilzer */
.footer-dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.footer-download-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.footer-download-btns .footer-btn {
  width: 100%;
  max-width: 250px;
}

/* Mobile Sticky Buttons */
.mobile-float-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-float-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: transparent;
    padding: 12px 16px 20px 16px;
    z-index: 1000;
    gap: 12px;
    pointer-events: none;
  }

  .mobile-float-cta .float-btn {
    pointer-events: auto;
    flex: 1;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 100px;
  }

  .mobile-float-cta .float-btn .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  body {
    padding-bottom: 74px;
    /* Prevent floating CTA from hiding content */
  }

  /* Hide the hero buttons on mobile since we have the sticky one */
  .hero .cta-group {
    display: none;
  }
}

/* Float CTA hidden state (toggled by IntersectionObserver on #download) */
.mobile-float-cta.float-cta-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Ensure transition on show too */
.mobile-float-cta {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ── Mobile layout bug fixes ───────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Stats section: prevent horizontal overflow */
  .stats-circles-section {
    padding: 60px 0 48px;
    overflow: hidden;
  }

  /* Showcase rows: full-width on mobile, no side overflow */
  .sc-graphic-col {
    padding: 20px 0;
  }

  .image-card {
    max-width: 260px;
  }

  .showcase-row {
    margin-bottom: 64px;
  }

  /* FAQ form: full width inputs */
  .faq-form {
    max-width: 100%;
  }

  /* Benefits bars: prevent overflow if bar text is long */
  .perc-track {
    overflow: hidden;
  }

  /* Percentage bar number aligns right in column layout */
  .perc-num {
    font-size: 2.5rem;
  }

  /* Footer download buttons: full row on mobile */
  .footer-download-btns .footer-btn {
    max-width: 100%;
  }

  /* Testimonial cards don't overflow horizontally */
  .testimonial {
    overflow: hidden;
  }

  /* FAQheading smaller on mobile */
  .faq-heading {
    font-size: 2.25rem;
  }
}

/* ===========================
   Comparison Table
=========================== */
.comparison-table-wrapper {
  margin: 64px auto 80px;
  max-width: 1000px;
  padding: 40px 16px;
  /* Removed border and background from wrapper to support elevated column */
}

.comparison-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 8px;
  /* space for column shadow */
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
  text-align: left;
}

@media (max-width: 768px) {
  .comparison-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
  }

  .comparison-table {
    min-width: 600px;
    table-layout: auto;
    word-wrap: normal;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px 12px;
    font-size: 0.85rem;
  }

  .comparison-table th {
    font-size: 0.95rem;
  }

  .comparison-table th.haazri-col-header {
    font-size: 1.15rem;
    padding-top: 20px;
    padding-bottom: 16px;
  }
}

/* Base cells */
.comparison-table th,
.comparison-table td {
  padding: 24px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table th {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 24px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Feature Col (First Column) */
.comparison-table th:first-child,
.comparison-table td:first-child {
  padding-left: 24px;
}

/* Others Column Styling (Middle) */
.others-col-header,
.others-col {
  text-align: center;
  color: var(--text-secondary);
}

.comparison-table th.others-col-header {
  font-weight: 600;
}

/* Haazri Column - Highlighted floating card */
.comparison-table th.haazri-col-header,
.comparison-table td.haazri-col {
  text-align: center;
  color: #0043a6;
  position: relative;
  z-index: 2;
  border-bottom: none;
  /* remove normal border to prevent seams, use pseudo element for internal borders if needed */
}

.comparison-table th.haazri-col-header {
  background: linear-gradient(180deg, #ffffff 0%, rgba(244, 247, 252, 0.8) 100%);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -12px 24px rgba(0, 82, 204, 0.08), 0 0 0 1px rgba(0, 82, 204, 0.03);
  /* Top card edge */
  padding-top: 32px;
  padding-bottom: 24px;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.comparison-table td.haazri-col {
  background: rgba(244, 247, 252, 0.8);
  box-shadow: -2px 0 10px rgba(0, 82, 204, 0.04), 2px 0 10px rgba(0, 82, 204, 0.04);
  font-weight: 600;
  color: var(--text-primary);
}

/* Last cell of the Haazri column */
.comparison-table tr:last-child td.haazri-col {
  background: linear-gradient(180deg, rgba(244, 247, 252, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 24px rgba(0, 82, 204, 0.08), 0 0 0 1px rgba(0, 82, 204, 0.03);
  /* Bottom edge */
  padding-bottom: 32px;
}

/* Internal borders for highlighted col */
.comparison-table td.haazri-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: rgba(0, 82, 204, 0.08);
}

.comparison-table tr:last-child td.haazri-col::after {
  display: none;
}

/* Specific column sizing */
.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
  width: 30%;
}

@media (max-width: 768px) {

  .comparison-table th:nth-child(2),
  .comparison-table th:nth-child(3) {
    width: 35%;
  }

  .comparison-table th:nth-child(1),
  .comparison-table td:nth-child(1) {
    width: 30%;
  }
}

/* Icons */
.cross-icon {
  color: #a0aec0;
  /* Match muted grey cross from image */
  font-weight: normal;
  margin-right: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
}

.check-icon {
  color: var(--primary-color);
  /* Blue check instead of green box */
  font-weight: 700;
  margin-right: 8px;
  font-size: 1.2rem;
  vertical-align: middle;
}

/* Hover effects */
.comparison-table tbody tr {
  transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
  background: rgba(0, 82, 204, 0.02);
}

/* Ensure the Haazri column stays distinct during hover */
.comparison-table tbody tr:hover td.haazri-col {
  background: rgba(240, 244, 250, 1);
}

/* ===========================
   Go to Top Button (Water Fill)
=========================== */
.go-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 99;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
  transform: translateY(20px);
  padding: 0;
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.go-to-top .water-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--primary-color);
  z-index: 1;
  /* Height is controlled via JS linearly as user scrolls */
}

/* Continuous flowing water wave at the top of the fill */
.go-to-top .water-fill::before,
.go-to-top .water-fill::after {
  content: "";
  position: absolute;
  bottom: 100%;
  /* Sits exactly on top of the water fill */
  left: 0;
  width: 200%;
  height: 10px;
  background-color: var(--primary-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q25,20 50,10 T100,10 T150,10 T200,10 L200,20 L0,20 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 50% 100%;
  -webkit-mask-repeat: repeat-x;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q25,20 50,10 T100,10 T150,10 T200,10 L200,20 L0,20 Z'/%3E%3C/svg%3E");
  mask-size: 50% 100%;
  mask-repeat: repeat-x;
  pointer-events: none;
}

.go-to-top .water-fill::before {
  animation: waveAnim 1.5s linear infinite;
  opacity: 0.6;
  bottom: calc(100% - 2px);
  /* Slight offset for depth */
}

.go-to-top .water-fill::after {
  animation: waveAnim 2s linear infinite reverse;
  opacity: 1;
}

@keyframes waveAnim {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.go-to-top .base-arrow {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 24px;
  height: 24px;
  color: #ffffff;
  z-index: 2;
  opacity: 1;
  /* Faint outline initially */
  transition: opacity 0.3s ease;
}

.go-to-top:hover .base-arrow {
  opacity: 0.8;
}

.go-to-top .water-fill-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: 3;
  overflow: hidden;
  /* Height is controlled via JS exactly matching .water-fill */
}

.go-to-top .fill-arrow {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 24px;
  height: 24px;
  color: #ffffff;
}

/* Responsiveness - Mobile, Tablet */
@media (max-width: 768px) {
  .go-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .go-to-top .base-arrow,
  .go-to-top .fill-arrow {
    width: 20px;
    height: 20px;
    bottom: 12px;
    left: 12px;
  }
}