:root {
  color-scheme: dark;
  --bg: #050713;
  --bg-2: #080d1c;
  --card: rgba(255, 255, 255, 0.075);
  --card-2: rgba(255, 255, 255, 0.105);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(125, 230, 255, 0.36);
  --text: #f7fbff;
  --muted: #a9bbd3;
  --soft: #d9e7f7;
  --brand: #21d4fd;
  --brand-2: #8b5cf6;
  --brand-3: #0b4e98;
  --danger: #ff4d7d;
  --success: #39e7a5;
  --warning: #ffd166;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-h: 84px;
  --font: "Cairo", "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f9ff;
  --bg-2: #ffffff;
  --card: rgba(255, 255, 255, 0.82);
  --card-2: rgba(255, 255, 255, 0.96);
  --border: rgba(7, 25, 54, 0.12);
  --border-strong: rgba(33, 126, 253, 0.28);
  --text: #071326;
  --muted: #5b6d84;
  --soft: #1d3351;
  --shadow: 0 24px 70px rgba(29, 58, 103, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 14%,
      rgba(33, 212, 253, 0.26),
      transparent 30%
    ),
    radial-gradient(
      circle at 78% 20%,
      rgba(139, 92, 246, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 60% 90%,
      rgba(14, 79, 154, 0.32),
      transparent 34%
    ),
    linear-gradient(135deg, var(--bg), var(--bg-2));
}

.site-bg::after,
.site-bg::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.38;
}

.site-bg::before {
  width: 360px;
  height: 360px;
  left: 8%;
  top: 18%;
  background: linear-gradient(
    135deg,
    rgba(33, 212, 253, 0.3),
    rgba(139, 92, 246, 0.16)
  );
  animation: floatOne 9s ease-in-out infinite;
}

.site-bg::after {
  width: 300px;
  height: 300px;
  right: 7%;
  bottom: 12%;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.25),
    rgba(33, 212, 253, 0.13)
  );
  animation: floatTwo 11s ease-in-out infinite;
}

.header {
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.header.scrolled {
  background: rgba(5, 7, 19, 0.74);
  border-color: var(--border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

:root[data-theme="light"] .header.scrolled {
  background: rgba(255, 255, 255, 0.78);
}

.brand__mark {
  padding: 4px;
  background: #02040b;
  box-shadow: 0 12px 28px rgba(33, 212, 253, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.nav a {
  padding: 11px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
  background: linear-gradient(
    135deg,
    rgba(33, 212, 253, 0.16),
    rgba(139, 92, 246, 0.14)
  );
}

.nav a:hover {
  transform: translateY(-1px);
}

.icon-btn,
.nav-toggle {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.icon-btn:hover,
.nav-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--card-2);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  position: relative;
  border-radius: 99px;
  background: currentColor;
}

.nav-toggle span::after,
.nav-toggle span::before {
  content: "";
  position: absolute;
  right: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 0.22s ease,
    top 0.22s ease;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

body.nav-open .nav-toggle span {
  background: 0 0;
}

body.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: clamp(58px, 104px) 0;
}
.section--tight {
  padding: clamp(34px, 5vw, 64px) 0;
}

.hero {
  position: relative;
  padding: clamp(33px, 3vw, 70px) 3px clamp(12px, 0vw, 109px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
}

.kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(33, 212, 253, 0.09);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 900;
}

.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 18px rgba(33, 212, 253, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.h1,
h1 {
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.06em;
}

.h2,
h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(
    135deg,
    #fff 0,
    var(--brand) 38%,
    var(--brand-2) 82%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.9;
}

.muted {
  color: var(--muted);
}

.actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.09);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 18px 42px rgba(33, 212, 253, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.24);
}

.btn-ghost {
  background: 0 0;
}

.btn-sm {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 13px;
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.105),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 25% 10%,
      rgba(33, 212, 253, 0.34),
      transparent 28%
    ),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.3), transparent 34%);
  pointer-events: none;
}

.hero-logo {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero-logo img {
  width: min(100%, 620px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.hero-floating {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

:root[data-theme="light"] .hero-floating {
  background: rgba(255, 255, 255, 0.78);
}

.hero-floating strong {
  font-size: 1.2rem;
}

.hero-floating span {
  color: var(--muted);
  font-size: 0.82rem;
}

.float-a {
  left: 18px;
  top: 18px;
}

.float-b {
  right: 18px;
  bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.card.pad {
  padding: 24px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    circle at 20% 0,
    rgba(33, 212, 253, 0.14),
    transparent 34%
  );
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  border-color: var(--border-strong);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(33, 212, 253, 0.95),
    rgba(139, 92, 246, 0.95)
  );
  box-shadow: 0 16px 32px rgba(33, 212, 253, 0.14);
  font-weight: 900;
}

.card p,
.check-list,
.feature-list {
  color: var(--muted);
  line-height: 1.85;
}

.check-list,
.clean-list,
.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-inline-start: 28px;
}

.check-list li::before,
.feature-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.strip {
  border-block: 1px solid var(--border);
  background: linear-gradient(
    90deg,
    rgba(33, 212, 253, 0.1),
    rgba(139, 92, 246, 0.1)
  );
}

.marquee {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  min-width: 100%;
  animation: marquee 28s linear infinite;
}

.marquee span {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
  white-space: nowrap;
}

.work-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(5, 7, 19, 0.08), rgba(5, 7, 19, 0.82)),
    radial-gradient(
      circle at 22% 12%,
      rgba(33, 212, 253, 0.52),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(139, 92, 246, 0.52),
      transparent 32%
    ),
    linear-gradient(135deg, rgba(8, 20, 42, 0.92), rgba(42, 13, 82, 0.92));
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.work-card small {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
}

.work-card h3,
.work-card p {
  position: relative;
  z-index: 1;
}

.work-card p {
  color: rgba(255, 255, 255, 0.76);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  transform: translateY(-1px);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.pricing-card.featured {
  border-color: rgba(33, 212, 253, 0.45);
  box-shadow: 0 24px 70px rgba(33, 212, 253, 0.12);
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: 0.82rem;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 16px 0 8px;
}

.price strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.price span {
  color: var(--muted);
  margin-bottom: 6px;
}

.pricing-card .btn {
  margin-top: auto;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}

.step-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 900;
  font-size: 1.2rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0, rgba(33, 212, 253, 0.2), transparent 30%),
    radial-gradient(
      circle at 90% 80%,
      rgba(139, 92, 246, 0.22),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.055)
    );
  box-shadow: var(--shadow);
}

.banner p {
  color: var(--soft);
  line-height: 1.8;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1/-1;
}

.form-field label {
  color: var(--soft);
  font-weight: 900;
  font-size: 0.92rem;
}

.input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: 0;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

select option {
  color: #061126;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(33, 212, 253, 0.14);
  background: rgba(255, 255, 255, 0.09);
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item span {
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.page-hero {
  padding: clamp(44px, 7vw, 86px) 0 clamp(24px, 4vw, 40px);
}

.page-hero .container {
  display: grid;
  gap: 18px;
  max-width: 980px;
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.breadcrumb a {
  color: var(--brand);
}

.logo-panel {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.logo-panel img {
  margin-inline: auto;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

td,
th {
  padding: 16px;
  text-align: right;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.065);
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.footer {
  padding: 44px 0 24px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.62fr);
  gap: 26px;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
}

.footer a,
.footer p {
  color: var(--muted);
  line-height: 1.8;
}

.footer a:hover {
  color: var(--brand);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.to-top,
.whatsapp-float {
  position: fixed;
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.whatsapp-float {
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #25d366, #118c44);
}

.to-top {
  left: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  opacity: 0;
  pointer-events: none;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover,
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes floatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(22px, -28px, 0);
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-24px, 30px, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@media (max-width: 1080px) {
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 16px auto 16px;
    display: grid;
    justify-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(5, 7, 19, 0.94);
    transform: translateY(-18px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease;
  }

  :root[data-theme="light"] .nav {
    background: rgba(255, 255, 255, 0.96);
  }

  body.nav-open .nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    text-align: center;
    border-radius: 16px;
  }

  .header-actions .btn {
    display: none;
  }

  .brand__name span {
    display: none;
  }
}

@media (max-width: 720px) {
  .footer-grid,
  .form-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats {
    grid-template-columns: 1fr;
  }

  .banner {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    min-height: 250px;
    padding: 20px;
  }

  .hero-floating {
    position: static;
    margin: 0 18px 18px;
  }

  .hero-card {
    display: grid;
  }

  .actions,
  .hero-actions {
    align-items: stretch;
  }

  .actions .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .to-top,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
  }

  .whatsapp-float {
    right: 16px;
  }

  .to-top {
    left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::after,
  ::before {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
  }
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --glow-a: rgba(33, 212, 253, 0.42);
  --glow-b: rgba(139, 92, 246, 0.4);
  --glass-line: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.055)
  );
  --mesh:
    radial-gradient(
      circle at 14% 20%,
      rgba(33, 212, 253, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(139, 92, 246, 0.17),
      transparent 26%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(11, 78, 152, 0.22),
      transparent 32%
    );
}

body::before {
  opacity: 0.65;
}

.header {
  isolation: isolate;
}

.header::before {
  content: "";
  position: absolute;
  inset: 10px clamp(10px, 3vw, 38px);
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.026)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.72;
  pointer-events: none;
}

.header.scrolled::before {
  opacity: 1;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.brand__mark {
  position: relative;
  transform: translateZ(0);
  animation: logoBreath 4.5s ease-in-out infinite;
}

.brand__name strong,
.gradient-text {
  text-shadow: 0 0 28px rgba(33, 212, 253, 0.12);
}

.nav {
  position: relative;
  overflow: hidden;
}

.nav::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(33, 212, 253, 0.16),
    rgba(139, 92, 246, 0.16),
    transparent
  );
  transform: translateX(120%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.nav:hover::before {
  transform: translateX(-120%);
}

.nav a {
  position: relative;
  isolation: isolate;
}

.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav a.active::after,
.nav a:hover::after {
  transform: scaleX(1);
}

.kicker {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 18px 45px rgba(33, 212, 253, 0.09);
  animation: softPulse 3.6s ease-in-out infinite;
}

.h1,
.h2,
h1,
h2 {
  text-wrap: balance;
}

.banner p,
.card p,
.faq details p,
.lead,
.section-head p {
  text-wrap: pretty;
}

.hero-grid {
  position: relative;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: -42px -22px auto auto;
  width: min(340px, 60vw);
  height: min(340px, 60vw);
  border-radius: 44% 56% 70% 30%/34% 38% 62% 66%;
  background: linear-gradient(
    135deg,
    rgba(33, 212, 253, 0.16),
    rgba(139, 92, 246, 0.14)
  );
  filter: blur(8px);
  opacity: 0.72;
  animation: morphBlob 11s ease-in-out infinite;
  pointer-events: none;
}

.hero-card {
  transform-style: preserve-3d;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 62%
  );
  transform: translateX(45%) rotate(8deg);
  opacity: 0.34;
  animation: cardShine 6.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-card:hover {
  transform: perspective(1100px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
  border-color: rgba(33, 212, 253, 0.42);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    0 0 70px rgba(33, 212, 253, 0.09);
}

.hero-logo img {
  animation: logoFloat 6.8s ease-in-out infinite;
}

.hero-floating {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    135deg,
    rgba(5, 7, 19, 0.78),
    rgba(12, 19, 40, 0.58)
  );
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.hero-floating:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(33, 212, 253, 0.42);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(33, 212, 253, 0.12);
}

.stats {
  perspective: 900px;
}

.stat {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.stat::after {
  content: "";
  position: absolute;
  inset: auto -24px -34px auto;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(33, 212, 253, 0.26),
    transparent 68%
  );
  opacity: 0;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.stat:hover {
  transform: translateY(-6px) rotateX(3deg);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.082);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.stat:hover::after {
  opacity: 1;
  transform: scale(1.28);
}

.card,
.contact-item,
.faq details,
.logo-panel,
.pricing-card,
.table-wrap {
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.card,
.pricing-card {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.card::after,
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 0 22%,
    rgba(33, 212, 253, 0.38),
    rgba(139, 92, 246, 0.34),
    transparent 70% 100%
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  animation: borderSpin 8s linear infinite;
  pointer-events: none;
}

.card:hover,
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.23),
    0 0 54px rgba(33, 212, 253, 0.075);
}

.card:hover::after,
.pricing-card:hover::after {
  opacity: 1;
}

.card.pad h3,
.pricing-card h3,
.work-card h3 {
  letter-spacing: -0.02em;
}

.icon {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.icon::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5),
    transparent 62%
  );
  transform: translateX(78%) rotate(18deg);
  transition: transform 0.65s ease;
}

.card:hover .icon::after {
  transform: translateX(-78%) rotate(18deg);
}

.work-card {
  position: relative;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    filter 0.35s ease;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.13),
      transparent 28%,
      rgba(255, 255, 255, 0.06) 70%,
      transparent
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045) 0 1px,
      transparent 1px 12px
    );
  opacity: 0.72;
  pointer-events: none;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 10px);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.work-card:hover {
  transform: translateY(-9px) scale(1.012);
  border-color: rgba(33, 212, 253, 0.42);
  filter: saturate(1.12) contrast(1.04);
  box-shadow:
    0 32px 84px rgba(0, 0, 0, 0.28),
    0 0 70px rgba(139, 92, 246, 0.12);
}

.work-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.pricing-card.featured {
  background:
    radial-gradient(circle at 18% 0, rgba(33, 212, 253, 0.19), transparent 36%),
    radial-gradient(
      circle at 100% 100%,
      rgba(139, 92, 246, 0.17),
      transparent 38%
    ),
    linear-gradient(180deg, var(--card-2), var(--card));
}

.pricing-card.featured::before {
  opacity: 1;
  background: radial-gradient(
    circle at 22% 0,
    rgba(33, 212, 253, 0.22),
    transparent 42%
  );
}

.badge,
.btn-primary {
  background-size: 160% 160%;
  animation: gradientMove 5s ease infinite;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: translateX(115%);
  transition: transform 0.58s ease;
}

.btn:hover::before {
  transform: translateX(-115%);
}

.btn-primary {
  border: 0;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    var(--brand),
    var(--brand-2),
    var(--brand)
  );
  filter: blur(14px);
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.btn-primary:hover::after {
  opacity: 0.62;
}

.filter-btn {
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0,
    rgba(255, 255, 255, 0.18),
    transparent 48%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
}

.filter-btn.active::before,
.filter-btn:hover::before {
  opacity: 1;
}

.banner {
  isolation: isolate;
}

.banner::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    rgba(33, 212, 253, 0.55),
    rgba(139, 92, 246, 0.45),
    rgba(33, 212, 253, 0.55)
  );
  animation: borderSpin 8s linear infinite;
  opacity: 0.28;
}

.form-field label {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.form-field:focus-within label {
  color: var(--brand);
  transform: translateX(-2px);
}

.input,
select,
textarea {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.input:hover,
select:hover,
textarea:hover {
  border-color: rgba(33, 212, 253, 0.26);
  background: rgba(255, 255, 255, 0.078);
}

.table-wrap::-webkit-scrollbar,
textarea::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.table-wrap::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.faq summary {
  position: relative;
  padding-inline-end: 54px;
}

.faq summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand);
  transform: translateY(-50%);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.faq details[open] summary::after {
  content: "−";
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.faq details {
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.faq details:hover,
.faq details[open] {
  border-color: var(--border-strong);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
}

tr {
  transition: background 0.2s ease;
}

tr:hover td {
  background: rgba(33, 212, 253, 0.055);
}

.contact-item {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.082);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.18);
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0, rgba(33, 212, 253, 0.09), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1), transparent 30%);
  pointer-events: none;
}

.footer .container {
  position: relative;
}

.to-top,
.whatsapp-float {
  overflow: hidden;
}

.to-top::before,
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from var(--angle),
    transparent,
    rgba(255, 255, 255, 0.52),
    transparent 35%
  );
  animation: borderSpin 2.4s linear infinite;
  opacity: 0.28;
}

.to-top span,
.to-top svg,
.whatsapp-float span,
.whatsapp-float svg {
  position: relative;
}

.reveal.visible:nth-child(2) {
  transition-delay: 40ms;
}

.reveal.visible:nth-child(3) {
  transition-delay: 80ms;
}

.reveal.visible:nth-child(4) {
  transition-delay: 0.12s;
}

.reveal.visible:nth-child(5) {
  transition-delay: 0.16s;
}

.reveal.visible:nth-child(6) {
  transition-delay: 0.2s;
}

:focus-visible {
  outline: 3px solid rgba(33, 212, 253, 0.34);
  outline-offset: 4px;
}

@keyframes auroraSweep {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.75;
  }

  to {
    transform: translate3d(2%, 1%, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes logoBreath {
  0%,
  100% {
    box-shadow:
      0 12px 28px rgba(33, 212, 253, 0.18),
      0 0 0 rgba(139, 92, 246, 0);
  }

  50% {
    box-shadow:
      0 16px 34px rgba(33, 212, 253, 0.28),
      0 0 44px rgba(139, 92, 246, 0.18);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 0 rgba(33, 212, 253, 0.18),
      0 18px 45px rgba(33, 212, 253, 0.09);
  }

  50% {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 8px rgba(33, 212, 253, 0),
      0 22px 56px rgba(139, 92, 246, 0.1);
  }
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 44% 56% 70% 30%/34% 38% 62% 66%;
    transform: rotate(0) scale(1);
  }

  50% {
    border-radius: 60% 40% 32% 68%/58% 30% 70% 42%;
    transform: rotate(10deg) scale(1.08);
  }
}

@keyframes cardShine {
  0%,
  18% {
    transform: translateX(45%) rotate(8deg);
    opacity: 0;
  }

  36%,
  55% {
    opacity: 0.34;
  }

  100%,
  70% {
    transform: translateX(-45%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes borderSpin {
  to {
    --angle: 360deg;
  }
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 900px) {
  .header::before {
    inset: 8px;
    border-radius: 24px;
  }

  .nav {
    border-color: rgba(33, 212, 253, 0.2);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.38),
      0 0 60px rgba(33, 212, 253, 0.08);
  }

  .nav a {
    min-height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.045);
  }

  .card:hover,
  .contact-item:hover,
  .hero-card:hover,
  .pricing-card:hover,
  .stat:hover,
  .work-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 720px) {
  body::before {
    background-size: 38px 38px;
    opacity: 0.42;
  }

  .hero-grid::before {
    inset: -20px auto auto 0;
    width: 220px;
    height: 220px;
  }

  .section-head {
    text-align: start;
  }

  .section-head .kicker {
    margin-inline: 0;
  }

  .card.pad,
  .pricing-card {
    padding: 20px;
  }

  .work-card {
    min-height: 280px;
  }

  .to-top,
  .whatsapp-float {
    border-radius: 16px;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .card,
  .contact-item,
  .faq details,
  .header,
  .logo-panel,
  .pricing-card,
  .table-wrap {
    background-color: rgba(10, 15, 32, 0.92);
  }
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 212, 255, 0.2), transparent 30%),
    radial-gradient(
      circle at 82% 8%,
      rgba(139, 92, 246, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(255, 46, 136, 0.14),
      transparent 38%
    ),
    linear-gradient(135deg, #030712, #07111f 45%, #050816);
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -1;
  pointer-events: none;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(0, 212, 255, 0.16),
    rgba(139, 92, 246, 0.18),
    rgba(255, 46, 136, 0.12),
    transparent
  );
  filter: blur(90px);
  opacity: 0.75;
  animation: auroraMove 14s ease-in-out infinite alternate;
}

@keyframes auroraMove {
  from {
    transform: rotate(0) scale(1);
  }

  to {
    transform: rotate(18deg) scale(1.08);
  }
}

.card,
.contact-card,
.feature-card,
.portfolio-card,
.price-card,
.project-card,
.service-card,
.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 28px !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.045)
  ) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transform-style: preserve-3d;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.card::before,
.contact-card::before,
.feature-card::before,
.portfolio-card::before,
.price-card::before,
.project-card::before,
.service-card::before,
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.75),
    transparent 28%,
    rgba(139, 92, 246, 0.65),
    transparent 70%,
    rgba(255, 46, 136, 0.55)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.card:hover,
.contact-card:hover,
.feature-card:hover,
.portfolio-card:hover,
.price-card:hover,
.project-card:hover,
.service-card:hover,
.work-card:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: rgba(0, 212, 255, 0.42) !important;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(0, 212, 255, 0.15);
}

.card:hover::before,
.contact-card:hover::before,
.feature-card:hover::before,
.portfolio-card:hover::before,
.price-card:hover::before,
.project-card:hover::before,
.service-card:hover::before,
.work-card:hover::before {
  opacity: 1;
}

.btn,
.button,
.cta,
.primary-btn,
.secondary-btn,
a[class*="btn"],
button,
input[type="submit"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.btn::before,
.button::before,
.cta::before,
.primary-btn::before,
.secondary-btn::before,
a[class*="btn"]::before,
button::before,
input[type="submit"]::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(110deg, #00d4ff, #8b5cf6, #ff2e88, #00d4ff);
  background-size: 260% auto;
  opacity: 0;
  animation: btnNeon 4s linear infinite;
  transition: opacity 0.28s ease;
}

.btn::after,
.button::after,
.cta::after,
.primary-btn::after,
.secondary-btn::after,
a[class*="btn"]::after,
button::after,
input[type="submit"]::after {
  content: "";
  position: absolute;
  top: -50%;
  inset-inline-start: -80px;
  width: 44px;
  height: 200%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(24deg);
  transition: inset-inline-start 0.55s ease;
}

.btn:hover,
.button:hover,
.cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
a[class*="btn"]:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.58) !important;
  box-shadow:
    0 18px 48px rgba(0, 212, 255, 0.2),
    0 0 36px rgba(139, 92, 246, 0.18);
}

.btn:hover::before,
.button:hover::before,
.cta:hover::before,
.primary-btn:hover::before,
.secondary-btn:hover::before,
a[class*="btn"]:hover::before,
button:hover::before,
input[type="submit"]:hover::before {
  opacity: 0.38;
}

.btn:hover::after,
.button:hover::after,
.cta:hover::after,
.primary-btn:hover::after,
.secondary-btn:hover::after,
a[class*="btn"]:hover::after,
button:hover::after,
input[type="submit"]:hover::after {
  inset-inline-start: calc(100% + 90px);
}

@keyframes btnNeon {
  to {
    background-position: 260% center;
  }
}

.hero-title,
.main-title,
h1 {
  background: linear-gradient(
    135deg,
    #fff 5%,
    #8eeeff 28%,
    #a78bfa 56%,
    #ff7ac8 78%,
    #fff 95%
  );
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.16);
  animation: titleShine 6s linear infinite;
}

.hero p,
.hero-subtitle,
.main-subtitle {
  color: rgba(238, 246, 255, 0.78) !important;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

@keyframes titleShine {
  from {
    background-position: 0 center;
  }

  to {
    background-position: 240% center;
  }
}

.brand img,
.header-logo img,
.logo img,
.site-logo img {
  filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.28));
  animation: logoFloat 4.8s ease-in-out infinite;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.brand:hover img,
.header-logo:hover img,
.logo:hover img,
.site-logo:hover img {
  transform: scale(1.045) rotate(-1deg);
  filter: drop-shadow(0 0 28px rgba(139, 92, 246, 0.42));
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.plan-card:nth-child(2),
.price-card:nth-child(2),
.pricing-card:nth-child(2) {
  transform: scale(1.035);
  border-color: rgba(0, 212, 255, 0.55) !important;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.55),
    0 0 55px rgba(0, 212, 255, 0.18);
}

.plan-card:nth-child(2)::after,
.price-card:nth-child(2)::after,
.pricing-card:nth-child(2)::after {
  content: "الأكثر طلباً";
  position: absolute;
  top: 20px;
  inset-inline-end: -42px;
  width: 170px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: rotate(-35deg);
  background: linear-gradient(135deg, #00d4ff, #8b5cf6);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.22);
}

.plan-price,
.price,
.pricing-price {
  background: linear-gradient(135deg, #fff, #83efff, #bda7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.portfolio-card,
.project-card,
.work-card {
  position: relative;
  overflow: hidden;
}

.portfolio-card img,
.project-card img,
.work-card img {
  width: 100%;
  transition:
    transform 0.65s ease,
    filter 0.45s ease;
}

.portfolio-card::after,
.project-card::after,
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.portfolio-card:hover img,
.project-card:hover img,
.work-card:hover img {
  transform: scale(1.09);
  filter: saturate(122%) contrast(108%);
}

.portfolio-card:hover::after,
.project-card:hover::after,
.work-card:hover::after {
  opacity: 1;
}

.section-title,
h2 {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.section-title::before,
h2::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(0, 212, 255, 0.12),
    rgba(139, 92, 246, 0.1),
    transparent
  );
  filter: blur(2px);
}

.section-title::after,
h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d4ff, #8b5cf6, #ff2e88);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.28);
}

[dir="rtl"] .section-title::after,
[dir="rtl"] h2::after {
  margin-right: 0;
  margin-left: auto;
}

input,
select,
textarea {
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.075) !important;
  color: #eef6ff !important;
  outline: 0 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 212, 255, 0.68) !important;
  background: rgba(255, 255, 255, 0.105) !important;
  box-shadow:
    0 0 0 4px rgba(0, 212, 255, 0.12),
    0 0 28px rgba(0, 212, 255, 0.12) !important;
  transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
  color: rgba(238, 246, 255, 0.48);
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #030712;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #030712;
  border-radius: 999px;
  background: linear-gradient(180deg, #00d4ff, #8b5cf6, #ff2e88);
}

::selection {
  background: #00d4ff;
  color: #020617;
}

.header a,
.navbar a,
.site-header a,
nav a {
  position: relative;
  text-decoration: none !important;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.header a::after,
.navbar a::after,
.site-header a::after,
nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d4ff, #8b5cf6, #ff2e88);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
  transition:
    left 0.28s ease,
    right 0.28s ease;
}

.header a:hover,
.navbar a:hover,
.site-header a:hover,
nav a:hover {
  color: #8eeeff !important;
  transform: translateY(-2px);
}

.header a:hover::after,
.navbar a:hover::after,
.site-header a:hover::after,
nav a:hover::after {
  left: 0;
  right: 0;
}

.features-grid,
.services-grid {
  counter-reset: premiumCards;
}

.feature-card,
.service-card {
  counter-increment: premiumCards;
  position: relative;
}

.feature-card::after,
.service-card::after {
  content: "0" counter(premiumCards);
  position: absolute;
  top: 18px;
  inset-inline-end: 20px;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  opacity: 0.75;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    -webkit-text-stroke-color 0.35s ease;
}

.feature-card:hover::after,
.service-card:hover::after {
  transform: translateY(-4px) scale(1.08);
  opacity: 1;
  -webkit-text-stroke-color: rgba(0, 212, 255, 0.48);
}

.plan-card,
.price-card,
.pricing-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.plan-card::before,
.price-card::before,
.pricing-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    #00d4ff,
    transparent,
    #8b5cf6,
    transparent,
    #ff2e88,
    transparent,
    #00d4ff
  );
  opacity: 0;
  filter: blur(0.5px);
  animation: luxuryBorder 5s linear infinite;
  transition: opacity 0.35s ease;
}

.plan-card:hover::before,
.price-card:hover::before,
.pricing-card:hover::before {
  opacity: 0.9;
}

@keyframes luxuryBorder {
  to {
    transform: rotate(360deg);
  }
}

.page,
.site-main,
main {
  position: relative;
  overflow: hidden;
}

.page::before,
.site-main::before,
main::before {
  content: "</>";
  position: fixed;
  top: 22%;
  inset-inline-start: 5%;
  z-index: -1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(0, 212, 255, 0.38);
  font-size: 21px;
  font-weight: 900;
  backdrop-filter: blur(18px);
  transform: rotate(-10deg);
  animation: floatCodeA 7s ease-in-out infinite;
}

.page::after,
.site-main::after,
main::after {
  content: "{ }";
  position: fixed;
  bottom: 18%;
  inset-inline-end: 6%;
  z-index: -1;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(139, 92, 246, 0.42);
  font-size: 24px;
  font-weight: 900;
  backdrop-filter: blur(18px);
  transform: rotate(12deg);
  animation: floatCodeB 8s ease-in-out infinite;
}

@keyframes floatCodeA {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }

  50% {
    transform: translateY(-22px) rotate(-4deg);
  }
}

@keyframes floatCodeB {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }

  50% {
    transform: translateY(22px) rotate(5deg);
  }
}

@media (max-width: 800px) {
  .page::after,
  .page::before,
  .site-main::after,
  .site-main::before,
  main::after,
  main::before {
    display: none;
  }
}

.header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  width: min(1180px, calc(100% - 32px)) !important;
  min-height: 78px !important;
  margin: 14px auto !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 24px !important;
  background: rgba(6, 10, 25, 0.78) !important;
  backdrop-filter: blur(24px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32) !important;
}

.header::before,
.header::after {
  display: none !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: max-content !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 1002 !important;
}

.brand__mark {
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.32)) !important;
}

.brand__name {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
}

.brand__name strong {
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
}

.brand__name span {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(238, 246, 255, 0.62) !important;
  white-space: nowrap !important;
}

.header .nav {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
  gap: 6px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.header .nav::before,
.header .nav::after {
  display: none !important;
}

.header .nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: rgba(238, 246, 255, 0.74) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  transition: 0.25s ease !important;
}

.header .nav a::before,
.header .nav a::after {
  display: none !important;
}

.header .nav a:hover,
.header .nav a.active {
  color: #ffffff !important;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.16),
    rgba(139, 92, 246, 0.18)
  ) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-1px) !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  min-width: max-content !important;
  position: relative !important;
  z-index: 1002 !important;
}

.icon-btn,
.nav-toggle {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.nav-toggle {
  display: none !important;
  position: relative !important;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "" !important;
  width: 20px !important;
  height: 2px !important;
  display: block !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  transition: 0.25s ease !important;
}

.nav-toggle span::before {
  transform: translateY(-7px) !important;
}

.nav-toggle span::after {
  transform: translateY(5px) !important;
}

body.nav-open .nav-toggle span,
.header.nav-open .nav-toggle span {
  background: transparent !important;
}

body.nav-open .nav-toggle span::before,
.header.nav-open .nav-toggle span::before {
  transform: translateY(2px) rotate(45deg) !important;
}

body.nav-open .nav-toggle span::after,
.header.nav-open .nav-toggle span::after {
  transform: translateY(0) rotate(-45deg) !important;
}

@media (max-width: 1100px) {
  .header {
    width: min(100% - 24px, 860px) !important;
    min-height: 72px !important;
    margin: 10px auto !important;
    padding: 10px 12px !important;
    border-radius: 22px !important;
  }

  .brand__mark {
    width: 48px !important;
    height: 48px !important;
  }

  .brand__name strong {
    font-size: 15px !important;
  }

  .brand__name span {
    display: none !important;
  }

  .header .btn-sm,
  .header .btn-primary {
    display: none !important;
  }

  .nav-toggle {
    display: inline-grid !important;
  }

  .header .nav {
    position: fixed !important;
    top: 92px !important;
    inset-inline: 12px !important;
    width: auto !important;
    height: auto !important;
    max-height: calc(100vh - 116px) !important;
    padding: 14px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 26px !important;
    background: rgba(5, 8, 22, 0.94) !important;
    box-shadow:
      0 30px 90px rgba(0, 0, 0, 0.52),
      0 0 42px rgba(0, 212, 255, 0.12) !important;
    backdrop-filter: blur(26px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(26px) saturate(160%) !important;
    overflow-y: auto !important;
    transform: translateY(-16px) scale(0.96) !important;
    transform-origin: top center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: 0.28s ease !important;
    z-index: 1001 !important;
  }

  body.nav-open .header .nav,
  .header.nav-open .nav,
  .header .nav.open,
  .header .nav.is-open {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .header .nav a {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    justify-content: center !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    color: rgba(238, 246, 255, 0.82) !important;
    font-size: 16px !important;
  }

  .header .nav a.active {
    background: linear-gradient(
      135deg,
      rgba(0, 212, 255, 0.18),
      rgba(139, 92, 246, 0.22)
    ) !important;
    color: #ffffff !important;
  }

  body.nav-open {
    overflow: hidden !important;
  }
}

@media (max-width: 560px) {
  .header {
    width: calc(100% - 18px) !important;
    min-height: 66px !important;
    padding: 9px 10px !important;
    border-radius: 20px !important;
  }

  .brand {
    gap: 9px !important;
  }

  .brand__mark {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
  }

  .brand__name strong {
    font-size: 13px !important;
  }

  .icon-btn,
  .nav-toggle {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
  }

  .header-actions {
    gap: 7px !important;
  }

  .header .nav {
    top: 82px !important;
    inset-inline: 9px !important;
    max-height: calc(100vh - 98px) !important;
    padding: 12px !important;
    border-radius: 22px !important;
  }

  .header .nav a {
    min-height: 50px !important;
    font-size: 15px !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 380px) {
  .brand__name {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero,
  .hero-section,
  .main-hero {
    min-height: auto !important;
    padding: 28px 0 42px !important;
  }

  .hero .container,
  .hero-grid,
  .hero-wrap {
    gap: 22px !important;
  }

  .hero-card {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    padding: 18px 16px !important;
    margin: 0 auto !important;
    border-radius: 26px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: hidden !important;
  }

  .hero-logo {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 auto 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-logo img {
    width: min(140px, 40vw) !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 110px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .hero-floating,
  .hero-floating.float-a,
  .hero-floating.float-b {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 68px !important;
    height: auto !important;
    padding: 14px 16px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .hero-floating strong {
    font-size: 17px !important;
    line-height: 1.2 !important;
  }

  .hero-floating span {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .hero-content,
  .hero-copy {
    text-align: center !important;
  }

  .hero-title,
  h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.4 !important;
    letter-spacing: -0.04em !important;
    margin-top: 8px !important;
    margin-bottom: 12px !important;
  }

  .hero-subtitle,
  .hero p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    max-width: 34ch !important;
    margin-inline: auto !important;
  }

  .hero-badge,
  .eyebrow,
  .hero-chip {
    width: fit-content !important;
    max-width: calc(100vw - 40px) !important;
    margin-inline: auto !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    border-radius: 999px !important;
  }
}

@media (max-width: 430px) {
  .hero-card {
    padding: 16px 14px !important;
    border-radius: 24px !important;
    gap: 12px !important;
  }

  .hero-logo img {
    width: min(205px, 68vw) !important;
    max-height: 92px !important;
  }

  .hero-floating,
  .hero-floating.float-a,
  .hero-floating.float-b {
    min-height: 62px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }

  .hero-floating strong {
    font-size: 16px !important;
  }

  .hero-floating span {
    font-size: 12px !important;
  }

  .hero-title,
  h1 {
    font-size: clamp(31px, 10.5vw, 31px) !important;
  }
}

@media (max-width: 360px) {
  .hero-logo img {
    width: 180px !important;
    max-height: 82px !important;
  }

  .hero-floating,
  .hero-floating.float-a,
  .hero-floating.float-b {
    min-height: 58px !important;
  }

  .hero-title,
  h1 {
    font-size: 30px !important;
  }
}

.ks-dev-scene,
.ks-dev-scene *,
.kz-showcase,
.kz-showcase * {
  box-sizing: border-box;
}

.ks-dev-scene {
  --dev-x: 0px;
  --dev-y: 0px;
  --dev-cyan: #22d3ee;
  --dev-purple: #8b5cf6;
  --dev-pink: #d946ef;
  --dev-green: #22c55e;
  --dev-bg: #020617;
  position: relative;
  width: min(100%, 760px);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 52px);
  direction: ltr;
  isolation: isolate;
}

.ks-dev-scene::before {
  content: "";
  position: absolute;
  inset: 7% 3%;
  border-radius: 46px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(34, 211, 238, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 80% 72%,
      rgba(217, 70, 239, 0.18),
      transparent 36%
    ),
    linear-gradient(135deg, rgba(2, 6, 23, 0.62), rgba(15, 23, 42, 0.28));
  border: 1px solid rgba(34, 211, 238, 0.12);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 0 42px rgba(34, 211, 238, 0.06),
    0 30px 90px rgba(0, 0, 0, 0.32);
  z-index: -4;
}

.ks-dev-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  z-index: -5;
}

.ks-dev-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ks-dev-orbit span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  translate: -50% -50%;
  padding: 8px 12px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(139, 92, 246, 0.1)),
    rgba(2, 6, 23, 0.58);
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 24px rgba(34, 211, 238, 0.12),
    inset 0 0 18px rgba(34, 211, 238, 0.05);
  backdrop-filter: blur(14px);
  animation: ksDevFloat 5.2s ease-in-out infinite;
  animation-delay: var(--d);
}

.ks-dev-orbit span:nth-child(2n) {
  color: rgba(216, 180, 254, 0.9);
  border-color: rgba(139, 92, 246, 0.24);
}

.ks-dev-hud {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(139, 92, 246, 0.06)),
    rgba(2, 6, 23, 0.66);
  color: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(18px);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.34),
    inset 0 0 22px rgba(34, 211, 238, 0.05);
}

.ks-dev-hud--terminal {
  left: 2%;
  top: 10%;
  width: 190px;
  padding: 12px;
  transform: translate3d(
      calc(var(--dev-x) * 0.28),
      calc(var(--dev-y) * 0.28),
      0
    )
    rotate(-3deg);
}

.ks-dev-hud__top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 11px;
}

.ks-dev-hud__top i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dev-cyan);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

.ks-dev-hud__top i:nth-child(2) {
  background: var(--dev-purple);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

.ks-dev-hud__top i:nth-child(3) {
  background: var(--dev-pink);
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.6);
}

.ks-dev-hud__top span {
  margin-left: auto;
  color: rgba(248, 250, 252, 0.46);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ks-dev-hud--terminal code {
  display: block;
  color: var(--dev-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.ks-dev-hud--terminal code::before {
  content: "$ ";
  color: var(--dev-green);
}

.ks-dev-hud--terminal small {
  display: block;
  margin-top: 8px;
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.7rem;
}

.ks-dev-hud--api {
  right: 2%;
  top: 17%;
  width: 172px;
  padding: 14px;
  transform: translate3d(
      calc(var(--dev-x) * -0.24),
      calc(var(--dev-y) * 0.24),
      0
    )
    rotate(3deg);
}

.ks-dev-hud--api strong {
  display: block;
  color: rgba(248, 250, 252, 0.88);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.ks-dev-hud--api span {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  font-size: 0.66rem;
  font-weight: 900;
}

.ks-dev-hud--api em {
  display: block;
  margin-top: 8px;
  color: rgba(248, 250, 252, 0.52);
  font-style: normal;
  font-size: 0.68rem;
}

.ks-dev-hud--stack {
  right: 4%;
  bottom: 16%;
  width: 150px;
  padding: 13px;
  transform: translate3d(
      calc(var(--dev-x) * -0.22),
      calc(var(--dev-y) * -0.22),
      0
    )
    rotate(-2deg);
}

.ks-dev-hud--stack b {
  display: block;
  margin-bottom: 9px;
  color: var(--dev-cyan);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.ks-dev-hud--stack span {
  display: block;
  margin-top: 6px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 250, 252, 0.74);
  font-size: 0.68rem;
  font-weight: 800;
}

.ks-dev-code-tabs {
  position: absolute;
  left: 4%;
  bottom: 15%;
  z-index: 4;
  display: grid;
  gap: 7px;
  transform: translate3d(calc(var(--dev-x) * 0.2), calc(var(--dev-y) * -0.2), 0)
    rotate(2deg);
  pointer-events: none;
}

.ks-dev-code-tabs span {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.58);
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.08);
}

.kz-showcase {
  --kz-width: clamp(310px, 31vw, 426px);
  --kz-ratio: 426 / 549;
  --kz-bg-image: none;
  --kz-cyan: #22d3ee;
  --kz-blue: #38bdf8;
  --kz-purple: #8b5cf6;
  --kz-pink: #d946ef;
  --kz-dark: #020617;
  position: relative;
  width: min(100%, calc(var(--kz-width) + 112px));
  margin-inline: auto;
  padding: 24px 48px 24px;
  direction: ltr;
  isolation: isolate;
  perspective: 1200px;
  z-index: 5;
  transform: translate3d(
    calc(var(--dev-x) * -0.12),
    calc(var(--dev-y) * -0.12),
    0
  );
  transition: transform 240ms ease;
}

.kz-aura {
  position: absolute;
  inset: 36px 24px 70px;
  border-radius: 38px;
  background-image:
    radial-gradient(
      circle at 24% 18%,
      rgba(34, 211, 238, 0.38),
      transparent 38%
    ),
    radial-gradient(
      circle at 78% 82%,
      rgba(217, 70, 239, 0.32),
      transparent 44%
    ),
    var(--kz-bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(30px) saturate(1.4);
  opacity: 0.68;
  z-index: -5;
  transform: scale(1.04);
  animation: kzAuraFloat 6s ease-in-out infinite alternate;
}

.kz-showcase::before {
  content: "";
  position: absolute;
  inset: 48px 42px 78px;
  border-radius: 34px;
  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.12),
      rgba(139, 92, 246, 0.11),
      rgba(217, 70, 239, 0.08)
    ),
    rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(34, 211, 238, 0.16);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 0 40px rgba(34, 211, 238, 0.07),
    0 30px 90px rgba(0, 0, 0, 0.36);
  z-index: -4;
}

.kz-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 44px;
  width: min(330px, 72vw);
  height: 44px;
  translate: -50% 0;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.22);
  filter: blur(24px);
  opacity: 0.58;
  z-index: -3;
}

.kz-top {
  width: min(var(--kz-width), 82vw);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kz-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 7px 10px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.1);
}

.kz-counter b {
  color: var(--kz-cyan);
  font-size: 0.84rem;
}

.kz-counter i {
  color: rgba(248, 250, 252, 0.4);
  font-style: normal;
}

.kz-brand {
  color: rgba(248, 250, 252, 0.78);
  text-shadow: 0 0 22px rgba(34, 211, 238, 0.22);
}

.kz-stage {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  width: min(var(--kz-width), 82vw);
  aspect-ratio: var(--kz-ratio);
  margin-inline: auto;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(34, 211, 238, 0.12),
      transparent 42%
    ),
    #020617;
  border: 1px solid rgba(34, 211, 238, 0.34);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 0 42px rgba(34, 211, 238, 0.23),
    0 0 80px rgba(139, 92, 246, 0.15);
  transition:
    aspect-ratio 360ms ease,
    transform 260ms ease;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  outline: 0;
}

.kz-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.15),
      transparent 25%,
      transparent 72%,
      rgba(34, 211, 238, 0.12)
    ),
    linear-gradient(180deg, transparent 68%, rgba(2, 6, 23, 0.12));
  pointer-events: none;
  z-index: 8;
}

.kz-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 18%,
    transparent 36%
  );
  translate: -130% 0;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
  animation: kzGlassShine 4.4s ease-in-out infinite;
}

.kz-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  filter: blur(10px) brightness(0.72) saturate(0.84);
  transition:
    opacity 660ms ease,
    visibility 660ms ease,
    transform 840ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 660ms ease;
  pointer-events: none;
  background:
    radial-gradient(
      circle at center,
      rgba(34, 211, 238, 0.08),
      transparent 58%
    ),
    #020617;
}

.kz-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transform: scale(1);
  filter: blur(0) brightness(1) saturate(1.06);
  pointer-events: auto;
}

.kz-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #020617;
  user-select: none;
  pointer-events: none;
}

.kz-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 12;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(139, 92, 246, 0.14)),
    rgba(2, 6, 23, 0.84);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 0;
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(34, 211, 238, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.kz-arrow:hover {
  transform: scale(1.09);
  border-color: rgba(34, 211, 238, 0.9);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.24), rgba(139, 92, 246, 0.2)),
    rgba(2, 6, 23, 0.92);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(34, 211, 238, 0.34);
}

.kz-arrow--prev {
  left: 5px;
}

.kz-arrow--next {
  right: 5px;
}

.kz-bottom {
  width: min(var(--kz-width), 82vw);
  margin: 16px auto 0;
  display: contents;
  gap: 11px;
}

.kz-dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.14);
  background: rgba(2, 6, 23, 0.52);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 0 22px rgba(34, 211, 238, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.kz-dots button {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.5;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.kz-dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.32);
  transition: opacity 220ms ease;
}

.kz-dots button.is-active {
  opacity: 1;
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.86);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.28),
    0 0 22px rgba(34, 211, 238, 0.38);
}

.kz-dots button.is-active::after {
  opacity: 0;
}

.kz-progress {
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.kz-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--kz-cyan),
    var(--kz-purple),
    var(--kz-pink)
  );
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.64);
}

@keyframes ksDevFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes kzGlassShine {
  0%,
  48% {
    translate: -130% 0;
    opacity: 0;
  }

  58% {
    opacity: 0.68;
  }

  78%,
  100% {
    translate: 130% 0;
    opacity: 0;
  }
}

@keyframes kzAuraFloat {
  from {
    scale: 0.98;
    opacity: 0.52;
  }

  to {
    scale: 1.06;
    opacity: 0.82;
  }
}

@media (max-width: 900px) {
  .ks-dev-scene {
    width: min(100%, 560px);
    padding: 28px 18px;
  }

  .ks-dev-hud--terminal,
  .ks-dev-hud--api,
  .ks-dev-hud--stack,
  .ks-dev-code-tabs {
    display: none;
  }

  .ks-dev-orbit span {
    font-size: 0.62rem;
    padding: 6px 9px;
  }

  .ks-dev-orbit span:nth-child(1) {
    --x: 18%;
    --y: 8%;
  }

  .ks-dev-orbit span:nth-child(2) {
    --x: 82%;
    --y: 8%;
  }

  .ks-dev-orbit span:nth-child(3) {
    --x: 15%;
    --y: 92%;
  }

  .ks-dev-orbit span:nth-child(4) {
    --x: 84%;
    --y: 92%;
  }

  .ks-dev-orbit span:nth-child(5),
  .ks-dev-orbit span:nth-child(6) {
    display: none;
  }
}

@media (max-width: 700px) {
  .kz-showcase {
    --kz-width: min(426px, 78vw);
    width: 100%;
    padding: 18px 40px 18px;
    align-items: center !important;
  }

  .kz-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.65rem;
  }

  .kz-arrow--prev {
    left: 0;
  }

  .kz-arrow--next {
    right: 0;
  }

  .kz-stage {
    border-radius: 22px;
  }

  .kz-brand {
    display: none;
  }

  .kz-top {
    justify-content: center;
  }

  .kz-dots {
    gap: 7px;
    padding: 7px;
    border-radius: 15px;
  }

  .kz-dots button {
    border-radius: 9px;
  }
}

@media (max-width: 520px) {
  .ks-dev-scene {
    padding: 22px 6px;
  }

  .ks-dev-orbit span {
    opacity: 0.78;
  }
}

@media (max-width: 390px) {
  .kz-showcase {
    --kz-width: 280px;
    padding-inline: 36px;
  }
}

body[data-page="home"] .hero {
  min-height: auto !important;
  height: auto !important;
  padding-top: 18px !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden !important;
}

body[data-page="home"] .hero > .container.hero-grid {
  min-height: auto !important;
  height: auto !important;
  padding-top: 16px !important;
  padding-bottom: 0 !important;
  align-items: center !important;
  gap: 42px !important;
}

@media (min-width: 992px) {
  body[data-page="home"] .hero > .container.hero-grid > .reveal:first-child {
    transform: translateY(-62px) !important;
  }

  body[data-page="home"] .ks-dev-scene {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(-58px) scale(0.94) !important;
    transform-origin: center center !important;
  }

  body[data-page="home"] .kz-showcase {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  body[data-page="home"] .stats {
    margin-top: 22px !important;
  }

  body[data-page="home"] .strip {
    margin-top: -58px !important;
  }
}

@media (min-width: 992px) {
  body[data-page="home"] .kz-showcase {
    width: clamp(400px, 26vw, 355px) !important;
    max-width: 400px !important;
    margin-inline: auto !important;
    transform: none !important;
  }

  body[data-page="home"] .kz-stage {
    width: 100% !important;
    aspect-ratio: var(--kz-ratio, 426 / 549) !important;
    height: auto !important;
    max-height: none !important;
  }

  body[data-page="home"] .kz-slide,
  body[data-page="home"] .kz-slide img {
    width: 100% !important;
    height: 100% !important;
  }

  body[data-page="home"] .kz-slide img {
    object-fit: contain !important;
  }

  body[data-page="home"] .ks-dev-scene {
    height: 500px !important;
    max-height: 500px !important;
  }
}

body[data-page="home"] .section-head .kicker {
  margin-bottom: 25px !important;
}

body[data-page="home"] .section-head h2 {
  margin-bottom: 12px !important;
}

body[data-page="home"] .card,
body[data-page="home"] .work-card,
body[data-page="home"] .pricing-card {
  min-height: auto !important;
}

body[data-page="home"] .banner {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

body[data-page="home"] .strip {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

body[data-page="home"] .section {
  position: relative !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding-top: clamp(74px, 7vw, 104px) !important;
  padding-bottom: clamp(74px, 7vw, 104px) !important;
  overflow: visible !important;
}

body[data-page="home"] .section.section--tight {
  padding-top: clamp(52px, 5vw, 72px) !important;
  padding-bottom: clamp(52px, 5vw, 72px) !important;
}

body[data-page="home"] .section-head {
  margin-bottom: 34px !important;
}

body[data-page="home"] .grid-3 {
  gap: 22px !important;
}

body[data-page="home"] .card,
body[data-page="home"] .work-card,
body[data-page="home"] .pricing-card,
body[data-page="home"] .banner,
body[data-page="home"] .faq {
  transform: none !important;
}

body[data-page="home"] .pricing-card {
  min-height: auto !important;
}

body[data-page="home"] .faq {
  margin-top: 22px !important;
}

body[data-page="home"] .footer {
  margin-top: 0 !important;
  padding-top: 58px !important;
}
body[data-page="home"] main > .section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

body[data-page="home"] main > .section.section--tight {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

body[data-page="home"] main > .section + .section {
  margin-top: 0 !important;
}

body[data-page="home"] .section-head {
  margin-bottom: 24px !important;
}

body[data-page="home"] .section-head .kicker,
body[data-page="home"] .banner .kicker {
  margin-bottom: 21px !important;
}

body[data-page="home"] .section-head h2,
body[data-page="home"] .banner h2 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  line-height: 1.22 !important;
}

body[data-page="home"] .section-head p:not(.kicker),
body[data-page="home"] .banner p:not(.kicker) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body[data-page="home"] .grid-3 {
  gap: 18px !important;
}

body[data-page="home"] .banner {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 28px !important;
}

body[data-page="home"] .faq {
  margin-top: 0 !important;
}
:root {
  --mobile-header: 72px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(var(--container, 1180px), calc(100% - 32px)) !important;
}

.header {
  position: sticky !important;
  top: 10px !important;
  z-index: 1000 !important;
  width: min(var(--container, 1180px), calc(100% - 32px)) !important;
  min-height: 76px !important;
  margin: 10px auto 0 !important;
  padding: 10px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  border: 1px solid var(--border) !important;
  border-radius: 24px !important;
  background: rgba(5, 7, 19, 0.74) !important;
  backdrop-filter: blur(18px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28) !important;
}

.header::before,
.header::after {
  display: none !important;
}

.brand {
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  position: relative !important;
  z-index: 1002 !important;
}

.brand::before,
.brand::after,
.brand *::before,
.brand *::after {
  pointer-events: none !important;
}

.brand__mark {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  padding: 5px !important;
  border-radius: 16px !important;
  object-fit: contain !important;
  animation: none !important;
  transform: none !important;
}

.brand__name {
  min-width: 0 !important;
  display: grid !important;
  gap: 2px !important;
  line-height: 1.1 !important;
}

.brand__name strong {
  max-width: 160px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: var(--text) !important;
  font-size: 0.96rem !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.brand__name span {
  max-width: 160px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: var(--muted) !important;
  font-size: 0.72rem !important;
  white-space: nowrap !important;
}

.header .nav {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  display: flex !important;
  flex: 1 1 auto !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  padding: 6px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  border: 1px solid var(--border) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  overflow: visible !important;
}

.header .nav::before,
.header .nav::after {
  display: none !important;
}

.header .nav a {
  width: auto !important;
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 9px 12px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center !important;
  box-shadow: none !important;
  transform: none !important;
}

.header .nav a::before,
.header .nav a::after {
  display: none !important;
}

.header .nav a.active,
.header .nav a:hover {
  color: var(--text) !important;
  background: linear-gradient(
    135deg,
    rgba(33, 212, 253, 0.16),
    rgba(139, 92, 246, 0.16)
  ) !important;
  transform: none !important;
}

.header-actions {
  min-width: max-content !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  position: relative !important;
  z-index: 1002 !important;
}

.icon-btn,
.nav-toggle {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  border: 1px solid var(--border) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--text) !important;
  box-shadow: none !important;
  transform: none !important;
}

.nav-toggle {
  display: none !important;
}

.nav-toggle::before,
.nav-toggle::after,
.icon-btn::before,
.icon-btn::after {
  display: none !important;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "" !important;
  width: 19px !important;
  height: 2px !important;
  display: block !important;
  border-radius: 999px !important;
  background: currentColor !important;
  transition:
    transform 0.22s ease,
    top 0.22s ease,
    opacity 0.22s ease !important;
}

.nav-toggle span {
  position: relative !important;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute !important;
  right: 0 !important;
}

.nav-toggle span::before {
  top: -7px !important;
}

.nav-toggle span::after {
  top: 7px !important;
}

body.nav-open .nav-toggle span {
  background: transparent !important;
}

body.nav-open .nav-toggle span::before {
  top: 0 !important;
  transform: rotate(45deg) !important;
}

body.nav-open .nav-toggle span::after {
  top: 0 !important;
  transform: rotate(-45deg) !important;
}

.hero {
  padding: clamp(32px, 5vw, 72px) 0 clamp(42px, 7vw, 96px) !important;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr) !important;
  align-items: center !important;
  gap: clamp(28px, 5vw, 68px) !important;
}

.hero-card {
  width: 100% !important;
  max-width: 560px !important;
  min-height: 0 !important;
  margin-inline: auto !important;
  border-radius: var(--radius, 28px) !important;
  transform: none !important;
}

.hero-logo {
  min-height: clamp(270px, 34vw, 340px) !important;
  padding: clamp(22px, 4vw, 34px) !important;
}

.hero-logo img {
  width: min(100%, 460px) !important;
  max-height: 220px !important;
  object-fit: contain !important;
  animation: none !important;
}

.hero-floating {
  max-width: min(270px, calc(100% - 36px)) !important;
}

h1,
.h1,
.hero-title,
.main-title {
  max-width: 100% !important;
  /*font-size: clamp(2.35rem, 5vw, 4.7rem) !important; */
  line-height: 1.4 !important;
  letter-spacing: -0.045em !important;
  overflow-wrap: anywhere !important;
}

h2,
.h2,
.section-title {
  max-width: 100% !important;
  font-size: clamp(1.85rem, 4vw, 3.25rem) !important;
  line-height: 1.18 !important;
  overflow-wrap: anywhere !important;
}

.lead,
.section-head p,
.card p,
.banner p,
.faq details p {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
}

.grid-2,
.grid-3,
.grid-4,
.contact-grid,
.footer-grid,
.form-grid {
  min-width: 0 !important;
}

.card,
.pricing-card,
.work-card,
.contact-item,
.faq details,
.banner,
.logo-panel,
.table-wrap,
.hero-card {
  max-width: 100% !important;
}

.card:hover,
.pricing-card:hover,
.work-card:hover,
.contact-item:hover,
.stat:hover,
.hero-card:hover {
  transform: translateY(-4px) !important;
}

.work-card {
  min-height: 280px !important;
}

.table-wrap {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

table {
  min-width: 680px !important;
}

.kz-showcase,
.ks-dev-showcase,
.ks-showcase {
  max-width: 100% !important;
}

@media (max-width: 1120px) {
  .header {
    width: calc(100% - 24px) !important;
    top: 8px !important;
    min-height: var(--mobile-header) !important;
    padding: 10px 12px !important;
    border-radius: 22px !important;
  }

  .header .btn-sm,
  .header .btn-primary {
    display: none !important;
  }

  .nav-toggle {
    display: inline-grid !important;
  }

  .header .nav {
    position: fixed !important;
    top: calc(var(--mobile-header) + 20px) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-height: calc(100dvh - 110px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: stretch !important;
    align-items: stretch !important;
    gap: 9px !important;
    padding: 12px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: rgba(5, 7, 19, 0.96) !important;
    backdrop-filter: blur(18px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) scale(0.98) !important;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease !important;
    overflow-y: auto !important;
    z-index: 1001 !important;
  }

  :root[data-theme="light"] .header .nav {
    background: rgba(255, 255, 255, 0.97) !important;
  }

  body.nav-open .header .nav,
  .header.nav-open .nav,
  .header .nav.open,
  .header .nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  .header .nav a {
    width: 100% !important;
    min-height: 50px !important;
    padding: 0 16px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    font-size: 0.98rem !important;
  }

  .header .nav a.active {
    background: linear-gradient(
      135deg,
      rgba(33, 212, 253, 0.2),
      rgba(139, 92, 246, 0.2)
    ) !important;
  }

  body.nav-open {
    overflow: hidden !important;
    touch-action: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-card {
    order: -1 !important;
    max-width: 620px !important;
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
    --radius: 22px;
  }

  body {
    background-attachment: scroll !important;
  }

  body::after,
  html::after {
    opacity: 0.35 !important;
    filter: blur(56px) !important;
    animation: none !important;
  }

  .site-bg::before,
  .site-bg::after {
    width: 220px !important;
    height: 220px !important;
    filter: blur(16px) !important;
    animation: none !important;
  }

  .container {
    width: calc(100% - 28px) !important;
  }

  .header {
    width: calc(100% - 18px) !important;
    min-height: 66px !important;
    top: 8px !important;
    padding: 9px 10px !important;
    border-radius: 20px !important;
  }

  .brand {
    gap: 9px !important;
  }

  .brand__mark {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 13px !important;
  }

  .brand__name strong {
    max-width: 118px !important;
    font-size: 0.82rem !important;
  }

  .brand__name span {
    display: none !important;
  }

  .icon-btn,
  .nav-toggle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 13px !important;
  }

  .header-actions {
    gap: 6px !important;
  }

  .header .nav {
    top: 82px !important;
    left: 9px !important;
    right: 9px !important;
    max-height: calc(100dvh - 98px) !important;
    padding: 11px !important;
    border-radius: 20px !important;
  }

  .header .nav a {
    min-height: 48px !important;
    font-size: 0.94rem !important;
    border-radius: 15px !important;
  }

  .hero {
    padding: 24px 0 44px !important;
  }

  .hero-grid {
    gap: 22px !important;
  }

  .hero-content,
  .hero-copy,
  .page-hero .container,
  .section-head {
    text-align: center !important;
  }

  .kicker,
  .hero-chip,
  .eyebrow {
    max-width: 100% !important;
    margin-inline: auto !important;
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }

  h1,
  .h1,
  .hero-title,
  .main-title {
    font-size: clamp(2rem, 10vw, 2.85rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 12px !important;
  }

  h1::after,
  .hero-title::after,
  .main-title::after {
    width: 140px !important;
    height: 5px !important;
    margin: 12px auto 0 !important;
  }

  h2,
  .h2,
  .section-title {
    width: 100% !important;
    font-size: clamp(1.65rem, 8vw, 2.25rem) !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  h2::after,
  .section-title::after {
    width: 72px !important;
    height: 3px !important;
    margin: 10px auto 0 !important;
  }

  .lead,
  .section-head p,
  .hero p,
  .hero-subtitle,
  .main-subtitle {
    max-width: 38ch !important;
    margin-inline: auto !important;
    font-size: 0.98rem !important;
    line-height: 1.85 !important;
  }

  .hero-card {
    width: 100% !important;
    max-width: 430px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 14px !important;
    border-radius: 22px !important;
  }

  .hero-card::after {
    display: none !important;
  }

  .hero-logo {
    min-height: 120px !important;
    height: auto !important;
    padding: 8px 8px 4px !important;
  }

  .hero-logo img {
    width: min(220px, 68vw) !important;
    max-height: 94px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28)) !important;
  }

  .hero-floating,
  .hero-floating.float-a,
  .hero-floating.float-b,
  .float-a,
  .float-b {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 11px 13px !important;
    display: grid !important;
    gap: 4px !important;
    align-items: center !important;
    border-radius: 15px !important;
    transform: none !important;
    animation: none !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18) !important;
  }

  .hero-floating:hover {
    transform: none !important;
  }

  .hero-floating strong {
    font-size: 0.98rem !important;
    line-height: 1.2 !important;
  }

  .hero-floating span {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }

  .actions,
  .hero-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .actions .btn,
  .hero-actions .btn,
  .btn {
    width: 100% !important;
    min-height: 46px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    white-space: normal !important;
  }

  .section {
    padding: 44px 0 !important;
  }

  .section--tight {
    padding: 30px 0 !important;
  }

  .page-hero {
    padding: 38px 0 24px !important;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats,
  .form-grid,
  .contact-grid,
  .footer-grid,
  .banner {
    grid-template-columns: 1fr !important;
  }

  .card.pad,
  .pricing-card,
  .banner {
    padding: 18px !important;
  }

  .card,
  .pricing-card,
  .work-card,
  .contact-item,
  .faq details,
  .logo-panel,
  .banner {
    border-radius: 20px !important;
  }

  .card:hover,
  .pricing-card:hover,
  .work-card:hover,
  .contact-item:hover,
  .stat:hover,
  .hero-card:hover {
    transform: none !important;
  }

  .card::after,
  .pricing-card::after,
  .work-card::after,
  .card::before,
  .pricing-card::before {
    animation: none !important;
  }

  .pricing-card:nth-child(2),
  .price-card:nth-child(2),
  .plan-card:nth-child(2) {
    transform: none !important;
  }

  .pricing-card:nth-child(2)::after,
  .price-card:nth-child(2)::after,
  .plan-card:nth-child(2)::after {
    top: 14px !important;
    inset-inline-end: -48px !important;
    height: 30px !important;
    font-size: 0.68rem !important;
  }

  .work-card {
    min-height: 220px !important;
    padding: 18px !important;
  }

  .stat {
    padding: 16px !important;
  }

  .contact-item {
    padding: 16px !important;
  }

  .faq summary {
    padding: 16px 18px !important;
    padding-inline-end: 50px !important;
  }

  .faq details p {
    padding: 0 18px 16px !important;
  }

  .form-field.full {
    grid-column: auto !important;
  }

  .input,
  select,
  textarea {
    min-height: 48px !important;
    padding: 12px 13px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    transform: none !important;
  }

  textarea {
    min-height: 120px !important;
  }

  table {
    min-width: 640px !important;
  }

  td,
  th {
    padding: 13px !important;
    font-size: 0.9rem !important;
  }

  .footer {
    padding: 34px 0 88px !important;
  }

  .footer-bottom {
    display: grid !important;
    gap: 8px !important;
    text-align: center !important;
  }

  .to-top,
  .whatsapp-float {
    width: 48px !important;
    height: 48px !important;
    bottom: 14px !important;
    border-radius: 15px !important;
  }

  .whatsapp-float {
    right: 14px !important;
  }

  .to-top {
    left: 14px !important;
  }

  .marquee-track {
    animation-duration: 42s !important;
  }

  .kz-showcase {
    width: 100% !important;
    max-width: 360px !important;
    padding: 12px 0 16px !important;
    transform: none !important;
  }

  .kz-aura,
  .ks-dev-hud,
  .ks-dev-code-tabs,
  .ks-dev-hud--api,
  .ks-dev-hud--stack {
    display: none !important;
  }

  .kz-showcase::before,
  .kz-showcase::after {
    display: none !important;
  }

  .kz-top {
    width: 100% !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 22px) !important;
  }

  .header {
    width: calc(100% - 14px) !important;
    min-height: 62px !important;
    padding: 8px !important;
    border-radius: 18px !important;
  }

  .brand__mark {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  .brand__name strong {
    max-width: 104px !important;
    font-size: 0.78rem !important;
  }

  .icon-btn,
  .nav-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  .header .nav {
    top: 76px !important;
    left: 7px !important;
    right: 7px !important;
  }

  h1,
  .h1,
  .hero-title,
  .main-title {
    font-size: clamp(1.85rem, 10.5vw, 2.35rem) !important;
  }

  h2,
  .h2,
  .section-title {
    font-size: clamp(1.45rem, 8.6vw, 1.95rem) !important;
  }

  .hero-card {
    max-width: 100% !important;
    padding: 12px !important;
  }

  .hero-logo {
    min-height: 104px !important;
  }

  .hero-logo img {
    width: min(190px, 64vw) !important;
    max-height: 82px !important;
  }

  .hero-floating,
  .hero-floating.float-a,
  .hero-floating.float-b {
    min-height: 54px !important;
    padding: 10px 12px !important;
  }

  .hero-floating strong {
    font-size: 0.92rem !important;
  }

  .hero-floating span {
    font-size: 0.74rem !important;
  }

  .card.pad,
  .pricing-card,
  .banner {
    padding: 16px !important;
  }
}

@media (max-width: 360px) {
  .brand__name {
    display: none !important;
  }

  .header-actions {
    margin-inline-start: auto !important;
  }

  .hero-logo img {
    width: 168px !important;
    max-height: 74px !important;
  }

  .hero-floating span {
    font-size: 0.7rem !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .pricing-card:hover,
  .work-card:hover,
  .contact-item:hover,
  .stat:hover,
  .hero-card:hover,
  .btn:hover,
  .nav a:hover,
  .header .nav a:hover {
    transform: none !important;
  }

  .btn::before,
  .btn::after,
  button::before,
  button::after,
  input[type="submit"]::before,
  input[type="submit"]::after {
    animation: none !important;
  }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .brand img,
  .brand__mark,
  .hero-logo img,
  .kicker,
  .badge,
  .btn-primary,
  .reveal,
  .marquee-track,
  body::after,
  html::after {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
@media (max-width: 768px) {
  .kz-showcase {
    order: 1 !important;
    width: 100% !important;
    max-width: 390px !important;
    margin: 0 auto 18px !important;
    padding: 10px !important;
    border-radius: 22px !important;
    transform: none !important;
  }

  .stats {
    order: 2 !important;
    width: 100% !important;
    max-width: 390px !important;
    margin: 0 auto 22px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .kz-stage {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: var(--kz-ratio, 426 / 453) !important;
    transform: none !important;
  }

  .kz-slide,
  .kz-slide img {
    width: 100% !important;
    height: 100% !important;
  }

  .kz-slide img {
    object-fit: cover !important;
    border-radius: 18px !important;
  }

  .kz-top {
    margin-bottom: 8px !important;
  }

  .kz-bottom {
    margin-top: 10px !important;
  }

  .kz-arrow {
    width: 38px !important;
    height: 38px !important;
    border-radius: 14px !important;
    transform: translateY(-50%) !important;
  }

  .kz-arrow--prev {
    left: 8px !important;
  }

  .kz-arrow--next {
    right: 8px !important;
  }

  .kz-dots {
    gap: 6px !important;
  }

  .kz-dots button {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
  }

  .stat {
    width: 100% !important;
    min-height: auto !important;
    padding: 14px 16px !important;
    border-radius: 18px !important;
  }

  .stat strong {
    font-size: 1.45rem !important;
  }

  .stat span {
    font-size: 0.86rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 420px) {
  .kz-showcase,
  .stats {
    max-width: 100% !important;
  }

  .kz-showcase {
    padding: 8px !important;
    border-radius: 20px !important;
  }

  .kz-slide img {
    border-radius: 16px !important;
  }

  .kz-dots button {
    width: 30px !important;
    height: 30px !important;
  }
}
.strip {
  overflow: hidden !important;
}

.marquee {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  overflow: hidden !important;
  padding: 14px 0 !important;
  direction: ltr !important;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent) !important;
}

.marquee-track {
  width: max-content !important;
  min-width: max-content !important;
  flex: 0 0 auto !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 12px !important;
  animation: karelMarquee 24s linear infinite !important;
  will-change: transform !important;
}

.marquee-track:nth-child(2) {
  animation: karelMarquee 24s linear infinite !important;
}

.marquee span {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  direction: rtl !important;
}

.marquee:hover .marquee-track {
  animation-play-state: paused !important;
}

@keyframes karelMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (max-width: 768px) {
  .strip {
    margin-block: 8px !important;
  }

  .marquee {
    width: 100vw !important;
    margin-inline: calc(50% - 50vw) !important;
    padding: 12px 0 !important;
    gap: 10px !important;
  }

  .marquee-track {
    gap: 10px !important;
    animation: karelMarqueeMobile 16s linear infinite !important;
  }

  .marquee-track:nth-child(2) {
    animation: karelMarqueeMobile 16s linear infinite !important;
  }

  .marquee span {
    padding: 9px 13px !important;
    font-size: 0.82rem !important;
    border-radius: 999px !important;
  }
}

@keyframes karelMarqueeMobile {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}