:root {
  --navy: #061426;
  --navy-2: #0b1f37;
  --purple: #5b2ccb;
  --purple-2: #6f35d9;
  --purple-soft: rgba(111, 53, 217, 0.12);
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray: #f3f5f8;
  --ink: #102033;
  --muted: #627084;
  --line: rgba(6, 20, 38, 0.1);
  --shadow: 0 24px 70px rgba(6, 20, 38, 0.12);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  background: var(--off-white);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", "Tajawal", system-ui, sans-serif;
  line-height: 1.7;
  text-align: right;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shell {
  position: relative;
  padding-top: 82px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(6, 20, 38, 0.08);
  backdrop-filter: blur(18px);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 166px;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-nav-cta {
  display: none;
}

.mobile-whatsapp-bar {
  display: none;
}

.primary-nav a {
  position: relative;
  border-radius: 999px;
  color: #26364a;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 12px;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--purple);
  transition: width 180ms ease;
}

.primary-nav a:hover {
  color: var(--purple);
  background: rgba(91, 44, 203, 0.06);
}

.primary-nav a:hover::after {
  width: 22px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 14px 32px rgba(91, 44, 203, 0.24);
  padding: 0 18px;
  font-size: 0.92rem;
}

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

.header-cta:hover {
  background: linear-gradient(135deg, var(--navy), var(--purple));
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(6, 20, 38, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.section {
  padding: 104px 0;
}

.section-dark {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 26%, rgba(111, 53, 217, 0.38), transparent 30%),
    linear-gradient(135deg, #061426 0%, #071a30 45%, #130a2f 100%);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 82px 0 68px;
  overflow: hidden;
}

.hero::before,
.final-cta::before,
.production-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-orbit {
  position: absolute;
  left: -160px;
  right: auto;
  top: 120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 0.42;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 64px;
  min-width: 0;
}

.hero-content {
  width: 100%;
  min-width: 0;
  max-width: 620px;
}

.hero-logo {
  width: 340px;
  height: 178px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 26px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.32));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--purple-2);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.section-dark .eyebrow,
.hero .eyebrow,
.final-cta .eyebrow {
  color: #bba0ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.7rem, 6.5vw, 5.3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

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

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 20px 44px rgba(91, 44, 203, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(91, 44, 203, 0.42);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.hero-contact svg {
  width: 18px;
  color: #bba0ff;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 590px;
}

.dashboard-card,
.floating-card,
.chat-mockup,
.analytics-board {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.main-dashboard {
  position: absolute;
  inset-inline: 22px 0;
  top: 64px;
  padding: 28px;
  min-height: 360px;
  overflow: hidden;
}

.main-dashboard::before {
  content: "";
  position: absolute;
  inset-inline-start: -80px;
  top: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(111, 53, 217, 0.32);
  filter: blur(8px);
}

.dashboard-top,
.board-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-top {
  padding-left: 214px;
}

.dashboard-top strong {
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1;
}

.chart-area {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 14px;
  height: 178px;
  padding: 18px 14px 0;
  border-radius: var(--radius);
  background: rgba(6, 20, 38, 0.42);
}

.bar {
  display: block;
  width: 13%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(187, 160, 255, 0.95), rgba(91, 44, 203, 0.24));
}

.b1 { height: 36%; }
.b2 { height: 56%; }
.b3 { height: 46%; }
.b4 { height: 70%; }
.b5 { height: 88%; }

.line-chart {
  position: absolute;
  inset: 24px 12px 10px;
  width: calc(100% - 24px);
  height: calc(100% - 34px);
  overflow: visible;
}

.line-chart path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(111, 53, 217, 0.7));
}

.line-chart circle {
  fill: #bba0ff;
  stroke: var(--white);
  stroke-width: 4;
}

.metric-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.metric-row span {
  padding: 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.metric-row b {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
}

.floating-card {
  position: absolute;
  width: 190px;
  padding: 18px;
  animation: floaty 7s ease-in-out infinite;
}

.floating-card svg {
  width: 24px;
  height: 24px;
  color: #bba0ff;
  margin-bottom: 12px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.05rem;
}

.floating-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.social-card {
  inset-inline-end: 18px;
  top: 0;
}

.ai-card {
  inset-inline-start: 0;
  bottom: 94px;
  animation-delay: -2s;
}

.strategy-card {
  inset-inline-end: 42px;
  bottom: 18px;
  animation-delay: -4s;
}

.tag-cloud {
  position: absolute;
  inset-inline-start: 42px;
  top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 270px;
}

.tag-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.growth-arrow {
  position: absolute;
  inset-inline-start: 95px;
  top: 170px;
  width: 240px;
  height: 240px;
  transform: rotate(-35deg);
  opacity: 0.22;
}

.growth-arrow::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 34px;
  width: 48px;
  height: 172px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, #8d65ff 26%, #ffffff);
}

.growth-arrow::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 18px;
  width: 98px;
  height: 98px;
  background: linear-gradient(135deg, #8d65ff, #ffffff);
  clip-path: polygon(50% 0, 100% 100%, 50% 75%, 0 100%);
}

.value-strip {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(6, 20, 38, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 76px;
  border-radius: var(--radius);
  color: var(--navy);
  background: linear-gradient(180deg, #fff, var(--off-white));
  font-weight: 800;
}

.value-item svg {
  width: 23px;
  height: 23px;
  color: var(--purple);
}

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

.align-start {
  margin-inline: 0;
  text-align: right;
}

.section-heading h2,
.production-copy h2,
.final-cta h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p,
.production-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark h2,
.section-dark .production-copy h2,
.final-cta h2 {
  color: var(--white);
}

.section-dark .production-copy p,
.final-cta p {
  color: rgba(255, 255, 255, 0.75);
}

.services-section {
  background:
    linear-gradient(180deg, var(--off-white), #ffffff 44%, var(--gray));
}

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

.service-card,
.package-card,
.mini-card,
.why-item,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(6, 20, 38, 0.07);
}

.service-card {
  position: relative;
  min-height: 440px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.package-card:hover,
.mini-card:hover,
.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 44, 203, 0.28);
  box-shadow: 0 26px 70px rgba(6, 20, 38, 0.11);
}

.featured-service {
  background:
    linear-gradient(180deg, rgba(91, 44, 203, 0.08), rgba(255, 255, 255, 0.94)),
    var(--white);
}

.service-label {
  position: absolute;
  inset-inline-end: 22px;
  top: 22px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-icon,
.package-top svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--purple);
  background: var(--purple-soft);
}

.service-card h3,
.package-card h3,
.dark-card h3,
.process-step h3,
.why-item span {
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.35;
  font-weight: 800;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.service-card li,
.package-card li,
.dark-card li {
  position: relative;
  padding-inline-start: 22px;
  color: #435267;
  font-weight: 600;
}

.service-card li + li,
.package-card li + li,
.dark-card li + li {
  margin-top: 10px;
}

.service-card li::before,
.package-card li::before,
.dark-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.77em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
}

.production-section {
  overflow: hidden;
  padding-bottom: 96px;
}

.production-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
}

.production-copy {
  max-width: 580px;
}

.production-actions {
  margin-top: 30px;
}

.video-stage {
  position: relative;
  min-height: 500px;
}

.camera-lens {
  position: absolute;
  inset-inline-end: 8%;
  top: 32px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 20%, transparent 21% 100%),
    radial-gradient(circle, rgba(111, 53, 217, 0.4), rgba(6, 20, 38, 0.08) 68%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 30px 80px rgba(0, 0, 0, 0.3);
}

.camera-lens span {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.camera-lens span:nth-child(2) {
  inset: 76px;
}

.camera-lens span:nth-child(3) {
  inset: 118px;
  background: rgba(187, 160, 255, 0.38);
}

.reel-frame {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.frame-primary {
  inset-inline-start: 8%;
  top: 98px;
  width: 240px;
  height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.frame-primary::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(91, 44, 203, 0.4), rgba(6, 20, 38, 0.2));
}

.play-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 18px 50px rgba(91, 44, 203, 0.4);
}

.frame-primary p {
  position: absolute;
  inset-inline: 26px;
  bottom: 22px;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-align: center;
}

.frame-secondary {
  inset-inline-end: 4%;
  bottom: 86px;
  width: 180px;
  padding: 20px;
}

.frame-secondary p,
.frame-secondary strong {
  display: block;
  margin: 0;
}

.frame-secondary p {
  color: rgba(255, 255, 255, 0.66);
}

.frame-secondary strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1.2;
}

.timeline {
  position: absolute;
  inset-inline: 0 8%;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 0.7fr;
  gap: 8px;
  width: 78%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.timeline span {
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), rgba(255, 255, 255, 0.5));
}

.production-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.dark-card {
  min-height: 320px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.dark-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: #bba0ff;
}

.dark-card h3 {
  color: var(--white);
}

.dark-card li {
  color: rgba(255, 255, 255, 0.72);
}

.dark-card li::before {
  background: #bba0ff;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill-list span,
.subscription-options span {
  border: 1px solid rgba(91, 44, 203, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--purple);
  background: rgba(91, 44, 203, 0.08);
  font-weight: 800;
  font-size: 0.86rem;
}

.dark-card .pill-list span {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.ai-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(91, 44, 203, 0.12), transparent 26%),
    var(--white);
}

.ai-grid,
.ads-grid,
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.chat-mockup {
  max-width: 540px;
  margin-inline-start: auto;
  color: var(--ink);
  border-color: rgba(6, 20, 38, 0.1);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chat-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(91, 44, 203, 0.08), rgba(6, 20, 38, 0.02));
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.chat-header small {
  color: var(--muted);
  font-weight: 700;
}

.chat-body {
  display: grid;
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(248, 249, 252, 0.8), rgba(255, 255, 255, 0.96));
}

.message {
  max-width: 82%;
  padding: 13px 15px;
  border-radius: var(--radius);
  font-weight: 700;
}

.message span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.76rem;
  opacity: 0.65;
}

.message.customer {
  justify-self: start;
  color: var(--navy);
  background: var(--gray);
}

.message.bot {
  justify-self: end;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
}

.ai-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px;
}

.mini-card svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--purple);
}

.mini-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.ads-section {
  background: var(--gray);
}

.analytics-board {
  color: var(--ink);
  border-color: rgba(6, 20, 38, 0.08);
  background: linear-gradient(180deg, #fff, #f9faff);
  box-shadow: var(--shadow);
  padding: 26px;
}

.board-header {
  color: var(--navy);
}

.board-header span {
  border-radius: 999px;
  padding: 4px 10px;
  color: #166534;
  background: rgba(34, 197, 94, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.analytics-cell {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.analytics-cell small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

.analytics-cell strong {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.campaign-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 170px;
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(91, 44, 203, 0.08), rgba(6, 20, 38, 0.03));
}

.campaign-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--purple-2), rgba(91, 44, 203, 0.3));
}

.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(91, 44, 203, 0.18);
  border-radius: var(--radius);
  color: #334155;
  background: rgba(91, 44, 203, 0.07);
  font-weight: 700;
}

.notice svg {
  flex: 0 0 auto;
  width: 22px;
  color: var(--purple);
}

.process-section {
  background: var(--white);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-track::before {
  content: "";
  position: absolute;
  right: 4%;
  left: 4%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 44, 203, 0.34), transparent);
}

.process-step {
  position: relative;
  padding: 24px;
  min-height: 245px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(91, 44, 203, 0.22);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.packages-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(91, 44, 203, 0.1), transparent 26%),
    var(--gray);
}

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

.package-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  min-height: 410px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card.premium,
.package-card.integrated {
  background: linear-gradient(180deg, #fff, rgba(91, 44, 203, 0.06));
}

.package-top {
  margin-bottom: 18px;
}

.package-fit {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.65;
}

.package-top svg {
  margin-bottom: 16px;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.package-card a {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(91, 44, 203, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--purple);
  background: rgba(91, 44, 203, 0.06);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.package-card a:hover {
  color: var(--white);
  background: var(--purple);
}

.subscription-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.why-section {
  background: var(--white);
}

.why-grid {
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
}

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.why-item svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--purple);
  margin-top: 4px;
}

.why-item span {
  font-size: 1rem;
}

.final-cta {
  padding: 92px 0;
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.final-cta .btn {
  margin: 12px auto 16px;
}

.final-cta strong {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #040d19;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.9fr 0.75fr;
  gap: 34px;
}

.footer-brand img {
  width: 240px;
  height: 132px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #bba0ff;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  direction: ltr;
  justify-content: flex-end;
}

.footer-contact svg {
  width: 18px;
  color: #bba0ff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .header-grid {
    gap: 12px;
  }

  .primary-nav a {
    padding-inline: 9px;
    font-size: 0.86rem;
  }

  .hero-grid,
  .production-grid,
  .ai-grid,
  .ads-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .production-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

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

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

  .process-track::before {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(720px, calc(100vw - 28px));
  }

  .page-shell {
    padding-top: 72px;
  }

  .site-header {
    direction: ltr;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
  }

  .header-grid {
    grid-template-columns: 52px minmax(0, 1fr) 150px;
    grid-template-areas: "menu spacer logo";
    min-height: 72px;
  }

  .brand {
    grid-area: logo;
    justify-self: end;
    width: 150px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: menu;
    justify-self: start;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    direction: rtl;
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 4px;
    padding: 20px 24px 26px;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: 1px solid rgba(6, 20, 38, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 60px rgba(6, 20, 38, 0.12);
    transform: translateY(-135%);
    transition: transform 240ms ease;
  }

  body.menu-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 13px 4px;
    border-radius: 0;
    border-bottom: 1px solid rgba(6, 20, 38, 0.07);
    font-size: 1rem;
    text-align: right;
  }

  .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
    border: 0;
    border-radius: 999px;
    padding: 13px 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    box-shadow: 0 16px 34px rgba(91, 44, 203, 0.22);
  }

  .hero {
    direction: ltr;
    min-height: auto;
    padding: 44px 0 54px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .hero-content,
  .hero-visual {
    direction: rtl;
  }

  .hero-logo {
    width: 270px;
    height: 150px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: auto;
  }

  .main-dashboard {
    position: relative;
    inset: auto;
    top: auto;
    padding: 20px;
    min-height: auto;
    backdrop-filter: none;
  }

  .dashboard-top {
    padding-left: 0;
  }

  .tag-cloud {
    position: relative;
    inset: auto;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .floating-card {
    display: none;
  }

  .social-card {
    inset-inline-end: 0;
  }

  .ai-card {
    bottom: 56px;
  }

  .strategy-card {
    inset-inline-end: 0;
    bottom: 0;
  }

  .growth-arrow {
    display: none;
  }

  .value-grid,
  .ai-benefits,
  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 76px 0;
  }

  .production-grid {
    gap: 24px;
  }

  .video-stage {
    min-height: 420px;
  }

  .camera-lens {
    width: 230px;
    height: 230px;
  }

  .frame-primary {
    width: 210px;
    height: 288px;
  }

  .process-track,
  .services-grid,
  .production-details,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-section,
  .production-section,
  .ai-section,
  .ads-section,
  .process-section,
  .packages-section,
  .why-section,
  .final-cta,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }

  .service-card,
  .package-card,
  .mini-card,
  .why-item,
  .process-step,
  .analytics-board,
  .chat-mockup {
    box-shadow: 0 14px 34px rgba(6, 20, 38, 0.08);
  }

  .service-card {
    min-height: auto;
  }

  .footer-contact a {
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(440px, calc(100vw - 24px));
  }

  .page-shell {
    padding-top: 66px;
    padding-bottom: 76px;
  }

  .header-grid {
    grid-template-columns: 48px minmax(0, 1fr) 132px;
    min-height: 66px;
  }

  .brand {
    width: 132px;
  }

  .brand img {
    height: 50px;
  }

  .primary-nav {
    top: 66px;
    max-height: calc(100dvh - 66px);
  }

  h1 {
    font-size: clamp(1.85rem, 9.2vw, 2.28rem);
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .hero {
    padding: 28px 0 34px;
  }

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

  .hero-logo {
    width: min(214px, 70vw);
    height: 112px;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.78;
    margin-bottom: 18px;
  }

  .btn {
    min-height: 48px;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .main-dashboard {
    min-height: auto;
    padding: 16px;
  }

  .chart-area {
    height: 124px;
  }

  .metric-row span {
    padding: 10px 8px;
    font-size: 0.76rem;
  }

  .floating-card {
    width: 148px;
  }

  .ai-card {
    bottom: 42px;
  }

  .strategy-card {
    bottom: -30px;
  }

  .value-grid,
  .ai-benefits,
  .analytics-grid,
  .packages-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .value-strip {
    margin-top: 0;
    padding-top: 12px;
    background: var(--off-white);
  }

  .value-grid {
    box-shadow: 0 14px 34px rgba(6, 20, 38, 0.08);
    padding: 12px;
  }

  .value-item {
    min-height: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .service-card,
  .package-card,
  .dark-card,
  .process-step,
  .why-item {
    padding: 22px;
  }

  .production-details {
    gap: 14px;
  }

  .dark-card {
    min-height: auto;
  }

  .video-stage {
    min-height: 330px;
  }

  .camera-lens {
    width: 190px;
    height: 190px;
    inset-inline-end: 0;
  }

  .frame-primary {
    inset-inline-start: 0;
    width: 180px;
    height: 248px;
  }

  .frame-secondary {
    inset-inline-end: 0;
    bottom: 64px;
    width: 148px;
  }

  .timeline {
    width: 100%;
    inset-inline: 0;
  }

  .message {
    max-width: 94%;
    padding: 12px 13px;
  }

  .package-card {
    min-height: auto;
  }

  .footer-brand img {
    width: 160px;
  }

  .mobile-whatsapp-bar {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    box-shadow: 0 18px 42px rgba(91, 44, 203, 0.34);
    font-weight: 800;
  }

  .mobile-whatsapp-bar svg {
    width: 20px;
    height: 20px;
  }
}
