:root {
  --navy: #0A1F44;
  --navy-2: #07172f;
  --gold: #F4B400;
  --gold-soft: rgba(244, 180, 0, 0.16);
  --white: #ffffff;
  --muted: #b9c4d6;
  --panel: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --green: #25D366;
  --cyan: #46d6ff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--navy-2);
  color: var(--white);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(244, 180, 0, 0.13), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, var(--navy), var(--navy-2) 48%, #050e1d);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--navy-2);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.loader-card img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  animation: loaderLift 1.2s ease-in-out infinite alternate;
}

.loader-card span {
  width: 170px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.loader-card span::before {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  animation: loaderLine 1s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(7, 23, 47, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
}

.brand-name {
  max-width: 220px;
  line-height: 1.08;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero,
.section,
.page-hero,
.cta-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 72px 0 56px;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 850px;
  margin: 12px 0 18px;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-text,
.page-hero p,
.section p,
.cta-section p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-text {
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.eyebrow {
  color: var(--gold) !important;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding: 10px 18px;
  border: 1px solid rgba(244,180,0,0.3);
  border-radius: 50px;
  background: rgba(244,180,0,0.12);
  color: var(--gold);
  font-weight: 600;
  box-shadow: 0 12px 34px rgba(244, 180, 0, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(244, 180, 0, 0.24);
}

.btn-ghost,
.btn-soft {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: 8px;
  border: 1px solid rgba(244, 180, 0, 0.28);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.dashboard-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 14px;
  border: 1px solid rgba(244, 180, 0, 0.34);
  border-radius: 8px;
  background: rgba(7, 23, 47, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.dashboard-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-card strong {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.sales-card {
  left: -18px;
  bottom: 28px;
}

.health-card {
  top: 26px;
  right: -12px;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 28px;
  margin-top: 5px;
}

.mini-bars i {
  width: 10px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold), #ffdd7a);
}

.mini-bars i:nth-child(1) { height: 35%; }
.mini-bars i:nth-child(2) { height: 58%; }
.mini-bars i:nth-child(3) { height: 46%; }
.mini-bars i:nth-child(4) { height: 78%; }
.mini-bars i:nth-child(5) { height: 100%; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.trust-strip strong { color: var(--gold); }

.marketplace-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.marketplace-strip > span {
  color: var(--muted);
  font-weight: 800;
}

.marketplace-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.marketplace-logo {
  min-width: 118px;
  padding: 11px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.marketplace-logo.amazon { color: #131921; }
.marketplace-logo.flipkart { color: #0b57d0; }
.marketplace-logo.meesho { color: #9f2089; }

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.15rem);
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 900;
}

.service-grid,
.pricing-grid,
.testimonial-grid,
.values,
.stats-section,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stats-section {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 38px;
}

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

.service-card,
.price-card,
.testimonial,
.value-card,
.stat-card,
.trust-card,
.faq-item,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.service-card,
.price-card,
.testimonial,
.value-card,
.stat-card,
.trust-card,
.faq-item {
  padding: 26px;
}

.service-card:hover,
.price-card:hover,
.testimonial:hover,
.value-card:hover,
.stat-card:hover,
.trust-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 180, 0, 0.46);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.26);
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.stat-card p {
  margin: 12px 0 0;
  font-weight: 800;
}

.dashboard-section {
  padding-top: 36px;
}

.seller-dashboard {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(244, 180, 0, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 180, 0, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-top strong {
  color: var(--gold);
}

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

.metric-tile {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 14, 30, 0.56);
}

.metric-tile span,
.metric-tile small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.metric-tile strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.65rem;
}

.dashboard-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.dashboard-table div {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-table span {
  color: var(--gold);
  font-weight: 900;
}

.dashboard-table i {
  justify-self: end;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.status-good {
  color: #082415;
  background: var(--green);
}

.status-watch {
  color: var(--navy);
  background: var(--gold);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(26px, 5vw, 76px);
  align-items: start;
}

.about-band {
  border-block: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
}

.price-card.featured {
  border-color: rgba(244, 180, 0, 0.52);
  background: linear-gradient(180deg, rgba(244, 180, 0, 0.18), rgba(255, 255, 255, 0.07));
}

.tag {
  display: inline-flex;
  margin: 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 0.76rem !important;
  font-weight: 900;
}

.price {
  margin: 12px 0 8px;
  color: var(--white) !important;
  font-size: 2rem !important;
  font-weight: 900;
}

.testimonial {
  margin: 0;
}

.testimonial blockquote {
  margin: 0 0 18px;
  color: #e7edf7;
}

.testimonial figcaption {
  color: var(--gold);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.faq-item p {
  margin-bottom: 0;
}

.cta-section,
.page-hero {
  padding: 88px clamp(18px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.17), rgba(255, 255, 255, 0.06));
}

.page-hero {
  margin-top: 44px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 22px;
}

.contact-panel,
.contact-form {
  padding: clamp(22px, 4vw, 36px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 700;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #e9eef8;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

.contact-form select option {
  color: #07172f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold) !important;
  font-weight: 800;
}

.site-footer {
  margin-top: 80px;
  padding: 46px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(3, 11, 24, 0.76);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.site-footer p {
  max-width: 430px;
  color: var(--muted);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 700;
}

.social-links {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: auto;
  min-height: 32px;
  margin: 0 !important;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(244, 180, 0, 0.22);
}

.social-link i {
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  margin-right: 0;
}

.social-link span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.social-link:hover span {
  color: var(--white);
}

.social-link.facebook i { color: #1877F2 !important; }
.social-link.instagram i { color: #E4405F !important; }
.social-link.linkedin i { color: #0A66C2 !important; }
.social-link.youtube i { color: #FF0000 !important; }

.footer-social .social-links {
  align-items: start;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 39;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 23, 47, 0.9);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.sticky-cta .btn {
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.5);
  animation: whatsappPulse 1.8s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42);
}

.whatsapp-float svg {
  position: relative;
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.enterprise-hero {
  width: min(1320px, calc(100% - 36px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 60px;
  align-items: center;
  padding: 120px 0;
}

.enterprise-hero .hero-copy h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
}

.enterprise-hero .hero-text {
  max-width: 600px;
  margin-bottom: 35px;
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.8;
}

.enterprise-hero .hero-actions {
  gap: 18px;
}

.enterprise-hero .btn {
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 14px;
}

.enterprise-hero .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(244,180,0,0.25);
}

.enterprise-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 16px;
  border: 1px solid rgba(244, 180, 0, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-size: 1.45rem;
  line-height: 1;
}

.enterprise-dashboard {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.5vw, 30px);
  border: 1px solid rgba(244, 180, 0, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(244, 180, 0, 0.16), rgba(70, 214, 255, 0.08) 42%, rgba(255, 255, 255, 0.07)),
    rgba(7, 23, 47, 0.72);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), 0 0 64px rgba(244, 180, 0, 0.12);
  backdrop-filter: blur(22px);
}

.enterprise-dashboard,
.hero-image img {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-dashboard-image {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(7, 23, 47, 0.68);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.48),
    0 0 52px rgba(244, 180, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: dashboardFloat 5.5s ease-in-out infinite;
}

.hero-dashboard-image::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.42), rgba(70, 214, 255, 0.1), transparent 58%);
  filter: blur(18px);
  opacity: 0.62;
}

.hero-dashboard-image img {
  position: relative;
  z-index: 1;
  width: 92%;
  margin-inline: auto;
  height: auto;
  aspect-ratio: 1400 / 755;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.screenshot-command-overlay {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  top: 8px;
  width: auto;
  padding: 18px;
  border: 1px solid rgba(244, 180, 0, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(10, 31, 68, 0.86), rgba(6, 18, 38, 0.78)),
    rgba(10, 31, 68, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 38px rgba(244, 180, 0, 0.14);
  backdrop-filter: blur(18px);
}

.overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: #d7e0ef;
  font-weight: 900;
}

.overlay-top i {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(244, 180, 0, 0.32);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-style: normal;
  background: rgba(244, 180, 0, 0.11);
}

.overlay-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  gap: 12px;
}

.overlay-metric,
.overlay-mix {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(2, 13, 30, 0.58);
}

.overlay-metric.primary {
  grid-row: auto;
}

.overlay-metric span,
.overlay-mix span {
  display: block;
  color: #c8d3e3;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.overlay-metric strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--gold);
  font-size: clamp(1.55rem, 2.3vw, 2.55rem);
  line-height: 0.95;
}

.overlay-metric.primary strong {
  color: #ffffff;
}

.overlay-metric small {
  color: #cbd7e8;
  font-weight: 700;
}

.overlay-mix p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 0;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-mix b {
  color: #ffffff;
}

.overlay-mix em {
  color: var(--gold);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.overlay-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.overlay-bottom span {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #cbd7e8;
  font-size: 0.72rem;
  font-weight: 800;
}

.overlay-bottom b {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
}

.enterprise-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: dashboardSheen 5s ease-in-out infinite;
}

.dashboard-shell-top,
.dashboard-hero-grid,
.pipeline-panel {
  position: relative;
}

.dashboard-shell-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 900;
}

.dashboard-shell-top i {
  padding: 7px 10px;
  border: 1px solid rgba(244, 180, 0, 0.24);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.76rem;
  font-style: normal;
  background: rgba(244, 180, 0, 0.08);
}

.dashboard-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.dash-panel,
.pipeline-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(4, 14, 30, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.dash-panel {
  padding: 20px;
}

.revenue-panel {
  grid-row: span 2;
}

.dash-panel span,
.pipeline-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dash-panel strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.score-panel strong {
  color: var(--gold);
}

.dash-panel small {
  color: #cbd7e8;
  font-weight: 700;
}

.growth-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 26px;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.growth-chart i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(244, 180, 0, 0.26));
  box-shadow: 0 0 18px rgba(244, 180, 0, 0.24);
}

.growth-chart i:nth-child(1) { height: 36%; }
.growth-chart i:nth-child(2) { height: 52%; }
.growth-chart i:nth-child(3) { height: 45%; }
.growth-chart i:nth-child(4) { height: 68%; }
.growth-chart i:nth-child(5) { height: 82%; }
.growth-chart i:nth-child(6) { height: 100%; }

.market-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.market-row b {
  color: var(--white);
}

.market-row em {
  color: var(--gold);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.pipeline-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  overflow: hidden;
}

.pipeline-panel div {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.pipeline-panel div:last-child {
  border-right: 0;
}

.pipeline-panel b {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 1.75rem;
}

.enterprise-logo-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(244, 180, 0, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.enterprise-logo-strip > span {
  color: #d7e0ef;
  font-weight: 900;
}

.enterprise-stats {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.enterprise-split,
.enterprise-trust {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.enterprise-split .section-heading,
.enterprise-trust .trust-copy {
  position: sticky;
  top: 118px;
}

.enterprise-split .section-heading h2,
.enterprise-trust h2,
.enterprise-cta h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.5rem);
}

.ops-grid {
  display: grid;
  gap: 16px;
}

.ops-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(18px);
}

.ops-card:hover {
  transform: translateY(-7px);
  border-color: rgba(244, 180, 0, 0.48);
  background: rgba(255, 255, 255, 0.11);
}

.ops-card span {
  color: var(--gold);
  font-weight: 900;
}

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

.management-section .section-heading {
  max-width: 880px;
}

.management-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  color: #d6e0ef;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
}

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

.management-card {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(7, 23, 47, 0.72);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(18px);
}

.management-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 8%, rgba(244, 180, 0, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.management-card:hover {
  transform: translateY(-7px);
  border-color: rgba(244, 180, 0, 0.5);
  background:
    linear-gradient(145deg, rgba(244, 180, 0, 0.13), rgba(255, 255, 255, 0.07)),
    rgba(7, 23, 47, 0.8);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.3), 0 0 36px rgba(244, 180, 0, 0.1);
}

.management-card:hover::before {
  opacity: 1;
}

.management-card span {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 180, 0, 0.28);
  border-radius: 12px;
  background: rgba(244, 180, 0, 0.12);
  font-size: 1.35rem;
}

.management-card h3 {
  position: relative;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.management-card-wide {
  grid-column: span 2;
}

.management-note {
  max-width: 860px;
  margin: 24px 0 0;
  color: #d6e0ef !important;
  font-size: 1.05rem !important;
  font-weight: 700;
}

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

.enterprise-testimonials .testimonial {
  min-height: 245px;
}

.enterprise-faq .faq-list {
  max-width: 920px;
}

.enterprise-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(244, 180, 0, 0.32);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(244, 180, 0, 0.22), rgba(255, 255, 255, 0.075)),
    rgba(7, 23, 47, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 72px rgba(244, 180, 0, 0.12);
  backdrop-filter: blur(18px);
}

@keyframes dashboardSheen {
  0%, 45% { transform: translateX(-110%); }
  75%, 100% { transform: translateX(110%); }
}

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.9;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes loaderLift {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

@keyframes loaderLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(240%); }
}

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

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 23, 47, 0.98);
    transform-origin: top;
    transform: scaleY(0.94);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .hero,
  .enterprise-hero,
  .split,
  .enterprise-split,
  .enterprise-trust,
  .enterprise-cta,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .social-link i {
    width: 18px;
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .service-grid,
  .service-grid.full,
  .enterprise-services .service-grid,
  .management-grid,
  .pricing-grid,
  .testimonial-grid,
  .values,
  .stats-section,
  .enterprise-stats,
  .trust-grid,
  .dashboard-grid,
  .dashboard-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-hero {
    min-height: auto;
    padding-top: 80px;
    text-align: center;
  }

  .enterprise-hero .hero-copy h1 {
    font-size: clamp(2.35rem, 8.6vw, 4.2rem);
  }

  .enterprise-hero .hero-text {
    margin-inline: auto;
  }

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

  .hero-badge {
    margin-inline: auto;
  }

  .enterprise-split .section-heading,
  .enterprise-trust .trust-copy {
    position: static;
  }

  .enterprise-logo-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .enterprise-cta {
    align-items: start;
  }

  .marketplace-strip {
    align-items: stretch;
    flex-direction: column;
  }

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

  .dashboard-table i {
    justify-self: start;
  }
}

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

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .social-link i {
    width: 18px;
    font-size: 18px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    max-width: 132px;
    font-size: 0.88rem;
  }

  .hero,
  .enterprise-hero,
  .section,
  .page-hero,
  .cta-section,
  .enterprise-logo-strip,
  .enterprise-cta {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy h1,
  .enterprise-hero .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.1rem);
    line-height: 1;
  }

  .hero-actions,
  .trust-strip,
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .service-grid.full,
  .enterprise-services .service-grid,
  .management-grid,
  .pricing-grid,
  .testimonial-grid,
  .values,
  .stats-section,
  .enterprise-stats,
  .trust-grid,
  .dashboard-grid,
  .dashboard-hero-grid,
  .pipeline-panel {
    grid-template-columns: 1fr;
  }

  .enterprise-dashboard {
    min-height: auto;
    display: block;
    border-radius: 12px;
    padding: 14px;
  }

  .screenshot-command-overlay {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 14px;
    padding: 14px;
  }

  .overlay-top,
  .overlay-mix p {
    align-items: flex-start;
    flex-direction: column;
  }

  .overlay-grid,
  .overlay-bottom {
    grid-template-columns: 1fr;
  }

  .dashboard-shell-top,
  .market-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .growth-chart {
    height: 112px;
    gap: 7px;
    padding: 12px;
  }

  .pipeline-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pipeline-panel div:last-child {
    border-bottom: 0;
  }

  .enterprise-split .section-heading h2,
  .enterprise-trust h2,
  .enterprise-cta h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .ops-card {
    padding: 22px;
  }

  .management-card,
  .management-card-wide {
    grid-column: auto;
    min-height: 132px;
  }

  .sales-card,
  .health-card {
    position: static;
    margin-top: 12px;
  }

  .marketplace-logos {
    display: grid;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    bottom: 14px;
    transform: none;
  }

  .sticky-cta .btn {
    flex: 1;
    width: auto;
    font-size: 0.82rem;
  }

  .whatsapp-float {
    bottom: 92px;
  }

  .section {
    padding: 54px 0;
  }

  .cta-section,
  .page-hero {
    padding: 54px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

  .site-loader,
  .whatsapp-float::before,
  .hero-dashboard-image {
    animation: none !important;
  }
}
