:root {
  --text: #f3f9ff;
  --muted: #98aac5;
  --cyan: #28b8ff;
  --cyan-strong: #66d6ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: manipulation;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 22%, rgba(24, 87, 171, 0.16), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(0, 183, 255, 0.18), transparent 10%),
    radial-gradient(circle at 18% 68%, rgba(0, 183, 255, 0.18), transparent 12%),
    linear-gradient(180deg, #02050b 0%, #040913 40%, #02050b 100%);
  overflow-x: hidden;
  -ms-overflow-style: none;
  touch-action: manipulation;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

a,
button,
input,
select,
textarea,
label {
  touch-action: manipulation;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(62, 126, 230, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 126, 230, 0.1) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18));
}

body::after {
  background:
    radial-gradient(circle at 12% 28%, rgba(86, 190, 255, 0.85), transparent 2px),
    radial-gradient(circle at 83% 22%, rgba(86, 190, 255, 0.85), transparent 2px),
    radial-gradient(circle at 22% 74%, rgba(86, 190, 255, 0.7), transparent 2px),
    radial-gradient(circle at 76% 80%, rgba(86, 190, 255, 0.7), transparent 2px),
    radial-gradient(circle at 48% 14%, rgba(86, 190, 255, 0.35), transparent 2px);
}

.page-shell {
  width: min(1340px, calc(100% - 34px));
  margin: 0 auto;
  padding: 30px 0 44px;
}

.topbar {
  direction: ltr;
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: 180px 1fr 60px;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 24px;
  border: 1px solid rgba(84, 156, 255, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7, 13, 25, 0.92), rgba(5, 10, 20, 0.82));
  box-shadow: inset 0 0 0 1px rgba(108, 175, 255, 0.05), var(--shadow);
}

.brand {
  color: var(--cyan-strong);
  text-decoration: none;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-shadow: 0 0 14px rgba(80, 190, 255, 0.8);
}

.nav {
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  padding: 10px 16px;
  border: 1px solid rgba(84, 156, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 12, 24, 0.58);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(243, 249, 255, 0.72);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav a.active,
.nav a:hover {
  color: var(--cyan-strong);
  background: rgba(15, 33, 60, 0.76);
  box-shadow: inset 0 0 0 1px rgba(88, 196, 255, 0.18);
}

.nav a.active::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -10px;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan-strong), transparent);
  box-shadow: 0 0 18px rgba(40, 184, 255, 0.7);
  transform: translateX(50%);
}

.search-btn {
  position: relative;
  width: 42px;
  height: 42px;
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-btn::before,
.search-btn::after {
  content: "";
  position: absolute;
}

.search-btn::before {
  top: 8px;
  left: 8px;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(243, 249, 255, 0.85);
  border-radius: 50%;
}

.search-btn::after {
  top: 25px;
  left: 24px;
  width: 11px;
  height: 2px;
  background: rgba(243, 249, 255, 0.85);
  transform: rotate(45deg);
}

.hero-stage,
.content-panel,
.contact-panel,
.site-footer,
.page-hero {
  border: 1px solid rgba(84, 156, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 9, 18, 0.88), rgba(2, 5, 12, 0.96));
  box-shadow: inset 0 0 0 1px rgba(52, 126, 255, 0.04), var(--shadow);
}

.hero-stage,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.performance-note {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(102, 214, 255, 0.18);
  background: linear-gradient(135deg, rgba(10, 24, 47, 0.92), rgba(4, 12, 24, 0.84));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.performance-note strong {
  color: #f4fbff;
  font-size: 1rem;
}

.performance-note span {
  color: rgba(219, 235, 255, 0.8);
}

.hero-stage {
  padding: 34px 22px 28px;
}

.page-hero,
.content-panel,
.contact-panel,
.site-footer {
  padding: 28px;
  margin-top: 22px;
  border-radius: 28px;
}

.hero-stage::before,
.hero-stage::after,
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage::before,
.page-hero::before {
  background:
    radial-gradient(circle at 20% 56%, rgba(32, 179, 255, 0.16), transparent 12%),
    radial-gradient(circle at 71% 24%, rgba(32, 179, 255, 0.12), transparent 14%),
    radial-gradient(circle at 55% 90%, rgba(32, 179, 255, 0.08), transparent 18%);
}

.hero-stage::after,
.page-hero::after {
  background-image:
    linear-gradient(rgba(53, 111, 210, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 111, 210, 0.09) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.34));
}

.hero-grid {
  position: relative;
  z-index: 1;
  direction: ltr;
  display: grid;
  grid-template-columns: 250px 1fr 318px;
  gap: 22px;
  align-items: start;
}

.services-rail,
.feature-grid,
.process-grid,
.comparison-grid,
.project-gallery,
.service-grid-large,
.about-grid,
.contact-layout,
.panel-stats,
.numbers-grid {
  display: grid;
  gap: 18px;
}

.services-rail {
  gap: 14px;
  padding-top: 92px;
}

.rail-card,
.rail-console,
.analytics-panel,
.detail-card,
.contact-panel,
.stat-card,
.service-card-large,
.comparison-card,
.contact-info-card,
.contact-form,
.number-card,
.about-card,
.process-card,
.gallery-card,
.tab-panel {
  border: 1px solid rgba(80, 159, 255, 0.2);
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.88), rgba(6, 12, 24, 0.88));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 0 1px rgba(59, 133, 255, 0.06),
    0 0 22px rgba(15, 102, 212, 0.16);
  backdrop-filter: blur(12px);
}

.rail-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 16px;
  direction: rtl;
}

.rail-card::after,
.rail-console::after {
  content: "";
  position: absolute;
  right: 18px;
  left: 18px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.rail-console {
  position: relative;
  min-height: 92px;
  padding: 24px 18px;
  border-radius: 16px;
}

.rail-console span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-inline-start: 8px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(72, 169, 255, 0.9), rgba(33, 119, 255, 0.4));
}

.rail-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--cyan-strong);
  background: radial-gradient(circle at 30% 30%, rgba(80, 190, 255, 0.25), rgba(6, 14, 28, 0.4));
  border: 1px solid rgba(88, 176, 255, 0.28);
  font-weight: 800;
}

.hero-copy {
  direction: rtl;
  text-align: center;
  padding: 78px 18px 0;
}

.hero-kicker,
.contact-kicker,
.section-kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--cyan-strong);
  background: rgba(17, 112, 208, 0.14);
  border: 1px solid rgba(80, 169, 255, 0.16);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
}

.page-hero h1,
.section-intro h2,
.service-card-large h2,
.gallery-body h2,
.about-card h2,
.contact-panel h2,
.project-meta p,
.spotlight-copy h3 {
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  font-size: clamp(5rem, 11vw, 8.6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #94efff;
  text-shadow:
    0 0 10px rgba(72, 201, 255, 0.92),
    0 0 30px rgba(34, 150, 255, 0.85),
    0 0 56px rgba(8, 111, 255, 0.48);
}

.hero-copy .sales-title {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  letter-spacing: 0;
  line-height: 1.15;
  color: #f2fbff;
  text-shadow:
    0 0 12px rgba(28, 195, 255, 0.3),
    0 0 24px rgba(28, 195, 255, 0.12);
}

.hero-copy h2,
.page-hero h1,
.section-intro h2,
.service-card-large h2,
.gallery-body h2,
.about-card h2,
.contact-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.28;
}

.hero-copy h2 {
  margin: 14px 0 12px;
}

.hero-copy h2 span {
  color: var(--cyan);
}

.hero-text,
.section-intro p,
.service-card-large p,
.gallery-body p,
.faq-answer p,
.contact-text,
.about-card p,
.process-card p,
.comparison-card p,
.contact-info-card p,
.contact-form span,
.form-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.85;
}

.hero-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.12rem;
}

.hero-actions,
.hero-points,
.tab-buttons,
.filter-bar,
.footer-links,
.glow-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: center;
  margin: 28px 0 20px;
}

.tab-buttons,
.filter-bar {
  margin-bottom: 18px;
}

.hero-points {
  justify-content: center;
}

.primary-btn,
.secondary-btn,
.tab-btn,
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.primary-btn,
.tab-btn.active,
.filter-btn.active {
  color: #dff8ff;
  background: linear-gradient(180deg, rgba(21, 169, 255, 0.2), rgba(5, 19, 42, 0.6));
  border: 1px solid rgba(88, 196, 255, 0.76);
}

.secondary-btn,
.tab-btn,
.filter-btn {
  color: var(--text);
  background: rgba(10, 18, 34, 0.72);
  border: 1px solid rgba(77, 147, 255, 0.2);
}

.whatsapp-btn {
  color: #ecfffa;
  background: linear-gradient(180deg, rgba(20, 182, 114, 0.28), rgba(6, 34, 28, 0.72));
  border-color: rgba(69, 231, 162, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(69, 231, 162, 0.18),
    0 0 20px rgba(40, 184, 124, 0.16);
}

.whatsapp-btn:hover {
  color: #f4fffb;
  border-color: rgba(90, 244, 180, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(90, 244, 180, 0.22),
    0 0 24px rgba(40, 184, 124, 0.22);
}

.hero-points span,
.glow-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 23, 43, 0.8);
  border: 1px solid rgba(73, 141, 255, 0.14);
  color: #d8f2ff;
  list-style: none;
}

.package-list {
  margin: 18px 0 0;
  padding: 0;
}

.package-price {
  margin: 18px 0 0;
  color: #f2fbff;
  font-size: 1.08rem;
  font-weight: 800;
}

.analytics-panel {
  direction: rtl;
  padding: 18px;
  border-radius: 20px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(191, 215, 255, 0.45);
}

.chart-box {
  padding: 12px 12px 10px;
  border: 1px solid rgba(76, 152, 255, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 15, 29, 0.92), rgba(5, 11, 23, 0.96));
}

.chart-box svg {
  display: block;
  width: 100%;
  height: auto;
}

.chart-grid line {
  stroke: rgba(110, 160, 255, 0.12);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: #47cbff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shadow-line {
  stroke: rgba(71, 203, 255, 0.18);
  stroke-width: 13;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  color: rgba(201, 221, 255, 0.66);
  font-size: 0.76rem;
}

.panel-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

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

.spotlight-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.spotlight-visual,
.spotlight-copy {
  border: 1px solid rgba(80, 159, 255, 0.2);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.88), rgba(6, 12, 24, 0.88));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 0 1px rgba(59, 133, 255, 0.06),
    0 0 22px rgba(15, 102, 212, 0.16);
}

.spotlight-visual {
  min-height: 340px;
  padding: 18px;
  display: flex;
  align-items: end;
}

.spotlight-screen {
  width: 100%;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(5, 12, 24, 0.88), rgba(8, 20, 39, 0.94));
  border: 1px solid rgba(88, 196, 255, 0.18);
}

.spotlight-shot {
  position: relative;
  margin-bottom: 18px;
  padding: 12px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(88, 196, 255, 0.16);
  background: linear-gradient(180deg, rgba(14, 26, 48, 0.96), rgba(7, 14, 28, 0.98));
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.spotlight-shot::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto 12px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(94, 203, 255, 0.08));
  z-index: 1;
}

.spotlight-shot-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--cyan-strong);
  background: rgba(16, 97, 187, 0.22);
  border: 1px solid rgba(102, 214, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
}

.spotlight-screen strong {
  display: block;
  margin: 16px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: #f2fbff;
}

.spotlight-screen p,
.spotlight-copy p,
.spotlight-impact {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.spotlight-mockup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 16px;
  margin-top: 22px;
  align-items: end;
}

.spotlight-dashboard-ui,
.spotlight-phone-ui {
  border: 1px solid rgba(88, 196, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(5, 12, 24, 0.92), rgba(8, 20, 39, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 18px rgba(24, 111, 210, 0.12);
}

.spotlight-dashboard-ui {
  padding: 14px;
}

.spotlight-ui-header {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.spotlight-ui-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(115, 203, 255, 0.85);
  box-shadow: 0 0 12px rgba(70, 182, 255, 0.35);
}

.spotlight-ui-body {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  min-height: 168px;
}

.spotlight-ui-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
}

.spotlight-ui-sidebar span {
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(14, 33, 59, 0.95), rgba(10, 24, 45, 0.9));
  border: 1px solid rgba(75, 162, 255, 0.12);
}

.spotlight-ui-main {
  display: grid;
  gap: 10px;
}

.spotlight-ui-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.spotlight-ui-stat {
  padding: 12px 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14, 33, 59, 0.92), rgba(8, 21, 39, 0.92));
  border: 1px solid rgba(72, 160, 255, 0.14);
  color: #e7f7ff;
  font-size: 0.86rem;
  text-align: center;
}

.spotlight-ui-stat strong {
  margin: 0 0 6px;
  font-size: 1rem;
}

.spotlight-ui-chart {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15, 34, 61, 0.95), rgba(8, 21, 39, 0.92)),
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 28px,
      rgba(95, 187, 255, 0.05) 29px,
      rgba(95, 187, 255, 0.05) 30px
    );
  border: 1px solid rgba(76, 164, 255, 0.14);
}

.spotlight-ui-chart::after {
  content: "";
  position: absolute;
  inset: auto 12px 14px 12px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 184, 255, 0.1), rgba(0, 184, 255, 0.8));
  clip-path: polygon(0 85%, 12% 62%, 25% 68%, 40% 38%, 52% 48%, 65% 22%, 78% 30%, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 0 18px rgba(0, 184, 255, 0.25);
}

.spotlight-ui-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spotlight-ui-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(14, 31, 54, 0.92);
  border: 1px solid rgba(74, 158, 255, 0.14);
  color: #d4f4ff;
  font-size: 0.82rem;
}

.spotlight-phone-ui {
  position: relative;
  min-height: 248px;
  padding: 18px 14px 14px;
}

.spotlight-phone-notch {
  width: 74px;
  height: 10px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(32, 58, 90, 0.9);
}

.spotlight-phone-card {
  height: 108px;
  margin-bottom: 12px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(80, 178, 255, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(12, 30, 55, 0.95), rgba(8, 19, 35, 0.92));
  border: 1px solid rgba(80, 164, 255, 0.14);
}

.spotlight-phone-lines {
  display: grid;
  gap: 10px;
}

.spotlight-phone-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 97, 165, 0.95), rgba(88, 196, 255, 0.28));
}

.spotlight-copy {
  padding: 24px;
}

.spotlight-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.spotlight-impact {
  margin-top: 12px;
}

.spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.spotlight-tags span,
.spotlight-list li {
  padding: 9px 12px;
  border-radius: 999px;
  color: #d7f4ff;
  background: rgba(12, 28, 50, 0.86);
  border: 1px solid rgba(78, 156, 255, 0.16);
}

.spotlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

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

.process-grid,
.service-grid-large,
.project-gallery,
.comparison-grid,
.about-grid,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.detail-card,
.process-card,
.comparison-card,
.number-card,
.service-card-large,
.contact-info-card,
.contact-form,
.about-card,
.gallery-card,
.tab-panel {
  padding: 20px;
  border-radius: 16px;
}

.stat-card strong,
.number-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
}

.number-card {
  text-align: center;
}

.number-card strong {
  font-size: 3rem;
  color: var(--cyan-strong);
}

.ring-card {
  display: grid;
  align-content: center;
  justify-items: center;
}

.ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(8, 15, 29, 1) 37%, transparent 38%),
    conic-gradient(from 90deg, #0b4fff 0deg, #2ec5ff 260deg, rgba(45, 88, 141, 0.22) 260deg 360deg);
}

.projects-zone {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px 14px;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  direction: ltr;
}

.projects-window {
  overflow: hidden;
}

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

.project-card,
.gallery-card {
  overflow: hidden;
  border-radius: 16px;
}

.project-card {
  border: 1px solid rgba(92, 167, 255, 0.25);
  background: linear-gradient(180deg, rgba(9, 17, 32, 0.95), rgba(6, 10, 20, 0.98));
}

.mockup,
.tone-blue,
.tone-cyan,
.tone-gold {
  background: linear-gradient(180deg, rgba(9, 17, 34, 0.96), rgba(7, 12, 24, 0.98));
}

.tone-blue {
  background:
    radial-gradient(circle at 50% 10%, rgba(72, 176, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(9, 17, 34, 0.96), rgba(7, 12, 24, 0.98));
}

.tone-cyan {
  background:
    radial-gradient(circle at 50% 10%, rgba(70, 247, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(9, 16, 31, 0.96), rgba(7, 12, 24, 0.98));
}

.tone-gold {
  background:
    radial-gradient(circle at 50% 10%, rgba(244, 194, 94, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(12, 22, 40, 0.96), rgba(8, 12, 22, 0.98));
}

.mockup {
  padding: 12px;
}

.browser-top {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.browser-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(216, 235, 255, 0.58);
}

.screen,
.gallery-visual {
  height: 136px;
  border: 1px solid rgba(101, 174, 255, 0.18);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.screen {
  background:
    linear-gradient(90deg, rgba(8, 16, 31, 0.92) 0 26%, transparent 26%),
    linear-gradient(180deg, rgba(19, 43, 79, 0.75), rgba(8, 17, 31, 0.95));
}

.screen-shot-shell,
.gallery-device-frame {
  position: absolute;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 28, 52, 0.98), rgba(8, 15, 30, 0.98));
  border: 1px solid rgba(170, 223, 255, 0.22);
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.screen-shot-shell {
  inset: 10px;
  padding: 8px;
  border-radius: 18px;
}

.gallery-device-frame {
  inset: 14px;
  padding: 10px;
  border-radius: 28px;
}

.screen-shot-shell::before,
.gallery-device-frame::before {
  content: "";
  position: absolute;
  inset: 8px 8px auto 8px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(91, 194, 255, 0.08));
  z-index: 1;
}

.screen-shot-image {
  position: absolute;
  inset: 26px 8px 8px 8px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.96;
}

.gallery-visual {
  min-height: 190px;
}

.gallery-shot-image {
  position: absolute;
  inset: 28px 10px 10px 10px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.94;
}

.screen::before,
.gallery-visual::before {
  content: "";
  position: absolute;
  inset: 16px 18px auto auto;
  width: 34%;
  height: 14px;
  border-radius: 999px;
  background: rgba(76, 168, 255, 0.22);
  z-index: 0;
}

.screen::after,
.gallery-visual::after {
  content: "";
  position: absolute;
  inset: 40px 32px 18px 104px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(27, 128, 244, 0.08), rgba(27, 128, 244, 0.02)),
    linear-gradient(180deg, transparent 0 62%, rgba(72, 193, 255, 0.14) 62% 72%, transparent 72% 100%);
  z-index: 0;
}


.screen-layout {
  position: absolute;
  inset: 18px 18px 18px auto;
  width: 74px;
  display: grid;
  gap: 9px;
  z-index: 2;
}

.screen-layout span {
  border-radius: 7px;
  background: rgba(95, 171, 255, 0.14);
}

.screen-layout span:first-child {
  height: 12px;
}

.screen-layout span:nth-child(2) {
  height: 42px;
}

.screen-layout span:last-child {
  height: 24px;
}

.screen-graph {
  position: absolute;
  right: 124px;
  left: 24px;
  bottom: 24px;
  top: 34px;
  border-radius: 12px;
  background:
    linear-gradient(rgba(94, 173, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 173, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 2;
}

.screen-graph::after {
  content: "";
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 18px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(55, 189, 255, 0.1));
  clip-path: polygon(0 72%, 14% 58%, 28% 62%, 42% 42%, 56% 48%, 71% 24%, 84% 32%, 100% 6%, 100% 100%, 0 100%);
}

.screen-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(6, 15, 29, 0.92);
  border: 1px solid rgba(88, 196, 255, 0.16);
  z-index: 2;
}

.screen-caption strong {
  color: #eff9ff;
  font-size: 0.86rem;
}

.screen-caption span {
  color: var(--cyan-strong);
  font-size: 0.76rem;
}

.project-meta,
.gallery-body {
  padding: 14px 16px 16px;
  direction: rtl;
}

.project-meta-top,
.gallery-headline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.project-meta p,
.gallery-body h2 {
  margin: 0;
  color: #f0f8ff;
  font-size: 1.08rem;
  font-weight: 700;
}

.project-meta span,
.gallery-body span {
  display: block;
  margin-top: 6px;
  color: rgba(218, 233, 255, 0.68);
  font-size: 0.9rem;
}

.project-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-top: 0;
  padding: 0 12px;
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(16, 103, 191, 0.22);
  border: 1px solid rgba(88, 196, 255, 0.24);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.project-inline-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--cyan-strong);
  text-decoration: none;
  font-weight: 800;
}

.gallery-visual {
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 18px;
}

.gallery-visual-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(5, 14, 28, 0.9);
  border: 1px solid rgba(88, 196, 255, 0.16);
}

.gallery-visual-copy span,
.gallery-visual-copy small {
  margin: 0;
  color: rgba(218, 233, 255, 0.76);
}

.gallery-visual-copy strong {
  color: #f4fbff;
  font-size: 1.2rem;
}

.gallery-subtitle {
  margin-top: 8px;
  color: #e4f6ff;
  font-weight: 700;
}

.gallery-impact {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #d7f4ff;
  background: rgba(9, 20, 38, 0.86);
  border: 1px solid rgba(79, 155, 255, 0.12);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.project-link-btn {
  min-width: 180px;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.gallery-tags span {
  margin-top: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: #d7f4ff;
  background: rgba(12, 28, 50, 0.86);
  border: 1px solid rgba(78, 156, 255, 0.16);
  font-size: 0.84rem;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(84, 156, 255, 0.22);
  border-radius: 50%;
  color: #dff8ff;
  font-size: 1.6rem;
  background: rgba(8, 15, 28, 0.92);
  cursor: pointer;
}

.side-meter {
  position: relative;
  width: 10px;
  height: 138px;
  border-radius: 999px;
  border: 1px solid rgba(84, 156, 255, 0.18);
  background: rgba(10, 18, 34, 0.9);
}

.meter-thumb {
  position: absolute;
  right: 1px;
  left: 1px;
  top: 18px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(82, 190, 255, 0.9), rgba(28, 118, 255, 0.88));
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(138, 173, 226, 0.28);
  cursor: pointer;
}

.slider-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9af3ff, #1fa9ff);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 22px;
}

.compact-intro {
  max-width: 640px;
}

.detail-card span,
.service-card-large strong {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--cyan-strong);
  background: rgba(19, 119, 220, 0.14);
  border: 1px solid rgba(73, 165, 255, 0.16);
}

.tab-panels .tab-panel,
.faq-answer {
  display: none;
}

.tab-panels .tab-panel.active,
.faq-item.open .faq-answer {
  display: block;
}

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

.faq-item {
  border: 1px solid rgba(80, 159, 255, 0.18);
  border-radius: 16px;
  background: rgba(7, 15, 30, 0.88);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: right;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 18px;
}

.contact-info-stack {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(80, 159, 255, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(4, 10, 20, 0.9);
  font: inherit;
  font-size: 16px;
}

.range-label strong {
  color: var(--cyan-strong);
}

.form-note.success {
  color: #9af3ff;
}

.gallery-card.hidden {
  display: none;
}

.empty-state {
  padding: 28px;
  border-radius: 18px;
  border: 1px dashed rgba(88, 196, 255, 0.28);
  color: var(--muted);
  text-align: center;
  background: rgba(7, 15, 30, 0.72);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

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

.result-card {
  overflow: hidden;
}

.result-visual {
  padding: 16px;
  min-height: 160px;
  border-radius: 16px;
  border: 1px solid rgba(87, 170, 255, 0.16);
}

.result-screen {
  display: grid;
  gap: 12px;
  width: 100%;
  min-height: 126px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 14, 28, 0.82), rgba(8, 18, 36, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.result-screen span {
  display: block;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(85, 196, 255, 0.16), rgba(76, 155, 255, 0.42));
}

.result-screen span:first-child {
  height: 22px;
  width: 56%;
}

.result-screen span:nth-child(2) {
  height: 54px;
}

.result-screen span:nth-child(3) {
  height: 22px;
  width: 72%;
}

.comparison-card h3 {
  margin: 18px 0 14px;
  font-size: 1.34rem;
  color: #f2fbff;
}

.result-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.result-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(9, 20, 38, 0.82);
  border: 1px solid rgba(79, 155, 255, 0.12);
  color: var(--muted);
  line-height: 1.8;
}

.result-list strong {
  color: var(--cyan-strong);
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.wide-btn {
  min-width: 220px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #f4fffb;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(20, 182, 114, 0.94), rgba(12, 128, 82, 0.94));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(20, 182, 114, 0.3);
}

.floating-whatsapp::before {
  content: "WA";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
}

.sales-bot {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 65;
  display: grid;
  gap: 12px;
  justify-items: start;
}

.sales-bot-panel {
  width: min(390px, calc(100vw - 36px));
  max-height: min(78vh, 720px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(84, 156, 255, 0.2);
  background: linear-gradient(180deg, rgba(6, 12, 24, 0.96), rgba(3, 8, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 0 1px rgba(59, 133, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
}

.sales-bot-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(84, 156, 255, 0.14);
}

.sales-bot-header-copy {
  display: grid;
  gap: 6px;
}

.sales-bot-header-copy strong {
  font-size: 1rem;
  color: var(--cyan-strong);
}

.sales-bot-header-copy span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.sales-bot-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  color: var(--text);
  background: rgba(17, 32, 58, 0.9);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.sales-bot-body {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}

.sales-bot-messages {
  display: grid;
  gap: 12px;
  max-height: 360px;
  overflow-y: auto;
  padding: 12px 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(72, 162, 255, 0.28) transparent;
}

.sales-bot-message {
  display: flex;
  width: 100%;
}

.sales-bot-message.is-user {
  justify-content: flex-start;
}

.sales-bot-message.is-bot {
  justify-content: flex-end;
}

.sales-bot-bubble {
  width: min(100%, 290px);
  padding: 14px 14px 12px;
  border-radius: 20px;
  border: 1px solid rgba(84, 156, 255, 0.14);
  background: rgba(9, 20, 38, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.sales-bot-message.is-user .sales-bot-bubble {
  background: linear-gradient(180deg, rgba(15, 89, 150, 0.92), rgba(9, 54, 100, 0.94));
  border-color: rgba(83, 189, 255, 0.28);
}

.sales-bot-bubble p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  font-size: 0.94rem;
}

.sales-bot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.sales-bot-chip {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(87, 182, 255, 0.2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(9, 25, 46, 0.86);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sales-bot-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(87, 182, 255, 0.36);
  background: rgba(14, 34, 62, 0.94);
}

.sales-bot-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(84, 156, 255, 0.16);
  border-radius: 22px;
  background: rgba(7, 16, 31, 0.92);
}

.sales-bot-form h3 {
  margin: 0 0 2px;
  font-size: 0.98rem;
  color: var(--cyan-strong);
}

.sales-bot-form label {
  display: grid;
  gap: 8px;
}

.sales-bot-form span {
  color: var(--muted);
  font-size: 0.92rem;
}

.sales-bot-form input,
.sales-bot-form select,
.sales-bot-form textarea {
  width: 100%;
  border: 1px solid rgba(82, 156, 255, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(3, 9, 18, 0.92);
  font: inherit;
}

.sales-bot-form textarea {
  resize: vertical;
  min-height: 92px;
}

.sales-bot-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.sales-bot-note.success {
  color: #8cf6c2;
}

.sales-bot-toggle {
  direction: rtl;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(84, 156, 255, 0.22);
  border-radius: 24px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(11, 23, 43, 0.96), rgba(6, 13, 26, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 16px 32px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(22, 135, 255, 0.16);
  cursor: pointer;
  text-align: right;
}

.sales-bot-toggle-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #f7fbff;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, rgba(34, 183, 255, 0.92), rgba(23, 111, 214, 0.92));
}

.sales-bot-toggle-copy {
  display: grid;
  gap: 4px;
}

.sales-bot-toggle-copy strong {
  font-size: 0.98rem;
}

.sales-bot-toggle-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.sales-bot.open .sales-bot-toggle {
  border-color: rgba(87, 182, 255, 0.3);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-strong);
  font-size: 1.3rem;
}

.footer-links a {
  color: rgba(243, 249, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 220px 1fr;
  }

  .analytics-panel {
    grid-column: 1 / -1;
  }

  .services-rail {
    padding-top: 40px;
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 16px;
  }

  .topbar {
    grid-template-columns: 1fr;
    position: sticky;
    top: 8px;
    justify-items: center;
    gap: 14px;
    padding: 18px 16px;
  }

  .nav {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px;
    padding: 8px 10px;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .search-btn {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .process-grid,
  .comparison-grid,
  .project-gallery,
  .service-grid-large,
  .about-grid,
  .contact-layout,
  .contact-panel,
  .site-footer,
  .panel-stats,
  .works-stats,
  .spotlight-layout {
    grid-template-columns: 1fr;
  }

  .services-rail {
    order: 2;
    padding-top: 0;
  }

  .spotlight-mockup {
    grid-template-columns: 1fr;
  }

  .spotlight-phone-ui {
    min-height: 184px;
  }

  .hero-copy {
    order: 1;
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(4.5rem, 15vw, 6.2rem);
  }

  .analytics-panel {
    order: 3;
  }

  .projects-zone {
    grid-template-columns: 1fr;
  }

  .projects-track {
    grid-template-columns: 1fr;
  }

  .slider-arrow,
  .side-meter {
    display: none;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .feature-grid,
  .numbers-grid,
  .panel-stats,
  .works-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-form,
  .contact-info-stack {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
    justify-items: stretch;
  }

  .project-meta,
  .gallery-body {
    padding: 16px;
  }
}

@media (max-width: 620px) {
  .hero-stage,
  .page-hero,
  .content-panel,
  .contact-panel,
  .site-footer {
    padding: 20px 14px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: 4.2rem;
  }

  .hero-copy .sales-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-copy h2,
  .page-hero h1 {
    font-size: 1.6rem;
  }

  .topbar {
    gap: 12px;
    padding: 16px 12px;
    border-radius: 22px;
  }

  .brand {
    font-size: 2rem;
  }

  .nav {
    gap: 6px;
    padding: 6px 8px;
    border-radius: 22px;
  }

  .nav a {
    min-height: 32px;
    min-width: 0;
    font-size: 0.74rem;
    padding: 0 8px;
  }

  .nav a.active::after {
    bottom: -6px;
    width: 28px;
  }

  .contact-form label {
    margin-bottom: 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 14px;
  }

  .feature-grid,
  .numbers-grid,
  .panel-stats,
  .works-stats {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .sales-bot {
    right: 12px;
    left: 12px;
    bottom: 78px;
    justify-items: stretch;
  }

  .sales-bot-panel,
  .sales-bot-toggle {
    width: 100%;
  }

  .sales-bot-panel {
    max-height: min(64vh, 620px);
    border-radius: 24px;
  }

  .sales-bot-bubble {
    width: min(100%, 100%);
  }

  .spotlight-ui-body {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .spotlight-ui-stat-row {
    gap: 6px;
  }

  .spotlight-ui-stat {
    padding: 10px 6px;
    font-size: 0.74rem;
  }
}
