:root {
  --primary-deep: #0a0a0a;
  --primary-base: #181818;
  --teal-deep: #ff7a1a;
  --teal-vibrant: #ff922b;
  --teal-glow: #ffb347;
  --gold-accent: #ff9f1c;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-200: #e2e8f0;
  --gradient-hero: linear-gradient(125deg, #050505 0%, #161616 58%, #2a1508 100%);
  --gradient-accent: linear-gradient(95deg, #ff6a00, #ff922b, #ffb347);
  --shadow-soft: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Bitter", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #f7f3ee;
  color: var(--gray-800);
  overflow-x: hidden;
}

body.is-site-loading {
  overflow: hidden;
}

body.is-site-loading > :not(.site-loader) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.site-ready > :not(.site-loader) {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 179, 71, 0.16), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(255, 122, 26, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(19, 19, 19, 0.97) 58%, rgba(34, 18, 8, 0.98));
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0s linear 0s;
}

body.site-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

.site-loader-panel {
  position: relative;
  width: min(320px, 100%);
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-loader-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -58%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 146, 43, 0.34) 0%, rgba(255, 146, 43, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
}

.site-loader-ring {
  display: none;
}

.site-loader-logo {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3));
  animation: site-loader-pulse 1.8s ease-in-out infinite;
}

.site-loader-title {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-loader-copy {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-loader-bar {
  display: none;
}

.site-loader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6a00, #ff922b, #ffcf8a);
  animation: site-loader-bar 1.25s ease-in-out infinite;
}

@keyframes site-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes site-loader-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes site-loader-bar {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}

@media (max-width: 767.98px) {
  .site-loader-panel {
    width: min(260px, 100%);
  }

  .site-loader-logo {
    width: 104px;
    height: 104px;
  }

  .site-loader-title {
    font-size: 1.05rem;
  }

  .site-loader-copy {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader * {
    animation: none !important;
    transition: none !important;
  }
}

body.inner-page main {
  padding-top: 86px;
}

body[data-page="dashboard"] .glass-nav,
body[data-page="dashboard"] .footer-dark,
body[data-page="dashboard"] .whatsapp-float {
  display: none !important;
}

body[data-page="admin-login"] .glass-nav,
body[data-page="admin-login"] .footer-dark,
body[data-page="admin-login"] .whatsapp-float {
  display: none !important;
}

body[data-page="dashboard"] main {
  padding-top: 0;
}

body[data-page="admin-login"] main {
  padding-top: 0;
}

.admin-simple {
  min-height: 100vh;
  padding: 2rem 0 3rem;
  background: #f4f6fb;
}

.admin-simple-shell {
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
}

.admin-simple-header,
.admin-simple-card,
.admin-simple-stat {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.admin-simple-header {
  border-radius: 28px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-simple-kicker {
  margin: 0;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
}

.admin-simple-header h1 {
  margin: 0.45rem 0 0.4rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #111827;
}

.admin-simple-subtitle {
  margin: 0;
  color: #667085;
  max-width: 720px;
}

.admin-simple-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-simple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  border: 0;
  font-weight: 700;
}

.admin-simple-btn.full {
  width: 100%;
}

.admin-simple-btn-primary {
  background: linear-gradient(135deg, #5f27ff, #8e2dff 58%, #ff33c7);
  color: #fff;
}

.admin-simple-btn-dark {
  background: #111827;
  color: #fff;
}

.admin-simple-btn-light {
  background: #eef2ff;
  color: #4338ca;
}

.admin-simple-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-simple-stat {
  border-radius: 22px;
  padding: 1.2rem;
}

.admin-simple-stat span {
  display: block;
  color: #6b7280;
  margin-bottom: 0.6rem;
}

.admin-simple-stat strong {
  display: block;
  color: #111827;
  font-size: 2rem;
  line-height: 1;
}

.admin-simple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.admin-simple-card {
  border-radius: 26px;
  padding: 1.35rem;
}

.admin-simple-card-wide {
  grid-column: 1 / -1;
}

.admin-simple-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.admin-simple-card-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: #111827;
}

.admin-simple-card-head p {
  margin: 0;
  color: #667085;
}

.admin-simple-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5f27ff, #8e2dff 58%, #ff33c7);
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.admin-simple-page-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-simple-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f3f4f6;
  color: #374151;
  font-weight: 700;
}

.admin-simple-page-link.active {
  background: #111827;
  color: #fff;
}

.admin-simple-form {
  display: grid;
  gap: 1rem;
}

.admin-simple-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-simple-switch {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #f9fafb;
}

.admin-simple-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-simple-logo-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #f9fafb;
}

.admin-simple-media-list,
.admin-simple-message-list {
  display: grid;
  gap: 0.9rem;
}

.admin-simple-media-item,
.admin-simple-message-item {
  padding: 1rem;
  border-radius: 18px;
  background: #f9fafb;
}

.admin-simple-media-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
}

.admin-simple-media-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
}

.admin-simple-media-item strong,
.admin-simple-message-item strong {
  display: block;
  color: #111827;
}

.admin-simple-media-item span,
.admin-simple-message-top span,
.admin-simple-message-meta span {
  color: #667085;
  font-size: 0.9rem;
}

.admin-simple-media-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.admin-simple-message-top,
.admin-simple-message-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-simple-message-meta {
  margin: 0.4rem 0 0.7rem;
}

.admin-simple-message-item p {
  margin: 0;
  color: #374151;
  white-space: pre-wrap;
}

@media (max-width: 991.98px) {
  .admin-simple-stats,
  .admin-simple-grid,
  .admin-simple-fields {
    grid-template-columns: 1fr;
  }

  .admin-simple-header {
    flex-direction: column;
  }

  .admin-simple-media-item {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

h1,
h2,
h3 {
  font-family: "Bitter", serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 122, 26, 0.22);
  padding: 0.65rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1030;
}

.brand-pill {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: white;
  font-weight: 800;
  font-size: 1.35rem;
}

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-base);
  margin-left: 0.6rem;
}

.brand-name span {
  color: var(--teal-deep);
}

.site-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.site-logo-footer {
  height: 54px;
  max-width: 240px;
}

.nav-link-custom {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding: 0.5rem 0.95rem !important;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  background: rgba(255, 122, 26, 0.12);
  color: var(--teal-deep);
}

.btn-accent-solid {
  background: var(--gradient-accent);
  border: none;
  color: white;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.55rem;
  box-shadow: 0 6px 14px rgba(255, 122, 26, 0.3);
  transition: all 0.25s ease;
}

.btn-accent-solid:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 122, 26, 0.38);
}

.btn-outline-accent {
  border: 1px solid rgba(255, 122, 26, 0.55);
  color: var(--teal-deep);
  background: transparent;
  font-weight: 700;
}

.btn-outline-accent:hover {
  background: rgba(255, 122, 26, 0.1);
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}

.hero-section,
.page-hero {
  background: radial-gradient(circle at 20% 20%, rgba(255, 179, 71, 0.12), transparent 30%), var(--gradient-hero);
  color: white;
}

.hero-section,
.page-hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 179, 71, 0.2), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(255, 122, 26, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(26, 26, 26, 0.96)),
    var(--gradient-hero);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1) brightness(0.56);
}

.hero-tech-bg {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 216, 255, 0.18), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(255, 146, 43, 0.18), transparent 22%),
    linear-gradient(135deg, #04080f, #08121d 48%, #180f0a 100%);
}

.hero-tech-grid,
.hero-tech-beam,
.hero-tech-pulse,
.hero-tech-node {
  position: absolute;
}

.hero-tech-grid {
  inset: -12%;
  background-image:
    linear-gradient(rgba(115, 219, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 219, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 46%, rgba(255, 146, 43, 0.14) 50%, transparent 54% 100%);
  background-size: 46px 46px, 46px 46px, 220px 220px;
  opacity: 0.42;
  animation: hero-tech-grid-drift 18s linear infinite;
}

.hero-tech-beam {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(88, 216, 255, 0), rgba(88, 216, 255, 0.95), rgba(255, 146, 43, 0.22), rgba(255, 146, 43, 0));
  box-shadow: 0 0 18px rgba(88, 216, 255, 0.26);
  opacity: 0.9;
}

.hero-tech-beam.beam-one {
  top: 28%;
  left: 8%;
  width: 44%;
  transform: rotate(18deg);
  animation: hero-tech-beam-sweep 7s ease-in-out infinite;
}

.hero-tech-beam.beam-two {
  right: 10%;
  bottom: 24%;
  width: 36%;
  transform: rotate(-22deg);
  animation: hero-tech-beam-sweep 8.5s ease-in-out infinite reverse;
}

.hero-tech-pulse {
  left: 50%;
  bottom: 14%;
  width: 22rem;
  height: 22rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(88, 216, 255, 0.24) 0, rgba(88, 216, 255, 0.08) 26%, rgba(88, 216, 255, 0) 62%),
    radial-gradient(circle, rgba(255, 146, 43, 0.16) 0, rgba(255, 146, 43, 0) 58%);
  animation: hero-tech-pulse 6.5s ease-in-out infinite;
}

.hero-tech-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8cecff, #ffb26b);
  box-shadow: 0 0 14px rgba(115, 219, 255, 0.55);
}

.hero-tech-node.node-one {
  top: 24%;
  left: 24%;
  animation: hero-tech-node-float-a 5.5s ease-in-out infinite;
}

.hero-tech-node.node-two {
  top: 34%;
  right: 22%;
  animation: hero-tech-node-float-b 6.5s ease-in-out infinite;
}

.hero-tech-node.node-three {
  bottom: 22%;
  left: 66%;
  animation: hero-tech-node-float-c 4.8s ease-in-out infinite;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.68), rgba(17, 17, 17, 0.54)),
    radial-gradient(circle at 18% 20%, rgba(255, 179, 71, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23ff922b' stroke-opacity='0.22' stroke-width='1.2'%3E%3Cpath d='M24 52h64v42h56v38h72'/%3E%3Cpath d='M0 154h54v-28h78v52h108'/%3E%3Cpath d='M36 210v-44h62V98h54V32h68'/%3E%3Cpath d='M190 0v54h-44v44H92v54H0'/%3E%3C/g%3E%3Cg fill='%23ffd1a1' fill-opacity='0.75'%3E%3Ccircle cx='24' cy='52' r='3'/%3E%3Ccircle cx='88' cy='94' r='3'/%3E%3Ccircle cx='144' cy='94' r='3'/%3E%3Ccircle cx='216' cy='132' r='3'/%3E%3Ccircle cx='54' cy='154' r='3'/%3E%3Ccircle cx='132' cy='126' r='3'/%3E%3Ccircle cx='98' cy='166' r='3'/%3E%3Ccircle cx='206' cy='178' r='3'/%3E%3Ccircle cx='36' cy='210' r='3'/%3E%3Ccircle cx='98' cy='98' r='3'/%3E%3Ccircle cx='152' cy='32' r='3'/%3E%3Ccircle cx='190' cy='54' r='3'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 240px 240px, 38px 38px, 38px 38px;
  background-position: center center, center center, center center;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero-section::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 12%;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 179, 71, 0.2) 0%, rgba(255, 179, 71, 0.08) 28%, rgba(255, 179, 71, 0) 62%),
    radial-gradient(circle at 62% 38%, rgba(255, 209, 161, 0.22) 0%, rgba(255, 209, 161, 0) 20%);
  filter: blur(8px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.hero-section .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero {
  padding: 4.75rem 0 3rem;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-kicker {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
}

.section-kicker {
  color: var(--teal-deep);
  background: rgba(255, 122, 26, 0.12);
}

.section-kicker-light {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.hero-title-main,
.page-title {
  color: white;
  line-height: 1.1;
}

.hero-title-main {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 1rem 0;
}

.hero-title-main span,
.page-title span {
  background: linear-gradient(120deg, #ffd1a1, #ff922b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.hero-copy,
.page-copy {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}

.hero-image-wrap {
  max-width: 320px;
  margin-left: auto;
  border: 4px solid var(--gold-accent);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-media-stack {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.video-demo-card {
  position: relative;
  border-radius: 30px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 179, 71, 0.22);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.video-demo-top,
.video-demo-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.video-demo-top {
  margin-bottom: 0.9rem;
}

.video-demo-top--label-only {
  justify-content: flex-end;
}

.video-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
}

.video-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6a00;
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
  animation: pulse-dot 1.8s infinite;
}

.video-live-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.video-demo-screen {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 179, 71, 0.16), transparent 32%),
    linear-gradient(145deg, #090909, #161616 55%, #2a1508);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.leader-screen {
  background: linear-gradient(145deg, #17110c, #28180c 55%, #3a2211);
}

.leader-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.leader-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.06), rgba(15, 15, 15, 0.16) 42%, rgba(15, 15, 15, 0.78)),
    radial-gradient(circle at 74% 18%, rgba(255, 179, 71, 0.34), transparent 34%);
}

.video-grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
}

.video-scanline {
  position: absolute;
  inset: -40% 0 auto;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 179, 71, 0), rgba(255, 179, 71, 0.18), rgba(255, 179, 71, 0));
  animation: scanline-move 4.8s linear infinite;
}

.video-orb,
.video-track {
  position: absolute;
}

.video-orb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd1a1, #ff922b);
  box-shadow: 0 0 16px rgba(255, 146, 43, 0.5);
}

.orb-one {
  top: 18%;
  left: 18%;
  animation: orb-float-a 5s ease-in-out infinite;
}

.orb-two {
  top: 62%;
  left: 72%;
  animation: orb-float-b 6s ease-in-out infinite;
}

.orb-three {
  top: 34%;
  left: 76%;
  animation: orb-float-c 4.5s ease-in-out infinite;
}

.video-track {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 179, 71, 0.04), rgba(255, 146, 43, 0.85), rgba(255, 179, 71, 0.04));
  transform-origin: left center;
  box-shadow: 0 0 16px rgba(255, 146, 43, 0.28);
}

.track-one {
  width: 48%;
  top: 22%;
  left: 18%;
  transform: rotate(18deg);
  animation: track-pulse 3.4s ease-in-out infinite;
}

.track-two {
  width: 42%;
  top: 55%;
  left: 28%;
  transform: rotate(-24deg);
  animation: track-pulse 4s ease-in-out infinite 0.6s;
}

.track-three {
  width: 34%;
  top: 68%;
  left: 14%;
  transform: rotate(9deg);
  animation: track-pulse 3.2s ease-in-out infinite 1s;
}

.video-hud {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.leader-hud {
  z-index: 3;
}

.video-hud span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.leader-screen .video-hud span {
  background: rgba(17, 17, 17, 0.36);
  border-color: rgba(255, 255, 255, 0.16);
}

.leader-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(12, 12, 12, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.leader-badge strong {
  display: block;
  color: white;
  font-size: 1rem;
}

.leader-badge span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.45;
}

.video-play-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 35%, #ffb347, #ff6a00);
  color: white;
  font-size: 2.4rem;
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.42);
  animation: play-core-pulse 2.6s ease-in-out infinite;
}

.video-play-core i {
  transform: translateX(3px);
}

.video-eq {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 42px;
}

.video-eq span {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(to top, #ff6a00, #ffd1a1);
  animation: eq-wave 1.2s ease-in-out infinite;
}

.video-eq span:nth-child(1) {
  height: 18px;
  animation-delay: 0s;
}

.video-eq span:nth-child(2) {
  height: 32px;
  animation-delay: 0.15s;
}

.video-eq span:nth-child(3) {
  height: 24px;
  animation-delay: 0.3s;
}

.video-eq span:nth-child(4) {
  height: 38px;
  animation-delay: 0.45s;
}

.video-eq span:nth-child(5) {
  height: 20px;
  animation-delay: 0.6s;
}

.video-demo-bottom {
  margin-top: 0.95rem;
}

.video-stat-box {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-stat-box strong {
  display: block;
  color: white;
  font-size: 1rem;
}

.video-stat-box span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.hero-portrait-chip {
  position: absolute;
  left: -1.2rem;
  bottom: -1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 122, 26, 0.18);
  box-shadow: var(--shadow-soft);
}

.hero-portrait-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 122, 26, 0.25);
}

.hero-portrait-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-portrait-chip strong {
  display: block;
  color: var(--primary-base);
}

.hero-portrait-chip span {
  display: block;
  font-size: 0.84rem;
  color: var(--gray-600);
}

.hero-stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat {
  min-width: 150px;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  color: white;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.7);
}

.section-shell {
  padding: 5rem 0;
}

.section-soft {
  background: #f2ebe4;
}

.trust-strip-wrap {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.section-lead {
  max-width: 760px;
}

.section-title-xl {
  font-size: clamp(2rem, 5vw, 2.9rem);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title-xl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-accent);
}

.text-teal {
  color: var(--teal-deep);
}

.page-link-card,
.service-card-modern,
.partner-card,
.realisation-card,
.blog-card,
.insight-card,
.timeline-content,
.process-card,
.mini-highlight-card,
.testimonial-panel,
.faq-panel,
.trust-strip,
.focus-panel,
.hero-secondary-panel,
.sector-card,
.metrics-panel,
.snapshot-panel,
.content-bridge-card {
  background: white;
  border-radius: 26px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-link-card,
.insight-card,
.process-card,
.mini-highlight-card,
.faq-panel,
.testimonial-panel,
.focus-panel,
.hero-secondary-panel,
.sector-card,
.metrics-panel,
.snapshot-panel,
.content-bridge-card {
  padding: 2rem;
}

.page-link-card:hover,
.service-card-modern:hover,
.partner-card:hover,
.realisation-card:hover,
.blog-card:hover,
.insight-card:hover,
.process-card:hover,
.mini-highlight-card:hover,
.trust-strip:hover,
.focus-panel:hover,
.hero-secondary-panel:hover,
.sector-card:hover,
.metrics-panel:hover,
.snapshot-panel:hover,
.content-bridge-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow: 0 22px 36px -18px rgba(0, 0, 0, 0.18);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff3e8, #ffe6cf);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-vibrant);
  font-size: 1.6rem;
}

.card-thumb,
.sector-thumb,
.feature-thumb,
.focus-thumb,
.highlight-thumb {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.card-thumb {
  height: 160px;
}

.sector-thumb {
  height: 150px;
  margin-bottom: 1rem;
}

.feature-thumb {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.focus-thumb {
  height: 120px;
  margin-bottom: 0.9rem;
}

.highlight-thumb {
  height: 140px;
  margin-bottom: 1rem;
}

.text-link-arrow {
  color: var(--teal-deep);
  font-weight: 700;
}

.service-img {
  height: 220px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
}

.service-img img,
.realisation-card img,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card {
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-logo-img {
  max-width: 110px;
  max-height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.realisation-card,
.blog-card {
  overflow: hidden;
}

.blog-intro-panel {
  margin-bottom: 2rem;
  padding: 1.75rem 1.9rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 122, 26, 0.14);
  background: linear-gradient(135deg, #fff8f1, #ffffff 48%, #f6fbfd);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
}

.blog-mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.editorial-blog-grid .blog-card {
  border-radius: 18px;
  background: #fffdfa;
}

.blog-thumb-wrap {
  position: relative;
  padding: 0.75rem 0.75rem 0;
}

.blog-card img {
  display: block;
  width: 100%;
  height: 190px;
  border-radius: 6px;
}

.blog-badge-label {
  position: absolute;
  left: 1.1rem;
  bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff8c42, #ff6a00);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.blog-author-tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #d17d57;
  font-size: 0.76rem;
  font-weight: 700;
}

.blog-card h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-base);
  font-family: "Bitter", serif;
  font-size: 1.3rem;
  line-height: 1.25;
}

.blog-card-copy {
  margin-bottom: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.blog-card-copy::first-letter {
  float: left;
  margin-right: 0.28rem;
  color: var(--primary-base);
  font-family: "Bitter", serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 0.95;
}

.blog-meta-list {
  display: grid;
  gap: 0.32rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: 0.82rem;
}

.blog-meta-list strong {
  color: var(--primary-base);
}

.blog-social-row {
  display: flex;
  gap: 0.55rem;
}

.blog-social-row a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eef8fb, #ffffff);
  border: 1px solid rgba(0, 128, 160, 0.16);
  color: var(--teal-deep);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-social-row a:hover {
  transform: translateY(-2px);
  color: var(--gold-accent);
  border-color: rgba(255, 122, 26, 0.34);
}

.realisation-thumb {
  display: block;
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.realisation-card .p-4 {
  padding: 1.25rem !important;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.project-detail {
  margin: 0 0 0.75rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.project-detail strong {
  color: var(--primary-base);
}

.project-result {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff6ee, #fff);
  border: 1px solid rgba(255, 122, 26, 0.12);
  color: var(--primary-base);
  line-height: 1.6;
}

.project-result strong {
  color: var(--teal-deep);
}

.project-points {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.project-points li+li {
  margin-top: 0.55rem;
}

.project-highlight {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff6ee, #fff);
  border: 1px solid rgba(255, 122, 26, 0.12);
  color: var(--primary-base);
  font-weight: 600;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}

.trust-strip {
  padding: 1.25rem 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(180deg, #ffffff, #fff6ee);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
}

.hero-secondary-panel {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.35fr 1fr;
  background: linear-gradient(180deg, #ffffff, #fff8f2);
}

.hero-badge-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.8rem;
}

.hero-badge-cloud span {
  background: rgba(255, 122, 26, 0.1);
  color: var(--teal-deep);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 59, 79, 0.08);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row h3,
.focus-card h3,
.process-card h3,
.mini-highlight-card h3,
.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.feature-row p,
.focus-card p,
.process-card p,
.mini-highlight-card p,
.faq-item p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.focus-panel {
  background: linear-gradient(180deg, #ffffff, #fff9f3);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.focus-card {
  border: 1px solid rgba(255, 122, 26, 0.14);
  border-radius: 20px;
  padding: 1.2rem;
  background: white;
}

.focus-card i,
.mini-highlight-card i {
  font-size: 1.8rem;
  color: var(--teal-deep);
  margin-bottom: 0.85rem;
  display: inline-flex;
}

.sector-card {
  text-align: left;
}

.sector-card i {
  font-size: 2rem;
  color: var(--teal-deep);
  margin-bottom: 1rem;
  display: inline-flex;
}

.sector-card p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.process-card {
  position: relative;
  padding-top: 3.5rem;
}

.process-step {
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: 0.08em;
}

.mini-highlight-card {
  padding: 1.6rem;
}

.metrics-panel {
  background: linear-gradient(180deg, #ffffff, #fff8f2);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric-box {
  border: 1px solid rgba(255, 122, 26, 0.12);
  border-radius: 20px;
  padding: 1.2rem;
  background: white;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-box strong {
  font-size: 2rem;
  color: var(--teal-deep);
  line-height: 1;
}

.metric-box span {
  color: var(--gray-600);
}

.snapshot-panel {
  background: linear-gradient(135deg, #fff7ef, #ffffff);
}

.snapshot-panel h3 {
  font-size: 1.3rem;
  margin: 1rem 0 1rem;
}

.snapshot-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--gray-600);
}

.snapshot-list li+li {
  margin-top: 0.8rem;
}

.logo-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.logo-chip {
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(255, 122, 26, 0.16);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--primary-base);
}

.content-bridge-card {
  background: linear-gradient(180deg, #ffffff, #fff8f2);
}

.accent-card {
  background: linear-gradient(135deg, #090909, #2b1709);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.accent-card p {
  color: rgba(255, 255, 255, 0.78);
}

.bridge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.bridge-links a {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.1);
  color: var(--teal-deep);
  font-weight: 700;
}

.testimonial-panel {
  background: linear-gradient(135deg, #090909, #2d1809);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.testimonial-quote {
  font-size: 1.45rem;
  line-height: 1.5;
  margin: 1.5rem 0;
  font-family: "Bitter", serif;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.72);
}

.faq-panel {
  display: grid;
  gap: 1.4rem;
}

.faq-item+.faq-item {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(15, 59, 79, 0.08);
}

.cta-band {
  background: linear-gradient(125deg, #090909, #2c1608);
  color: white;
  border-radius: 32px;
  padding: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.contact-shell {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.contact-panel {
  background: linear-gradient(135deg, #090909, #2c1708);
  color: white;
  padding: 2rem;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.info-list i {
  color: #ffd1a1;
}

.form-control,
.form-select {
  border: 1px solid var(--gray-200);
  padding: 0.95rem 1.1rem;
}

.timeline {
  position: relative;
  padding: 1rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal-vibrant), var(--teal-deep));
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--teal-vibrant);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.16);
  z-index: 1;
}

.timeline-content {
  width: 45%;
  margin-left: auto;
  padding: 1.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
}

.timeline-year {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: 0.6rem;
}

.badge-accent {
  background: rgba(255, 122, 26, 0.12);
  color: var(--teal-deep);
  border: 1px solid rgba(255, 122, 26, 0.18);
}

.footer-dark {
  background: #0a0a0a;
  color: #ded3c8;
}

.footer-home {
  position: relative;
  border-top: 1px solid rgba(255, 122, 26, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 122, 26, 0.08) 0%, rgba(10, 10, 10, 0) 18%),
    #0a0a0a;
}

.footer-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.75), transparent);
}

.footer-home .container {
  position: relative;
  z-index: 1;
}

.footer-list li+li {
  margin-top: 0.6rem;
}

.footer-link {
  color: #ded3c8;
}

.footer-link:hover {
  color: white;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
  z-index: 1020;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  color: white;
  transform: scale(1.08);
}

.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.7s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 106, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

@keyframes scanline-move {
  0% {
    transform: translateY(-110%);
  }

  100% {
    transform: translateY(330%);
  }
}

@keyframes orb-float-a {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(22px, -12px) scale(1.08);
  }
}

@keyframes orb-float-b {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-18px, 14px) scale(0.92);
  }
}

@keyframes orb-float-c {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-10px, -18px) scale(1.06);
  }
}

@keyframes track-pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes play-core-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.34), 0 0 28px rgba(255, 106, 0, 0.22);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(255, 106, 0, 0), 0 0 42px rgba(255, 106, 0, 0.3);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes hero-tech-grid-drift {

  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, 12px, 0);
  }

  100% {
    transform: translate3d(-36px, 24px, 0);
  }
}

@keyframes hero-tech-beam-sweep {

  0%,
  100% {
    opacity: 0.35;
    box-shadow: 0 0 12px rgba(88, 216, 255, 0.18);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 24px rgba(88, 216, 255, 0.4);
  }
}

@keyframes hero-tech-pulse {

  0%,
  100% {
    transform: translateX(-50%) scale(0.92);
    opacity: 0.58;
  }

  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes hero-tech-node-float-a {

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

  50% {
    transform: translate3d(10px, -14px, 0);
  }
}

@keyframes hero-tech-node-float-b {

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

  50% {
    transform: translate3d(-12px, 10px, 0);
  }
}

@keyframes hero-tech-node-float-c {

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

  50% {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes eq-wave {

  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.7;
  }

  50% {
    transform: scaleY(1.05);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .hero-image-wrap {
    margin: 0 auto;
  }

  .hero-media-stack {
    margin: 0 auto;
  }

  .hero-portrait-chip {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 1rem auto 0;
    width: fit-content;
  }

  .cta-band {
    text-align: center;
    justify-content: center;
  }

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

  .hero-secondary-panel {
    grid-template-columns: 1fr;
  }

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

  .blog-intro-panel {
    grid-template-columns: 1fr;
  }

  .hero-section::after,
  .page-hero::after {
    width: 28rem;
    height: 28rem;
    right: -20%;
    top: 18%;
  }

  .hero-background-video {
    transform: scale(1.16);
  }
}

@media (max-width: 767.98px) {
  body.inner-page main {
    padding-top: 78px;
  }

  .section-shell {
    padding: 4rem 0;
  }

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

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

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

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

  .video-demo-screen {
    min-height: 280px;
  }

  .video-demo-bottom {
    flex-direction: column;
  }

  .blog-card img {
    height: 210px;
  }

  .hero-section::before,
  .page-hero::before {
    background-size: 180px 180px, 30px 30px, 30px 30px;
    opacity: 0.42;
  }

  .hero-section::after,
  .page-hero::after {
    width: 20rem;
    height: 20rem;
    right: -30%;
    top: 22%;
  }

  .hero-background-video {
    transform: scale(1.22);
  }

  .timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline-dot {
    left: 20px;
    transform: none;
  }

  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 54px);
    margin-left: 54px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap {
    display: none;
  }

  .hero-tech-grid,
  .hero-tech-beam,
  .hero-tech-pulse,
  .hero-tech-node,
  .video-live-dot,
  .video-scanline,
  .video-orb,
  .video-track,
  .video-play-core,
  .video-eq span {
    animation: none !important;
  }
}

.dashboard-app {
  padding-top: 104px;
  padding-bottom: 2.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(104, 39, 255, 0.1), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(255, 0, 200, 0.08), transparent 18%),
    #f5f6fb;
}

.dashboard-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.dashboard-sidebar,
.dashboard-topbar,
.dashboard-glass-card,
.dashboard-overview-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(130, 136, 170, 0.14);
  box-shadow: 0 18px 40px rgba(33, 37, 79, 0.08);
}

.dashboard-sidebar {
  border-radius: 32px;
  padding: 1.2rem;
  position: sticky;
  top: 114px;
}

.dashboard-sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(141, 145, 170, 0.16);
}

.dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #121528;
  font-size: 1.45rem;
  font-weight: 800;
}

.dashboard-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5627ff, #8b2dff 55%, #ff33c7);
  color: #fff;
  box-shadow: 0 14px 26px rgba(103, 44, 255, 0.28);
}

.dashboard-sidebar-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #f3f4fa;
  color: #1b1f32;
  font-size: 1.4rem;
}

.dashboard-profile-card {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7f7fd);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.dashboard-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff5d5d, #ffb347);
  color: #fff;
  font-size: 1.55rem;
}

.dashboard-profile-card strong {
  display: block;
  color: #151a2d;
}

.dashboard-profile-card span {
  display: block;
  color: #8c90a8;
  font-size: 0.84rem;
  word-break: break-word;
}

.dashboard-side-nav {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.35rem;
}

.dashboard-side-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.92rem 1rem;
  border-radius: 18px;
  color: #7b819d;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-side-link i {
  font-size: 1.05rem;
}

.dashboard-side-link:hover,
.dashboard-side-link.active {
  background: linear-gradient(135deg, rgba(86, 39, 255, 0.12), rgba(255, 51, 199, 0.1));
  color: #5f24ff;
  transform: translateX(3px);
}

.dashboard-sidebar-note {
  margin-top: 1.4rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #141628, #3f1fb3 58%, #8f25ff);
  color: rgba(255, 255, 255, 0.88);
}

.dashboard-sidebar-note span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.dashboard-sidebar-note strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
}

.dashboard-logout-form {
  margin-top: 1rem;
}

.dashboard-logout-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
}

.dashboard-main {
  display: grid;
  gap: 1.45rem;
}

.dashboard-topbar {
  border-radius: 30px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-topbar-label,
.dashboard-card-kicker {
  margin: 0;
  color: #989db7;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.dashboard-topbar h1,
.dashboard-card-head h3 {
  margin: 0.3rem 0 0;
  color: #101327;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.dashboard-card-head h3 {
  font-size: 1.35rem;
}

.dashboard-topbar-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dashboard-search {
  min-width: 260px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #f6f7fb;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #8f95b2;
}

.dashboard-search input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  color: #1a1e31;
}

.dashboard-icon-strip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.dashboard-icon-strip span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7f6fd;
  color: #6628ff;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(102, 40, 255, 0.08);
}

.dashboard-primary-btn,
.dashboard-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.92rem 1.35rem;
  border-radius: 18px;
  font-weight: 700;
  border: 0;
}

.dashboard-primary-btn {
  background: linear-gradient(135deg, #5e26ff, #8e2dff 60%, #ff33c7);
  color: #fff;
  box-shadow: 0 18px 30px rgba(101, 39, 255, 0.28);
}

.dashboard-primary-btn.full {
  width: 100%;
}

.dashboard-secondary-btn {
  background: #f4f5fb;
  color: #252a42;
}

.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.dashboard-kpi-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.3rem;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #5f27ff, #702dff 52%, #9228ff);
  box-shadow: 0 18px 36px rgba(95, 39, 255, 0.22);
}

.dashboard-kpi-card.highlight {
  background: linear-gradient(135deg, #7c25ff, #ca24ff 55%, #ff33c7);
}

.dashboard-kpi-card.magenta {
  background: linear-gradient(135deg, #792eff, #af22ff 48%, #ff3fb4);
}

.dashboard-kpi-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.35rem;
}

.dashboard-kpi-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.dashboard-kpi-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.dashboard-feature-grid,
.dashboard-content-grid,
.dashboard-editor-grid {
  display: grid;
  gap: 1.35rem;
}

.dashboard-feature-grid {
  grid-template-columns: 1.2fr 0.95fr;
}

.dashboard-balance-card {
  position: relative;
  min-height: 270px;
  padding: 1.7rem;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 100%, rgba(111, 138, 255, 0.55), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #6430ff, #821ef8 48%, #2d115f 100%);
  color: #fff;
  box-shadow: 0 22px 40px rgba(86, 39, 255, 0.22);
}

.dashboard-balance-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -82px;
  width: 220px;
  height: 220px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1));
  transform: rotate(-24deg);
}

.dashboard-balance-copy {
  position: relative;
  z-index: 1;
  max-width: 72%;
}

.dashboard-balance-copy h2 {
  margin: 0.45rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.dashboard-balance-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.2rem;
}

.dashboard-balance-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-balance-meta strong {
  display: block;
  font-size: 1.15rem;
}

.dashboard-balance-meta span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.dashboard-balance-chip {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #191d32;
  font-weight: 800;
  z-index: 1;
}

.dashboard-overview-card,
.dashboard-glass-card {
  border-radius: 32px;
  padding: 1.55rem;
}

.dashboard-overview-card {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 1.3rem;
  align-items: center;
}

.dashboard-overview-card h3 {
  margin: 0;
  font-size: 1.45rem;
  color: #15192f;
}

.dashboard-overview-card p {
  margin: 0.65rem 0 1rem;
  color: #8c92ad;
  line-height: 1.65;
}

.dashboard-overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.dashboard-overview-list li {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  color: #1e233b;
}

.dashboard-overview-list em {
  font-style: normal;
  color: #8d93af;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-flex;
}

.dot.violet { background: #6f2dff; }
.dot.pink { background: #d528ff; }
.dot.blue { background: #4f74ff; }
.dot.gray { background: #d6d7df; }

.dashboard-orbit-chart {
  width: 190px;
  height: 190px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  transform: rotate(45deg);
}

.dashboard-orbit-chart .quad {
  display: block;
  border-radius: 100% 0 0 0;
}

.quad-one { background: #4b74ff; }
.quad-two { background: #69e25d; transform: rotate(90deg); }
.quad-three { background: #ffad43; transform: rotate(270deg); }
.quad-four { background: #e6e6e8; transform: rotate(180deg); }

.dashboard-content-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.dashboard-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.dashboard-pill {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(95, 39, 255, 0.14), rgba(255, 51, 199, 0.14));
  color: #6926ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-pill.soft {
  background: #f3f4fa;
  color: #8b90aa;
}

.dashboard-activity-list,
.dashboard-insights-list,
.dashboard-editor-form {
  display: grid;
  gap: 1rem;
}

.dashboard-activity-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 24px;
  background: #f7f8fc;
}

.dashboard-activity-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6228ff, #d52dff);
  color: #fff;
  font-size: 1.2rem;
}

.dashboard-activity-head,
.dashboard-activity-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.dashboard-activity-head strong {
  color: #181d33;
}

.dashboard-activity-head span,
.dashboard-activity-meta span,
.dashboard-insight-row span,
.dashboard-month-chip span {
  color: #8d93af;
  font-size: 0.86rem;
}

.dashboard-activity-body p {
  margin: 0.45rem 0 0.55rem;
  color: #58607b;
}

.dashboard-mini-badge {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(111, 45, 255, 0.1);
  color: #6326ff !important;
  font-weight: 700;
}

.dashboard-insight-row {
  display: grid;
  gap: 0.75rem;
}

.dashboard-insight-row strong,
.dashboard-month-chip strong {
  display: block;
  color: #181d33;
}

.dashboard-bar-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #ececf6;
  overflow: hidden;
}

.dashboard-bar-track.purple {
  background: rgba(111, 45, 255, 0.12);
}

.dashboard-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6528ff, #d427ff, #ff46bf);
}

.dashboard-bar-fill.purple {
  background: linear-gradient(90deg, #6528ff, #9e28ff, #ff46bf);
}

.dashboard-month-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.dashboard-month-chip {
  padding: 0.9rem;
  border-radius: 18px;
  background: #f7f8fc;
}

.dashboard-editor-grid {
  grid-template-columns: 1.35fr 0.9fr;
}

.dashboard-side-stack {
  display: grid;
  gap: 1.35rem;
}

.dashboard-page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dashboard-page-tabs-grid .dashboard-page-tab {
  min-width: 160px;
}

.dashboard-page-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: #f7f7fc;
  color: #656c8a;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dashboard-page-tab:hover,
.dashboard-page-tab.active {
  background: linear-gradient(135deg, #5e26ff, #8d2dff 58%, #ff33c7);
  color: #fff;
  transform: translateY(-2px);
}

.dashboard-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.dashboard-tool-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: #f1efff;
  color: #5e26ff;
  font-weight: 700;
  font-size: 0.86rem;
}

.dashboard-editor-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dashboard-switch {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: #f7f8fc;
}

.dashboard-code-input {
  min-height: 560px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.94rem;
  line-height: 1.6;
  background: #f8f6ff;
  border-color: rgba(111, 45, 255, 0.12);
}

.dashboard-visual-editor {
  min-height: 560px;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(111, 45, 255, 0.14);
  background: #fff;
  color: #171b32;
  line-height: 1.7;
  outline: none;
  overflow: auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.dashboard-visual-editor:focus {
  border-color: rgba(103, 39, 255, 0.42);
  box-shadow: 0 0 0 0.25rem rgba(103, 39, 255, 0.1);
}

.dashboard-visual-editor section,
.dashboard-preview-body section {
  margin-bottom: 1.2rem;
}

.dashboard-visual-editor img,
.dashboard-preview-body img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.dashboard-visual-editor a,
.dashboard-preview-body a {
  color: #5f27ff;
}

.dashboard-visual-editor .page-link-card,
.dashboard-preview-body .page-link-card,
.dashboard-visual-editor .service-card-modern,
.dashboard-preview-body .service-card-modern,
.dashboard-visual-editor .partner-card,
.dashboard-preview-body .partner-card,
.dashboard-visual-editor .realisation-card,
.dashboard-preview-body .realisation-card,
.dashboard-visual-editor .blog-card,
.dashboard-preview-body .blog-card {
  height: auto;
}

.dashboard-editor-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.dashboard-media-inline {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: #f7f8fc;
}

.dashboard-inline-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 0.45rem;
}

.dashboard-media-grid {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
  max-height: 560px;
  overflow: auto;
}

.dashboard-media-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 20px;
  background: #f7f8fc;
}

.dashboard-media-thumb-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.dashboard-media-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-media-body {
  min-width: 0;
}

.dashboard-media-body strong {
  display: block;
  color: #171b32;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-media-body span {
  color: #8d93af;
  font-size: 0.84rem;
}

.dashboard-media-actions {
  display: flex;
  grid-column: 1 / -1;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.dashboard-live-preview {
  border-radius: 24px;
  background: #fafbff;
  border: 1px solid rgba(126, 133, 168, 0.16);
  overflow: hidden;
}

.dashboard-live-preview.is-hidden {
  display: none;
}

.dashboard-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(126, 133, 168, 0.12);
  background: #f3f4fb;
}

.dashboard-preview-head strong {
  color: #161b31;
}

.dashboard-preview-head span {
  color: #8c91aa;
  font-size: 0.84rem;
}

.dashboard-preview-body {
  padding: 1rem;
  max-height: 420px;
  overflow: auto;
  background: #fff;
}

.preview-placeholder {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(95, 39, 255, 0.08);
  color: #5d26ff;
  font-weight: 700;
}

.dashboard-app .form-control,
.dashboard-app .form-select {
  border-color: rgba(126, 133, 168, 0.18);
  background: #f8f9fd;
  color: #1a1f35;
}

.dashboard-app .form-control:focus,
.dashboard-app .form-select:focus {
  border-color: rgba(103, 39, 255, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(103, 39, 255, 0.12);
  background: #fff;
}

.dashboard-chart-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-chart-wrap-bar {
  margin-top: 1.15rem;
  padding: 1rem;
  border-radius: 22px;
  background: #f7f8fc;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(104, 39, 255, 0.16), transparent 22%),
    radial-gradient(circle at 90% 15%, rgba(255, 51, 199, 0.12), transparent 20%),
    linear-gradient(180deg, #f6f7fc, #eef1fa);
}

.admin-login-card {
  width: min(520px, 100%);
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(130, 136, 170, 0.14);
  box-shadow: 0 24px 48px rgba(32, 36, 76, 0.12);
}

.admin-login-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.admin-login-brand strong {
  display: block;
  color: #14192d;
  font-size: 1.25rem;
}

.admin-login-brand span:last-child {
  color: #8d93af;
  font-size: 0.86rem;
}

.admin-login-copy {
  margin: 1.6rem 0 1.2rem;
}

.admin-login-copy h1 {
  margin: 0.35rem 0 0.8rem;
  color: #12162b;
}

.admin-login-copy p:last-child {
  color: #6f7692;
  margin-bottom: 0;
}

.admin-login-form {
  display: grid;
  gap: 1rem;
}

.admin-login-hint {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: #f5f6fb;
}

.admin-login-hint strong,
.admin-login-hint span {
  display: block;
}

.admin-login-hint strong {
  color: #161a2e;
  margin-bottom: 0.4rem;
}

.admin-login-hint span {
  color: #6e7490;
}

@media (max-width: 1199.98px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: relative;
    top: 0;
  }

  .dashboard-kpi-grid,
  .dashboard-feature-grid,
  .dashboard-content-grid,
  .dashboard-editor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .dashboard-app {
    padding-top: 88px;
  }

  .dashboard-shell {
    width: min(100% - 20px, 1440px);
    gap: 1rem;
  }

  .dashboard-topbar,
  .dashboard-glass-card,
  .dashboard-overview-card,
  .dashboard-sidebar,
  .dashboard-balance-card {
    border-radius: 24px;
  }

  .dashboard-topbar {
    padding: 1rem;
  }

  .dashboard-search {
    min-width: 100%;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-sidebar.is-open {
    display: block;
  }

  .dashboard-topbar-tools {
    width: 100%;
    justify-content: flex-start;
  }

  .dashboard-balance-copy {
    max-width: 100%;
  }

  .dashboard-balance-chip {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 1rem;
    display: inline-flex;
  }

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

  .dashboard-month-stack,
  .dashboard-editor-fields {
    grid-template-columns: 1fr;
  }

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

  .dashboard-orbit-chart {
    width: 150px;
    height: 150px;
  }
}

.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.hero-service-pill i {
  color: var(--teal-glow);
}

.hero-service-panel {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.82), rgba(40, 20, 8, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  color: #fff;
}

.hero-service-panel h3 {
  margin: 1rem 0 1.5rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.3;
}

.hero-service-list {
  display: grid;
  gap: 1rem;
}

.hero-service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-service-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 122, 26, 0.16);
  color: var(--teal-glow);
  font-size: 1.2rem;
}

.hero-service-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.hero-service-item span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-focus-lead {
  max-width: 760px;
}

.service-highlight-card {
  height: 100%;
  padding: 1.75rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 238, 0.98));
  border: 1px solid rgba(255, 122, 26, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 122, 26, 0.25);
}

.service-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.14), rgba(255, 179, 71, 0.24));
  color: var(--teal-deep);
  font-size: 1.7rem;
}

.service-highlight-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
}

.service-highlight-card p {
  margin-bottom: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.service-highlight-meta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.1);
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-profile-card,
.company-story-panel,
.site-gallery-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 238, 0.98));
  border: 1px solid rgba(255, 122, 26, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.company-profile-card,
.site-gallery-card {
  overflow: hidden;
}

.site-brand-banner {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 122, 26, 0.16);
  box-shadow: var(--shadow-strong);
  background: #fff;
}

.site-brand-banner-image {
  display: block;
  width: 100%;
  height: min(24vw, 260px);
  object-fit: cover;
}

.site-brand-banner-note {
  max-width: 780px;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--gray-600);
}

.company-profile-image,
.site-gallery-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.company-profile-image {
  height: 260px;
}

.company-profile-copy,
.company-story-panel {
  padding: 1.7rem;
}

.company-profile-copy h3,
.company-story-panel h3 {
  margin-bottom: 0.7rem;
}

.company-profile-copy p:last-child {
  margin-bottom: 0;
}

.mission-list,
.value-list {
  display: grid;
  gap: 1rem;
}

.mission-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.mission-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--gradient-accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 24px -16px rgba(255, 122, 26, 0.9);
}

.mission-item p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.65;
}

.company-story-panel-accent {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.94), rgba(45, 24, 9, 0.92));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.value-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 122, 26, 0.16);
  color: var(--teal-glow);
  font-size: 1.1rem;
}

.value-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.confidence-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.confidence-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.85rem;
}

.site-gallery-carousel {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 238, 0.98));
  border: 1px solid rgba(255, 122, 26, 0.12);
  box-shadow: var(--shadow-strong);
  padding: 1.5rem;
  overflow: hidden;
  width: 100%;
}

.site-gallery-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.site-gallery-track {
  display: flex;
  flex-direction: row;
  transition: transform 0.7s ease;
  will-change: transform;
}

.site-gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  display: grid;
  gap: 0;
}

.site-gallery-slide figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--gray-700);
  font-weight: 700;
  background: #fff;
  border-radius: 0 0 20px 20px;
}

.site-gallery-image {
  height: clamp(420px, 60vw, 640px);
  border-radius: 20px 20px 0 0;
}

.site-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(9, 9, 9, 0.85);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px -18px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.site-gallery-control:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(9, 9, 9, 0.95);
}

.site-gallery-control-prev {
  left: 1.2rem;
}

.site-gallery-control-next {
  right: 1.2rem;
}

.site-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.site-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 122, 26, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.site-gallery-dot.is-active {
  background: var(--teal-deep);
  transform: scale(1.3);
}

@media (max-width: 991.98px) {
  .hero-service-panel {
    margin-top: 0.5rem;
  }

  .site-gallery-image {
    height: clamp(320px, 70vw, 520px);
  }

  .site-brand-banner-image {
    height: 210px;
  }
}

@media (max-width: 767.98px) {
  .hero-service-panel {
    padding: 1.35rem;
    border-radius: 24px;
  }

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

  .hero-service-item i {
    width: 44px;
    height: 44px;
  }

  .hero-service-pill {
    width: 100%;
    justify-content: center;
  }

  .company-profile-image,
  .site-gallery-image {
    height: 220px;
  }

  .site-brand-banner {
    border-radius: 24px;
  }

  .site-brand-banner-image {
    height: 160px;
  }

  .mission-item,
  .value-item {
    grid-template-columns: 1fr;
  }

  .site-gallery-carousel {
    padding: 1rem;
  }

  .site-gallery-control {
    width: 40px;
    height: 40px;
  }
}

.site-gallery-carousel.is-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.site-gallery-carousel.is-fullbleed .site-gallery-viewport {
  border-radius: 0;
}

.quote-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 9, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1055;
  padding: 1.5rem;
}

.quote-popup-overlay.is-visible {
  display: flex;
}

.quote-popup-card {
  width: min(540px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-strong);
}

.quote-popup-close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-popup-header h3 {
  margin: 0.5rem 0 0.5rem;
}

.quote-popup-header p {
  margin: 0 0 1.5rem;
  color: var(--gray-600);
}

.quote-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 767.98px) {
  .quote-popup-card {
    padding: 1.5rem;
  }
}

.site-brand-banner.is-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
