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

:root {
  --primary: #635bff;
  --secondary: #00c2ff;
  --accent: #ffb703;
  --success: #12b76a;
  --dark: #101828;
  --text: #344054;
  --muted: #667085;
  --light: #f6f9ff;
  --white: #ffffff;
  --border: rgba(16, 24, 40, 0.1);
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 91, 255, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 194, 255, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 54%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 800;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 32px rgba(99, 91, 255, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

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

.nav-btn {
  color: white !important;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(99, 91, 255, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--light);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
  transition: 0.3s;
}

.hero {
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  margin-bottom: 24px;
  color: #344054;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(99, 91, 255, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(18, 183, 106, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero h1::after {
  content: " Fast. Secure. Scalable.";
  display: block;
  background: linear-gradient(135deg, var(--primary), #00a6ff, #12b76a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 40px rgba(99, 91, 255, 0.28);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-white:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  color: var(--dark);
  background: white;
  border: 1px solid var(--border);
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats div {
  min-width: 130px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 555px;
  padding: 28px;
  border-radius: 38px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.65)
    ),
    linear-gradient(135deg, rgba(99, 91, 255, 0.22), rgba(0, 194, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  opacity: 0.75;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  border-radius: 28px;
  color: white;
  background: #0b1220;
  box-shadow: 0 30px 76px rgba(11, 18, 32, 0.32);
}

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

.dashboard-top {
  margin-bottom: 24px;
}

.dashboard-top div {
  display: flex;
  gap: 7px;
}

.dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff5f57;
}

.dashboard-top span:nth-child(2) {
  background: #ffbd2e;
}

.dashboard-top span:nth-child(3) {
  background: #28c840;
}

.dashboard-top p,
.dashboard-title span {
  color: #9ae6b4;
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-title {
  margin-bottom: 20px;
}

.dashboard-title h3 {
  font-size: 1.25rem;
}

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

.metric-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.metric-card small {
  display: block;
  margin-bottom: 8px;
  color: #98a2b3;
}

.metric-card strong {
  font-size: 1.55rem;
}

.chart {
  height: 155px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(99, 91, 255, 0.45),
    rgba(0, 194, 255, 0.22)
  );
}

.chart span {
  flex: 1;
  min-height: 28px;
  border-radius: 999px 999px 7px 7px;
  background: rgba(255, 255, 255, 0.86);
}

.floating-card {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 34px;
  width: min(310px, calc(100% - 48px));
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 24px 62px rgba(16, 24, 40, 0.22);
}

.floating-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef4ff;
}

.floating-card p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading span,
.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 800;
}

.section-heading h2,
.solution-content h2,
.security-card h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.section-heading p,
.solution-content p,
.security-card p,
.cta-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 18px 52px rgba(16, 24, 40, 0.08);
  transition: 0.25s ease;
}

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

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  font-size: 1.45rem;
  background: linear-gradient(
    135deg,
    rgba(99, 91, 255, 0.15),
    rgba(0, 194, 255, 0.15)
  );
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

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

.solutions-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(99, 91, 255, 0.055),
    transparent
  );
}

.solutions-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.check-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--success);
  font-size: 0.8rem;
}

.solution-box {
  padding: 24px;
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.solution-row {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: var(--light);
  margin-bottom: 16px;
}

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

.solution-row.active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.solution-row span {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: white;
  color: var(--primary);
  font-weight: 900;
}

.solution-row p {
  color: inherit;
  opacity: 0.78;
}

.security-section {
  padding: 78px 0;
}

.security-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
  padding: 46px;
  color: white;
  border-radius: 38px;
  background: linear-gradient(135deg, #635bff, #00a6ff);
  box-shadow: var(--shadow);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.84);
}

.security-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 26px;
}

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

.security-features div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.security-features strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.security-features span {
  color: rgba(255, 255, 255, 0.78);
}

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

.process-card {
  padding: 28px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(16, 24, 40, 0.08);
}

.process-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: white;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.process-card h3 {
  margin-bottom: 8px;
}

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

.cta-section {
  padding: 80px 0 92px;
}

.cta-card {
  padding: 48px;
  text-align: center;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 183, 3, 0.16),
      transparent 32%
    ),
    white;
  box-shadow: var(--shadow);
}

.cta-card p {
  max-width: 700px;
  margin: 0 auto 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--dark);
  font: inherit;
  outline: none;
  background: var(--light);
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
}

.form-message {
  margin-top: 16px !important;
  color: var(--success) !important;
  font-weight: 800;
}

.footer {
  padding: 30px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-content div {
  display: flex;
  gap: 20px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s ease;
}

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

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

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

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

  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    letter-spacing: -0.045em;
  }

  .hero-visual {
    min-height: 540px;
    padding: 18px;
  }

  .metrics,
  .services-grid,
  .security-features,
  .process-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .security-card,
  .cta-card {
    padding: 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Shared page/component additions */
.nav-links a.active {
  color: var(--primary);
}

/* Products & Services Page */
.page-hero {
  padding: 92px 0 72px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}
.page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}
.page-hero h1::after {
  content: " Products. Services. Live Updates.";
  display: block;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary),
    var(--success)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.12rem;
}

.notification-showcase {
  min-height: 520px;
  display: grid;
  place-items: center;
}
.phone-mockup {
  position: relative;
  width: min(390px, 100%);
  min-height: 540px;
  padding: 28px 20px;
  border-radius: 48px;
  background: linear-gradient(
    180deg,
    rgba(16, 24, 40, 0.95),
    rgba(16, 24, 40, 0.86)
  );
  border: 10px solid #111827;
  box-shadow: 0 34px 90px rgba(16, 24, 40, 0.24);
  overflow: hidden;
}
.phone-mockup::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(99, 91, 255, 0.45),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(0, 194, 255, 0.38),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.04);
}
.phone-top {
  position: relative;
  z-index: 2;
  width: 94px;
  height: 24px;
  margin: 0 auto 38px;
  border-radius: 999px;
  background: #030712;
}
.phone-screen-title {
  position: absolute;
  z-index: 3;
  left: 32px;
  right: 32px;
  bottom: 36px;
  color: white;
}
.phone-screen-title small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}
.phone-screen-title h3 {
  margin-top: 6px;
  font-size: 1.7rem;
  line-height: 1.05;
}
.notification-card {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 22px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  animation: floatNotification 4.5s ease-in-out infinite;
}
.notification-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.25rem;
}
.notification-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}
.float-two {
  animation-delay: 0.45s;
}
.float-three {
  animation-delay: 0.9s;
}
@keyframes floatNotification {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

.product-grid,
.update-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card,
.update-channel {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: 0 18px 52px rgba(16, 24, 40, 0.08);
  transition: 0.25s ease;
}
.product-card:hover,
.update-channel:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.product-icon,
.channel-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  font-size: 1.65rem;
  background: linear-gradient(
    135deg,
    rgba(99, 91, 255, 0.15),
    rgba(0, 194, 255, 0.15)
  );
}
.product-card h3,
.update-channel h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}
.product-card p,
.update-channel p {
  color: var(--muted);
}
.product-card ul {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 9px;
}
.product-card li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}
.product-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.services-list-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(99, 91, 255, 0.055),
    transparent
  );
}
.wide-service-list {
  display: grid;
  gap: 16px;
}
.wide-service {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.07);
  transition: 0.28s ease;
}
.wide-service:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}
.wide-service span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 900;
}
.wide-service p {
  color: var(--muted);
}

.update-channel {
  text-align: center;
}
.channel-icon {
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-weight: 900;
}
.whatsapp-channel .channel-icon,
.whatsapp {
  background: linear-gradient(135deg, #20c997, #12b76a);
}
.mail-channel .channel-icon,
.mail {
  background: linear-gradient(135deg, #635bff, #00c2ff);
}
.sms-channel .channel-icon,
.sms {
  background: linear-gradient(135deg, #ffb703, #fb8500);
}
.apple-channel .channel-icon {
  background: linear-gradient(135deg, #111827, #475467);
}
.android-channel .channel-icon {
  background: linear-gradient(135deg, #12b76a, #84cc16);
}
.dashboard-channel .channel-icon {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}
.pulse {
  animation: pulseIcon 1.8s infinite;
}
.bounce {
  animation: bounceIcon 2.2s infinite;
}
.shake {
  animation: shakeIcon 2.4s infinite;
}
.glow {
  animation: glowIcon 2s infinite alternate;
}
.rotate {
  animation: rotateIcon 4.5s linear infinite;
}
.radar {
  animation: radarIcon 2s infinite;
}
@keyframes pulseIcon {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.32);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(18, 183, 106, 0);
  }
}
@keyframes bounceIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-11px);
  }
}
@keyframes shakeIcon {
  0%,
  100% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(8deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(5deg);
  }
}
@keyframes glowIcon {
  from {
    box-shadow: 0 0 0 rgba(16, 24, 40, 0);
  }
  to {
    box-shadow: 0 0 34px rgba(16, 24, 40, 0.38);
  }
}
@keyframes rotateIcon {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes radarIcon {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(139, 92, 246, 0);
  }
}

@media (max-width: 980px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .update-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .page-hero {
    padding-top: 62px;
  }
  .page-hero h1 {
    letter-spacing: -0.045em;
  }
  .product-grid,
  .update-channel-grid {
    grid-template-columns: 1fr;
  }
  .wide-service {
    grid-template-columns: 1fr;
  }
}

/* V3 footer and inner pages */
.footer-expanded {
  padding: 54px 0 0;
  background: #0b1220;
  color: rgba(255, 255, 255, 0.76);
  border-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 42px;
  padding-bottom: 38px;
}
.footer-brand p {
  margin-top: 18px;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
}
.footer-expanded .logo {
  color: #fff;
}
.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}
.footer-column h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  transition: 0.2s ease;
}
.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom p {
  margin: 0;
}
.footer-preferences {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  direction: ltr;
}
.theme-switch,
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}
.preference-icon,
.language-switch button {
  border: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease;
}
.preference-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}
.preference-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.language-switch button {
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}
.preference-icon:hover,
.language-switch button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.preference-icon.active,
.language-switch button.active {
  color: #0b1220;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.inner-hero {
  padding: 92px 0 58px;
}
.inner-hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}
.inner-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}
.inner-hero p {
  max-width: 780px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.12rem;
}
.inner-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 30px;
  font-size: 2.2rem;
  background: linear-gradient(
    135deg,
    rgba(99, 91, 255, 0.15),
    rgba(0, 194, 255, 0.15)
  );
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.detail-main,
.detail-sidebar,
.about-card,
.legal-card,
.security-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 18px 52px rgba(16, 24, 40, 0.08);
}
.detail-main {
  padding: 36px;
}
.detail-main h2 {
  margin: 22px 0 10px;
  font-size: 1.55rem;
}
.detail-main h2:first-child {
  margin-top: 0;
}
.detail-main p {
  color: var(--muted);
  margin-bottom: 14px;
}
.detail-sidebar {
  position: sticky;
  top: 100px;
  padding: 28px;
}
.detail-sidebar h3 {
  margin-bottom: 16px;
}
.detail-sidebar ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.detail-sidebar li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 700;
}
.detail-sidebar li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-card {
  padding: 30px;
}
.about-card h2 {
  margin-bottom: 14px;
}
.about-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-section {
  padding-top: 30px;
}
.legal-card {
  padding: 38px;
  max-width: 930px;
}
.legal-card h2 {
  margin: 26px 0 10px;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p {
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-card .legal-meta {
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 800;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.09);
}
.legal-intro {
  padding: 20px;
  border-radius: 22px;
  background: var(--light);
  border: 1px solid rgba(99, 91, 255, 0.12);
}

.security-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.security-detail-card {
  padding: 28px;
}
.security-detail-card h3 {
  margin-bottom: 10px;
}
.security-detail-card p {
  color: var(--muted);
}

.contact-form-large {
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  margin: 0 auto;
}
.contact-form-large select,
.contact-form-large button {
  grid-column: auto;
}

@media (max-width: 980px) {
  .footer-grid,
  .detail-layout,
  .about-grid,
  .security-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-main {
    grid-column: 1 / -1;
  }
  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .footer-grid,
  .detail-layout,
  .about-grid,
  .security-detail-grid,
  .contact-form-large {
    grid-template-columns: 1fr;
  }
  .inner-hero {
    padding-top: 62px;
  }
  .inner-hero h1 {
    letter-spacing: -0.045em;
  }
}

/* V4 unique animated pages */
.product-hero-unique,
.company-hero {
  padding: 92px 0 72px;
}

.product-hero-grid,
.company-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.product-hero-unique h1,
.company-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.product-hero-unique p,
.company-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.unique-visual,
.about-animation,
.contact-animation,
.security-animation,
.legal-animation {
  position: relative;
  min-height: 430px;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 91, 255, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 194, 255, 0.22),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.erp-core,
.cart-circle,
.notify-center,
.shield,
.security-lock,
.message-hub,
.globe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: #fff;
  border-radius: 38px;
  font-weight: 900;
  font-size: 2.1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 30px 80px rgba(99, 91, 255, 0.32);
  z-index: 3;
}

.orbit {
  position: absolute;
  inset: 70px;
  border: 2px dashed rgba(99, 91, 255, 0.28);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.orbit-two {
  inset: 110px;
  animation-direction: reverse;
  animation-duration: 13s;
}
.orbit-node {
  position: absolute;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 26px;
  background: linear-gradient(135deg, #12b76a, #00c2ff);
  font-weight: 900;
  animation: floatSoft 4s ease-in-out infinite;
}
.node-a {
  left: 52px;
  top: 72px;
}
.node-b {
  right: 58px;
  top: 90px;
  animation-delay: 0.4s;
}
.node-c {
  left: 66px;
  bottom: 78px;
  animation-delay: 0.8s;
}
.node-d {
  right: 74px;
  bottom: 70px;
  animation-delay: 1.2s;
}

.browser-window,
.analytics-board {
  position: absolute;
  inset: 58px;
  padding: 24px;
  border-radius: 28px;
  background: #0b1220;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.28);
  animation: floatSoft 4s ease-in-out infinite;
}
.browser-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ff5f57;
}
.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
  background: #28c840;
}
.web-hero-bar {
  height: 92px;
  margin: 28px 0 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  animation: shimmer 3s infinite;
}
.web-lines span {
  display: block;
  height: 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.web-lines span:nth-child(2) {
  width: 70%;
}
.web-lines span:nth-child(3) {
  width: 45%;
}
.web-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.web-card-row i {
  height: 78px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.product-bubble,
.domain-tag,
.notify-chip,
.auth-card,
.message-bubble {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.18);
  animation: floatSoft 4s ease-in-out infinite;
}
.b1 {
  left: 48px;
  top: 70px;
}
.b2 {
  right: 48px;
  top: 120px;
  animation-delay: 0.5s;
}
.b3 {
  left: 74px;
  bottom: 90px;
  animation-delay: 1s;
}
.checkout-line {
  position: absolute;
  left: 92px;
  right: 92px;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--success), transparent);
  animation: scanMove 2.8s infinite;
}
.payment-card {
  position: absolute;
  right: 58px;
  bottom: 76px;
  padding: 20px 28px;
  border-radius: 24px;
  color: white;
  background: linear-gradient(135deg, #12b76a, #84cc16);
  font-weight: 900;
}

.app-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 235px;
  min-height: 390px;
  transform: translate(-50%, -50%);
  padding: 28px 20px;
  border: 10px solid #111827;
  border-radius: 42px;
  background: #0b1220;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.28);
  animation: floatSoft 4s ease-in-out infinite;
}
.app-notch {
  width: 78px;
  height: 20px;
  margin: 0 auto 34px;
  border-radius: 999px;
  background: #030712;
}
.app-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.app-icon-grid span {
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(99, 91, 255, 0.9),
    rgba(0, 194, 255, 0.9)
  );
}
.push-pill {
  margin-top: 22px;
  padding: 14px;
  color: white;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
  animation: pulseIcon 2s infinite;
}

.monitor {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 360px;
  height: 230px;
  transform: translate(-50%, -50%);
  padding: 22px;
  border-radius: 26px;
  background: #0b1220;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.28);
}
.monitor-top {
  height: 38px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 18px;
}
.desktop-panels {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
}
.desktop-panels span {
  height: 118px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}
.desktop-panels span:nth-child(3) {
  grid-column: 1 / -1;
  height: 34px;
}
.keyboard {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: 290px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 14px;
  background: linear-gradient(135deg, #475467, #111827);
}

.live-dot {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #9ae6b4;
  background: rgba(18, 183, 106, 0.15);
  font-weight: 900;
}
.line-chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 16px;
  margin-top: 34px;
}
.line-chart span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  animation: barGrow 2.4s ease-in-out infinite alternate;
}
.line-chart span:nth-child(1) {
  height: 40%;
}
.line-chart span:nth-child(2) {
  height: 75%;
  animation-delay: 0.2s;
}
.line-chart span:nth-child(3) {
  height: 55%;
  animation-delay: 0.4s;
}
.line-chart span:nth-child(4) {
  height: 90%;
  animation-delay: 0.6s;
}

.globe {
  font-size: 3.4rem;
  border-radius: 50%;
}
.tag1 {
  left: 60px;
  top: 92px;
}
.tag2 {
  right: 62px;
  top: 92px;
  animation-delay: 0.4s;
}
.tag3 {
  left: 72px;
  bottom: 92px;
  animation-delay: 0.8s;
}
.tag4 {
  right: 72px;
  bottom: 92px;
  animation-delay: 1.2s;
}

.n1 {
  left: 42px;
  top: 78px;
  background: linear-gradient(135deg, #20c997, #12b76a);
}
.n2 {
  right: 52px;
  top: 92px;
}
.n3 {
  left: 68px;
  bottom: 88px;
  background: linear-gradient(135deg, #ffb703, #fb8500);
}
.n4 {
  right: 78px;
  bottom: 120px;
  background: linear-gradient(135deg, #111827, #475467);
}
.n5 {
  right: 150px;
  bottom: 54px;
  background: linear-gradient(135deg, #12b76a, #84cc16);
}

.shield {
  font-size: 3.2rem;
}
.scan-line,
.scan-beam {
  position: absolute;
  left: 70px;
  right: 70px;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #12b76a, transparent);
  animation: scanMove 2.4s infinite;
  z-index: 4;
}
.face {
  left: 52px;
  top: 82px;
}
.bio {
  right: 48px;
  top: 110px;
  animation-delay: 0.5s;
}
.otp {
  left: 86px;
  bottom: 90px;
  animation-delay: 1s;
}

.unique-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
}
.feature-story,
.feature-list-card,
.value-card {
  padding: 34px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 18px 52px rgba(16, 24, 40, 0.08);
}
.story-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(99, 91, 255, 0.15),
    rgba(0, 194, 255, 0.15)
  );
  font-size: 2rem;
}
.feature-story h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.feature-story p,
.value-card p {
  color: var(--muted);
}
.feature-list-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.feature-list-card li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 800;
}
.feature-list-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.strip-card {
  padding: 26px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 52px rgba(99, 91, 255, 0.22);
}
.strip-card strong {
  display: block;
  opacity: 0.7;
  margin-bottom: 16px;
}
.strip-card p {
  color: rgba(255, 255, 255, 0.78);
}

.about-animation .team-orb {
  position: absolute;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 22px 54px rgba(99, 91, 255, 0.24);
  animation: floatSoft 4s ease-in-out infinite;
}
.team-orb.main {
  left: 50%;
  top: 50%;
  width: 136px;
  height: 136px;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
.o1 {
  left: 60px;
  top: 80px;
  width: 78px;
  height: 78px;
}
.o2 {
  right: 70px;
  top: 95px;
  width: 84px;
  height: 84px;
  animation-delay: 0.4s;
}
.o3 {
  left: 88px;
  bottom: 88px;
  width: 88px;
  height: 88px;
  animation-delay: 0.8s;
}
.o4 {
  right: 88px;
  bottom: 82px;
  width: 82px;
  height: 82px;
  animation-delay: 1.2s;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card h3 {
  margin-bottom: 12px;
}

.message-hub {
  font-size: 3rem;
}
.mb1 {
  left: 44px;
  top: 90px;
}
.mb2 {
  right: 58px;
  top: 116px;
  animation-delay: 0.4s;
}
.mb3 {
  left: 88px;
  bottom: 92px;
  animation-delay: 0.8s;
}

.security-ring {
  position: absolute;
  inset: 76px;
  border: 2px dashed rgba(18, 183, 106, 0.45);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}
.legal-animation .doc-stack {
  position: absolute;
  width: 220px;
  height: 280px;
  left: 50%;
  top: 50%;
  border-radius: 26px;
  background: white;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
}
.d1 {
  transform: translate(-62%, -48%) rotate(-12deg);
  opacity: 0.72;
}
.d2 {
  transform: translate(-48%, -52%) rotate(8deg);
  opacity: 0.86;
}
.d3 {
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.4rem;
}
.d3::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 80px;
  height: 12px;
  border-radius: 999px;
  background: #eef4ff;
  box-shadow:
    0 34px 0 #eef4ff,
    0 68px 0 #eef4ff;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.22);
  }
}
@keyframes scanMove {
  0% {
    transform: translateY(-110px);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(110px);
    opacity: 0;
  }
}
@keyframes barGrow {
  from {
    transform: scaleY(0.78);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .product-hero-grid,
  .company-hero-grid,
  .unique-detail-grid {
    grid-template-columns: 1fr;
  }
  .strip-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .product-hero-unique,
  .company-hero {
    padding-top: 62px;
  }
  .unique-visual,
  .about-animation,
  .contact-animation,
  .security-animation,
  .legal-animation {
    min-height: 360px;
  }
  .strip-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .orbit-node,
  .product-bubble,
  .domain-tag,
  .notify-chip,
  .auth-card,
  .message-bubble {
    font-size: 0.82rem;
    padding: 10px 12px;
  }
  .monitor {
    width: 285px;
  }
}

/* V5 split Products and Services */
.footer-grid-four {
  grid-template-columns: 1.15fr 0.9fr 0.9fr 0.85fr;
}

.footer-heading-link h3 {
  transition: 0.2s ease;
}

.footer-heading-link:hover h3 {
  color: var(--secondary);
}

.card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 12px 18px;
  color: white;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(99, 91, 255, 0.22);
  transition: 0.25s ease;
}

.card-link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(99, 91, 255, 0.28);
}

.card-link-btn span {
  transition: 0.25s ease;
}

.card-link-btn:hover span {
  transform: translateX(4px);
}

.split-listing-hero h1::after {
  content: "";
}

.listing-animation {
  position: relative;
  min-height: 440px;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 91, 255, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 194, 255, 0.24),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.listing-animation::before {
  content: "";
  position: absolute;
  inset: 72px;
  border: 2px dashed rgba(99, 91, 255, 0.28);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.service-listing-animation::before {
  animation-direction: reverse;
}

.listing-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: white;
  border-radius: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 30px 80px rgba(99, 91, 255, 0.32);
  font-weight: 900;
}

.listing-pill {
  position: absolute;
  padding: 14px 18px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, #12b76a, #00c2ff);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.18);
  animation: floatSoft 4s ease-in-out infinite;
}

.lp1 {
  left: 52px;
  top: 82px;
}
.lp2 {
  right: 54px;
  top: 104px;
  animation-delay: 0.45s;
}
.lp3 {
  left: 74px;
  bottom: 92px;
  animation-delay: 0.9s;
}
.lp4 {
  right: 70px;
  bottom: 82px;
  animation-delay: 1.35s;
}

@media (max-width: 980px) {
  .footer-grid-four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .footer-grid-four {
    grid-template-columns: 1fr;
  }

  .listing-animation {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-preferences {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .nav-links,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-column,
html[dir="rtl"] .company-hero,
html[dir="rtl"] .inner-hero,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .detail-main,
html[dir="rtl"] .legal-card {
  text-align: right;
}

html[dir="rtl"] .footer-preferences {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .check-list li,
html[dir="rtl"] .product-card li,
html[dir="rtl"] .detail-sidebar li,
html[dir="rtl"] .feature-list-card li {
  padding-right: 30px;
  padding-left: 0;
}

html[dir="rtl"] .check-list li::before,
html[dir="rtl"] .product-card li::before,
html[dir="rtl"] .detail-sidebar li::before,
html[dir="rtl"] .feature-list-card li::before {
  right: 0;
  left: auto;
}

html[data-theme="dark"] {
  --dark: #f8fbff;
  --text: #d7deea;
  --muted: #9aa8bb;
  --light: #111827;
  --white: #0f172a;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] body {
  color: var(--dark);
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 91, 255, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 194, 255, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #070b14 0%, #0c1322 54%, #070b14 100%);
}

html[data-theme="dark"] .site-header {
  background: rgba(8, 13, 24, 0.86);
  border-bottom-color: var(--border);
}

html[data-theme="dark"] .nav-links,
html[data-theme="dark"] .footer-column a {
  color: #c7d2e1;
}

html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .badge,
html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .hero-stats div,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .update-channel,
html[data-theme="dark"] .solution-box,
html[data-theme="dark"] .solution-row:not(.active),
html[data-theme="dark"] .process-card,
html[data-theme="dark"] .cta-card,
html[data-theme="dark"] .detail-main,
html[data-theme="dark"] .detail-sidebar,
html[data-theme="dark"] .about-card,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .security-detail-card,
html[data-theme="dark"] .feature-story,
html[data-theme="dark"] .feature-list-card,
html[data-theme="dark"] .value-card,
html[data-theme="dark"] .wide-service,
html[data-theme="dark"] .floating-card,
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form select {
  color: var(--dark);
  background: rgba(15, 23, 42, 0.88);
  border-color: var(--border);
}

html[data-theme="dark"] .menu-toggle span {
  background: var(--dark);
}

html[data-theme="dark"] .hero-visual,
html[data-theme="dark"] .unique-visual,
html[data-theme="dark"] .about-animation,
html[data-theme="dark"] .contact-animation,
html[data-theme="dark"] .security-animation,
html[data-theme="dark"] .legal-animation,
html[data-theme="dark"] .listing-animation {
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 91, 255, 0.24),
      transparent 36%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 194, 255, 0.18),
      transparent 36%
    ),
    rgba(15, 23, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .legal-intro,
html[data-theme="dark"] .metric-card,
html[data-theme="dark"] .security-features div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .legal-card .legal-meta {
  background: rgba(99, 91, 255, 0.18);
}

html[data-theme="dark"] .legal-animation .doc-stack {
  background: #111827;
}

html[data-theme="dark"] .d3::before {
  background: #263244;
  box-shadow:
    0 34px 0 #263244,
    0 68px 0 #263244;
}
