﻿:root {
  --bg: #ffffff;
  --bg-alt: #f5f3ff;
  --surface: rgba(255, 255, 255, 0.88);
  --text: #111827;
  --muted: #5b6477;
  --primary: #a78bfa;
  --blue: #3b82f6;
  --orange: #ff7a18;
  --line: rgba(69, 80, 110, 0.14);
  --shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #fbfaff 55%, #fff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff, #f4f0ff);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader p {
  margin: 0;
  color: #4f5d77;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.preloader-mark {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, var(--primary), var(--blue), var(--orange), var(--primary));
  animation: spin 1.1s linear infinite;
  position: relative;
}

.preloader-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background: #fff;
}

h1,
h2,
h3 {
  font-family: Sora, sans-serif;
  line-height: 1.15;
  margin: 0;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(var(--maxw), calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.34;
  background: linear-gradient(130deg, var(--primary), var(--blue));
  animation: floatBlob 18s ease-in-out infinite;
}

.blob-one {
  width: 380px;
  height: 380px;
  top: -80px;
  left: -120px;
}

.blob-two {
  width: 360px;
  height: 360px;
  top: 18%;
  right: -120px;
  animation-delay: -4s;
}

.blob-three {
  width: 330px;
  height: 330px;
  bottom: -120px;
  left: 32%;
  animation-delay: -8s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(167, 139, 250, 0.18);
}

.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand img {
  width: auto;
  height: 34px;
  max-width: 120px;
  object-fit: contain;
}

.brand span {
  font-size: clamp(0.9rem, 1.5vw, 1.07rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-weight: 600;
  color: #4b5563;
  padding: 9px 12px;
  border-radius: 999px;
  transition: color 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #111827;
  background: rgba(167, 139, 250, 0.18);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #303548;
  display: block;
  margin: 4px auto;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--primary), var(--blue));
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(59, 130, 246, 0.45), 0 0 30px rgba(167, 139, 250, 0.45);
}

.btn-outline {
  color: #293041;
  background: #fff;
  border-color: rgba(167, 139, 250, 0.42);
}

.btn-outline:hover {
  box-shadow: 0 14px 30px rgba(167, 139, 250, 0.28);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.52);
  animation: ripple 620ms linear;
  pointer-events: none;
}

.hero {
  padding-top: 70px;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.08), rgba(59, 130, 246, 0.05) 50%, transparent 100%);
}

.hero-particles-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#hero-particles {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.contact-strip {
  margin: 0 0 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: #313b52;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(59, 130, 246, 0.24);
}

.tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #5a54b5;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 4.6vw, 4rem);
  animation: heroIn 0.9s cubic-bezier(0.2, 0.8, 0, 1) both;
  animation-delay: 0.1s;
}

.hero h1 span {
  background: linear-gradient(110deg, var(--primary), var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% 220%;
  animation: gradientShift 8s ease infinite;
}

.hero-sub {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cards {
  display: grid;
  gap: 14px;
}

.floating-card {
  padding: 22px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.floating-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(59, 130, 246, 0.24);
}

.floating-card.accent {
  background: linear-gradient(140deg, rgba(167, 139, 250, 0.14), rgba(59, 130, 246, 0.1), rgba(255, 122, 24, 0.08));
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  max-width: 24ch;
}

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

.service-card {
  --d: 0s;
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.2), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(34, 76, 146, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.38);
  box-shadow: 0 20px 42px rgba(59, 130, 246, 0.26), 0 0 20px rgba(167, 139, 250, 0.22);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .icon-wrap {
  transform: translateY(-4px) rotate(-8deg);
  box-shadow: 0 12px 24px rgba(255, 122, 24, 0.3);
}

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

.pricing-card {
  border: 1px solid rgba(69, 80, 110, 0.16);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(33, 59, 104, 0.11);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 38px rgba(59, 130, 246, 0.24);
}

.pricing-card h3 {
  font-size: 1.4rem;
}

.price {
  margin: 12px 0;
  font-size: 2rem;
  font-weight: 800;
}

.price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #687388;
}

.pricing-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--muted);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 9px;
  background: linear-gradient(140deg, var(--primary), var(--blue));
}

.pricing-card.featured {
  position: relative;
  border-color: rgba(167, 139, 250, 0.8);
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.26), 0 20px 38px rgba(59, 130, 246, 0.24);
}

.badge {
  position: absolute;
  top: -14px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--orange), #ff9f4a);
  animation: pulseBadge 2.1s ease-in-out infinite;
}

.pricing-addon {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(69, 80, 110, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(59, 130, 246, 0.15);
}

.pricing-addon-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.pricing-addon-head h3 {
  margin-top: 8px;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  color: #192033;
}

.billing-toggle {
  display: inline-flex;
  border: 1px solid rgba(167, 139, 250, 0.36);
  border-radius: 999px;
  background: #fff;
  padding: 4px;
  gap: 4px;
}

.billing-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 700;
  color: #49536a;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.billing-btn span {
  font-size: 0.7rem;
  color: #e35e08;
  margin-left: 4px;
}

.billing-btn.is-active {
  background: linear-gradient(110deg, var(--primary), var(--blue));
  color: #fff;
}

.billing-btn.is-active span {
  color: rgba(255, 255, 255, 0.9);
}

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

.pricing-category-card {
  border: 1px solid rgba(69, 80, 110, 0.16);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(59, 130, 246, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(59, 130, 246, 0.2);
}

.pricing-category-card h4 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.featured-category {
  border-color: rgba(167, 139, 250, 0.75);
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.18), 0 16px 30px rgba(59, 130, 246, 0.2);
}

.premium-category {
  border-color: rgba(255, 122, 24, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.15), 0 16px 30px rgba(59, 130, 246, 0.18);
}

.tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(69, 80, 110, 0.2);
}

.tier-row:last-of-type {
  border-bottom: 0;
}

.highlight-row,
.premium-row {
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
  margin: 10px 0;
  background: rgba(167, 139, 250, 0.08);
}

.premium-row {
  border-color: rgba(255, 122, 24, 0.38);
  background: rgba(255, 122, 24, 0.08);
}

.mini-badge {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--orange), #ff9f4a);
  color: #fff;
  font-size: 0.64rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mini-badge.premium {
  background: linear-gradient(120deg, #ff7a18, #f97316);
}

.price-switch {
  display: grid;
  justify-items: end;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.original-price {
  min-height: 1em;
  font-size: 0.78rem;
  color: #8a93a8;
  text-decoration: line-through;
  opacity: 0;
}

.current-price {
  font-size: 1.08rem;
  color: #121a2d;
}

.price-switch.is-yearly .original-price {
  opacity: 1;
}

.pricing-addon.is-switching .price-switch {
  opacity: 0.65;
  transform: translateY(-2px);
}

.tier-features {
  list-style: none;
  margin: 6px 0 12px;
  padding: 0;
}

.tier-intro {
  margin: 0 0 10px;
  color: #5f697d;
  font-size: 0.92rem;
}

.tier-cycle {
  font-size: 0.74rem;
  font-weight: 700;
  color: #6c7590;
  margin-left: 4px;
}

.tier-features li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  color: #5f697d;
  font-size: 0.92rem;
}

.tier-features li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 0;
  top: 9px;
  background: linear-gradient(140deg, var(--primary), var(--blue));
}

.tier-features.compact li {
  font-size: 0.88rem;
}

.full-cta {
  width: 100%;
  margin-top: 10px;
}

.hiring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.hiring-content h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.6rem, 3.4vw, 2.65rem);
}

.hiring-side {
  display: grid;
  gap: 16px;
}

.illustration-card,
.qr-card {
  background: #fff;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 14px 28px rgba(59, 130, 246, 0.15);
}

.illustration-card {
  display: grid;
  place-items: center;
}

.illustration-card img {
  width: min(300px, 100%);
  animation: levitate 5.5s ease-in-out infinite;
}

.qr-card {
  border-color: rgba(167, 139, 250, 0.65);
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.2), 0 14px 28px rgba(59, 130, 246, 0.16);
}

.qr-card h3 {
  margin-bottom: 12px;
}

.qr-card img {
  width: min(220px, 100%);
  display: block;
  border-radius: 14px;
  background: #fff;
}

.whatsapp-pulse {
  animation: pulseButton 2s ease-in-out infinite;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
}

.contact-info h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
}

.contact-item {
  margin: 8px 0;
  font-weight: 600;
  color: #273045;
}

.contact-item a {
  color: #273045;
}

.contact-form {
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.15);
  display: grid;
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  color: #4d5669;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(69, 80, 110, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #1d2333;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.16);
}

.site-footer {
  border-top: 1px solid rgba(167, 139, 250, 0.18);
  padding: 22px 0;
  background: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  color: #4f5970;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #111827;
  transform: translateY(-2px);
}

.wave-divider {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
}

.wave-divider path {
  fill: var(--bg-alt);
}

.wave-divider.flip {
  transform: scaleY(-1);
}

.curve-divider {
  position: absolute;
  inset: auto 0 -40px;
  height: 80px;
  background: radial-gradient(70% 95% at 50% 0, rgba(167, 139, 250, 0.17), transparent 75%);
  pointer-events: none;
}

.cursor-follower {
  position: fixed;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  background: rgba(167, 139, 250, 0.12);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 80;
  opacity: 0;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

.cursor-follower.active {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-zoom {
  transform: scale(0.92);
}

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

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

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

@media (max-width: 1024px) {
  .hero-grid,
  .hiring-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .pricing-category-grid {
    grid-template-columns: 1fr;
  }

  .pricing-addon-head {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-grid;
    place-content: center;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .navbar > .btn {
    display: none;
  }

  .brand span {
    font-size: 0.88rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 78px 0;
  }

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

  .hero-actions,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-strip {
    font-size: 0.84rem;
  }
}

@keyframes floatBlob {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(26px, -36px, 0) scale(1.08); }
  100% { transform: translate3d(-16px, 22px, 0) scale(0.95); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes pulseButton {
  0%, 100% { box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3); }
  50% { box-shadow: 0 16px 34px rgba(59, 130, 246, 0.5), 0 0 24px rgba(167, 139, 250, 0.42); }
}

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

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


