:root {
  --ink: #080810;
  --ink2: #0f0f1c;
  --ink3: #161625;
  --border: rgba(155, 93, 229, 0.18);
  --purple: #9b5de5;
  --lavender: #c084fc;
  --soft: #e9d5ff;
  --white: #f5f0ff;
  --muted: rgba(245, 240, 255, 0.45);
  --glow: rgba(155, 93, 229, 0.22);
  --nav-h: 100px;
  --r: 20px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
}
#c {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.wrap {
  position: relative;
  z-index: 2;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
  padding: 0;
}
.nav.scrolled {
  background: rgba(8, 8, 16, 0.97);
  border-color: rgba(155, 93, 229, 0.28);
}
.nav-inner {
  width: 82%;
  max-width: 1100px;
  display: flex;
  align-items: center;
}
.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.nav-logo img {
  width: 90px;
}
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 255, 0.65);
  padding: 8px 16px;
  border-radius: 99px;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
  text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(155, 93, 229, 0.12);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lavender);
}
.nav-right {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.btn-nav {
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--lavender);
  border: 1.5px solid rgba(192, 132, 252, 0.35);
  background: rgba(155, 93, 229, 0.07);
  transition: all 0.25s;
  text-transform: uppercase;
}
.btn-nav:hover {
  background: rgba(155, 93, 229, 0.2);
  border-color: var(--lavender);
  box-shadow: 0 0 20px rgba(155, 93, 229, 0.3);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover {
  border-color: var(--lavender);
}
.nav-hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--lavender);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 190;
  background: rgba(10, 10, 20, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  padding: 18px 28px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(245, 240, 255, 0.75);
  border-bottom: 1px solid rgba(42, 42, 64, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    color 0.2s,
    background 0.2s,
    padding-left 0.2s;
}
.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.open a:nth-child(1) {
  transition-delay: 0.04s;
}
.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.08s;
}
.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.12s;
}
.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.16s;
}
.mobile-menu a:hover {
  color: var(--lavender);
  background: rgba(155, 93, 229, 0.06);
  padding-left: 38px;
}
.m-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), #4f46e5);
  color: #fff;
  box-shadow: 0 8px 36px rgba(155, 93, 229, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(155, 93, 229, 0.55);
}

.sr {
  opacity: 0;
  transform: perspective(800px) rotateX(16deg) translateY(50px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr.in {
  opacity: 1;
  transform: perspective(800px) rotateX(0) translateY(0);
}
.sr-l {
  opacity: 0;
  transform: perspective(800px) rotateY(-20deg) translateX(-48px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr-l.in {
  opacity: 1;
  transform: perspective(800px) rotateY(0) translateX(0);
}
.sr-r {
  opacity: 0;
  transform: perspective(800px) rotateY(20deg) translateX(48px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr-r.in {
  opacity: 1;
  transform: perspective(800px) rotateY(0) translateX(0);
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--lavender);
}
.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--lavender), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(155, 93, 229, 0.3),
    transparent
  );
}
.section {
  padding: 100px 0;
}

/* PAGE HERO */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-a {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(155, 93, 229, 0.14) 0%,
    transparent 65%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.orb-b {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.1) 0%,
    transparent 65%
  );
  bottom: 0;
  right: 8%;
}
.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 99px;
  border: 1px solid rgba(192, 132, 252, 0.25);
  background: rgba(155, 93, 229, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.7s 0.2s forwards;
}
.page-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lavender);
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up 0.85s 0.4s forwards;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--lavender), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
  opacity: 0;
  animation: fade-up 0.9s 0.6s forwards;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MAIN GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

/* Left info */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  transition:
    border-color 0.3s,
    transform 0.25s,
    box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.ci-card:hover {
  border-color: rgba(155, 93, 229, 0.45);
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(155, 93, 229, 0.15);
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(155, 93, 229, 0.12);
  border: 1px solid rgba(155, 93, 229, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 600;
}
.ci-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.ci-card-wa {
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.04);
}
.ci-card-wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.12);
}
.ci-icon-wa {
  background: rgba(37, 211, 102, 0.1) !important;
  border-color: rgba(37, 211, 102, 0.25) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-card-wa .ci-label {
  color: rgba(37, 211, 102, 0.7);
}
.ci-card-wa .ci-value {
  color: #25d366;
}
.avail-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(134, 239, 172, 0.06);
  border: 1px solid rgba(134, 239, 172, 0.2);
  margin-bottom: 16px;
}
.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 8px rgba(134, 239, 172, 0.6);
  animation: blink 1.8s infinite;
  flex-shrink: 0;
}
.avail-text {
  font-size: 0.82rem;
  color: rgba(134, 239, 172, 0.9);
  font-weight: 600;
}

.response-info {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 16px 20px;
  background: var(--ink2);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.response-info strong {
  color: var(--lavender);
}

/* Form */
.contact-form {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 36px;
}
.form-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 700;
}
.form-input,
.form-textarea,
.form-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(155, 93, 229, 0.12);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 240, 255, 0.22);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C084FC' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-select option {
  background: var(--ink2);
  color: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 24px;
}
.form-check input {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--border);
  background: transparent;
  accent-color: var(--purple);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-check span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.form-check span a {
  color: var(--lavender);
  text-decoration: underline;
}
.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--purple), #4f46e5);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 8px 36px rgba(155, 93, 229, 0.4);
  font-family: inherit;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(155, 93, 229, 0.55);
}
.form-submit:active {
  transform: translateY(0);
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Process mini */
.mini-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.mp-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.mp-card:hover {
  border-color: rgba(155, 93, 229, 0.4);
  transform: translateY(-5px);
}
.mp-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--lavender);
  margin: 0 auto 14px;
}
.mp-title {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.mp-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .nav-inner {
    width: 92%;
  }
  .nav-center,
  .nav-right {
    display: none;
  }
  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .mini-process {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sr,
  .sr-l,
  .sr-r {
    transition: opacity 0.4s;
    transform: none !important;
  }
}

/*═══════════════════════════════════════════
  SITE FOOTER (shared)
═══════════════════════════════════════════*/
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.sf-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(155, 93, 229, 0.1);
  margin-bottom: 32px;
}
.sf-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1.5px dashed rgba(192, 132, 252, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.56rem;
  color: rgba(192, 132, 252, 0.4);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 18px;
}
.sf-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--lavender);
  margin-bottom: 12px;
}
.sf-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 260px;
}
.sf-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 20px;
  font-weight: 700;
}
.sf-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sf-link {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 5px 0;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: block;
}
.sf-link:hover {
  color: var(--lavender);
  padding-left: 6px;
}
.sf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sf-copy {
  font-size: 0.72rem;
  color: rgba(245, 240, 255, 0.25);
  letter-spacing: 0.04em;
}
.sf-legal {
  color: rgba(245, 240, 255, 0.4);
}
.sf-legal:hover {
  color: var(--lavender);
}
.sf-socials {
  display: flex;
  gap: 10px;
}
.sf-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.25s;
  text-decoration: none;
}
.sf-social:hover {
  border-color: rgba(192, 132, 252, 0.5);
  color: var(--lavender);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .sf-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sf-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
