:root {
  --bg: #0c0718;
  --bg-soft: #161026;
  --card: rgba(255, 255, 255, 0.05);
  --text: #f7f2ff;
  --muted: #c7bddb;

  --accent: #8b5cf6;
  --accent-2: #a78bfa;

  --accent-soft: rgba(139, 92, 246, 0.14);
  --service-accent-soft: rgba(168, 85, 247, 0.14);
  --pricing-accent-soft: rgba(139, 92, 246, 0.16);
  --contact-accent-soft: rgba(192, 132, 252, 0.16);

  --border: rgba(139, 92, 246, 0.26);
  --border-strong: rgba(167, 139, 250, 0.42);
  --service-border: rgba(192, 132, 252, 0.3);
  --pricing-border: rgba(167, 139, 250, 0.38);
  --contact-border: rgba(196, 181, 253, 0.36);

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

section[id] {
  scroll-margin-top: 95px;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #090513 0%, #120a20 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.order-zoom {
  animation: pagePulseZoom 0.9s ease;
}

@keyframes pagePulseZoom {
  0% { transform: scale(1); }
  25% { transform: scale(0.992); }
  55% { transform: scale(1.006); }
  100% { transform: scale(1); }
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
  z-index: 2;
}

.dark-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  background: var(--accent-soft);
  color: var(--accent-2);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
  backdrop-filter: blur(5px);
}

/* changed to light black premium */
.order-aqua-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e9e9ef;
}

.section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 44px;
}

.section-head h2,
.cta-box h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p,
.hero-lead,
.cta-box p,
.footer-text,
.pricing-title p,
.submit-note {
  color: var(--muted);
}

.animated-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.animated-bg span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.11;
  animation: floatBg 28s infinite ease-in-out;
  will-change: transform;
}

.animated-bg span:nth-child(1) {
  width: 320px;
  height: 320px;
  background: #8b5cf6;
  top: 6%;
  left: 3%;
}

.animated-bg span:nth-child(2) {
  width: 420px;
  height: 420px;
  background: #c4b5fd;
  top: 48%;
  left: 72%;
  animation-delay: 3s;
}

.animated-bg span:nth-child(3) {
  width: 260px;
  height: 260px;
  background: #a855f7;
  top: 72%;
  left: 14%;
  animation-delay: 6s;
}

.animated-bg span:nth-child(4) {
  width: 360px;
  height: 360px;
  background: #6d28d9;
  top: 18%;
  left: 82%;
  animation-delay: 9s;
}

.animated-bg::before,
.animated-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.06;
  animation: floatBgAlt 30s infinite ease-in-out;
}

.animated-bg::before {
  width: 420px;
  height: 420px;
  background: #a78bfa;
  left: 40%;
  top: 10%;
}

.animated-bg::after {
  width: 380px;
  height: 380px;
  background: #ede9fe;
  left: 22%;
  top: 62%;
  animation-delay: 5s;
}

@keyframes floatBg {
  0%, 100% { transform: translate3d(0,0,0) scale(1) rotate(0deg); }
  20% { transform: translate3d(40px,-35px,0) scale(1.1) rotate(10deg); }
  40% { transform: translate3d(-30px,25px,0) scale(0.95) rotate(-8deg); }
  60% { transform: translate3d(35px,30px,0) scale(1.05) rotate(6deg); }
  80% { transform: translate3d(-20px,-25px,0) scale(0.98) rotate(-6deg); }
}

@keyframes floatBgAlt {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  25% { transform: translate3d(-45px,20px,0) scale(1.08); }
  50% { transform: translate3d(30px,-35px,0) scale(0.96); }
  75% { transform: translate3d(22px,32px,0) scale(1.04); }
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(139,92,246,0.16), transparent 35%),
    #0c0718;
  transition: 0.7s ease;
}

.loader-wrap {
  text-align: center;
}

.loader-3d {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 28px;
  transform-style: preserve-3d;
  animation: spin3d 5s linear infinite;
}

.loader-core {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  backdrop-filter: blur(5px);
}

.loader-core img,
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(167,139,250,0.35);
  box-shadow: 0 0 25px rgba(139,92,246,0.15);
}

.ring1 { transform: rotateX(72deg) rotateY(12deg); }
.ring2 { transform: rotateY(72deg) rotateZ(24deg); }
.ring3 { transform: rotateX(72deg) rotateZ(24deg); }

@keyframes spin3d {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

.loader-wrap h1 {
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.loader-wrap p {
  color: var(--muted);
}

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  background: rgba(12, 7, 24, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease;
}

.success-popup.show {
  opacity: 1;
  visibility: visible;
}

.success-box {
  position: relative;
  overflow: hidden;
  width: min(440px, calc(100% - 30px));
  padding: 40px 26px 34px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(167,139,250,0.2), transparent 38%),
    linear-gradient(180deg, rgba(139,92,246,0.14), rgba(255,255,255,0.04)),
    rgba(22, 16, 38, 0.97);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.38),
    0 0 34px rgba(139,92,246,0.10);
  transform: perspective(1200px) translateY(30px) rotateX(14deg) scale(0.88);
  transition: 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.success-popup.show .success-box {
  transform: perspective(1200px) translateY(0) rotateX(0deg) scale(1);
}

.success-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #a78bfa);
  opacity: 0;
}

.success-popup.show .success-particles span:nth-child(1) { top: 18%; left: 18%; animation: particleBurst 1.2s ease forwards 0.1s; }
.success-popup.show .success-particles span:nth-child(2) { top: 20%; right: 18%; animation: particleBurst 1.2s ease forwards 0.18s; }
.success-popup.show .success-particles span:nth-child(3) { top: 45%; left: 10%; animation: particleBurst 1.2s ease forwards 0.26s; }
.success-popup.show .success-particles span:nth-child(4) { top: 48%; right: 10%; animation: particleBurst 1.2s ease forwards 0.34s; }
.success-popup.show .success-particles span:nth-child(5) { bottom: 18%; left: 22%; animation: particleBurst 1.2s ease forwards 0.42s; }
.success-popup.show .success-particles span:nth-child(6) { bottom: 18%; right: 22%; animation: particleBurst 1.2s ease forwards 0.5s; }

.success-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.35;
  animation: successFloat 4s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 120px;
  height: 120px;
  background: #8b5cf6;
  top: -30px;
  left: -20px;
}

.orb-2 {
  width: 110px;
  height: 110px;
  background: #a78bfa;
  bottom: -24px;
  right: -18px;
  animation-delay: 1.2s;
}

.orb-3 {
  width: 80px;
  height: 80px;
  background: #ffffff;
  top: 40%;
  right: 10%;
  opacity: 0.12;
  animation-delay: 0.7s;
}

.success-icon-wrap {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.success-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(167,139,250,0.24);
}

.ring-a { inset: 0; animation: ringSpinA 4s linear infinite; }
.ring-b { inset: 8px; border-color: rgba(255,255,255,0.16); animation: ringSpinB 3.2s linear infinite; }
.ring-c { inset: 18px; border-color: rgba(196,181,253,0.28); animation: ringPulse 1.8s ease-in-out infinite; }

.success-icon {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  box-shadow:
    0 0 35px rgba(139,92,246,0.35),
    inset 0 2px 10px rgba(255,255,255,0.18);
  animation: checkPop 0.8s ease;
}

.success-box h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.success-box p {
  color: var(--muted);
}

@keyframes successFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.06); }
}

@keyframes ringSpinA {
  from { transform: rotateX(72deg) rotateY(0deg); }
  to { transform: rotateX(72deg) rotateY(360deg); }
}

@keyframes ringSpinB {
  from { transform: rotateY(72deg) rotateX(0deg); }
  to { transform: rotateY(72deg) rotateX(360deg); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes checkPop {
  0% { transform: scale(0.4) rotate(-18deg); opacity: 0; }
  60% { transform: scale(1.14) rotate(6deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes particleBurst {
  0% { transform: scale(0.2) translateY(0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.3) translateY(-26px); opacity: 0; }
}

.cta-click-burst {
  position: fixed;
  width: 170px;
  height: 170px;
  pointer-events: none;
  z-index: 100001;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
}

.cta-click-burst.active {
  animation: burstAppear 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cta-burst-shadow {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 72%);
  filter: blur(18px);
}

.cta-burst-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(167,139,250,0.34);
  opacity: 0;
}

.ring-outer {
  inset: 6px;
  animation: burstRingOuter 1s ease forwards;
}

.ring-middle {
  inset: 20px;
  animation: burstRingMid 1s ease forwards;
}

.ring-inner {
  inset: 34px;
  animation: burstRingInner 1s ease forwards;
}

.cta-burst-core {
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.97), rgba(167,139,250,0.58), transparent 74%);
  box-shadow:
    0 0 35px rgba(167,139,250,0.34),
    0 0 70px rgba(139,92,246,0.20);
  animation: burstCorePulse 1s ease forwards;
}

.cta-click-burst span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 52px;
  border-radius: 999px;
  transform-origin: center bottom;
  background: linear-gradient(to top, rgba(167,139,250,1), rgba(255,255,255,0));
  box-shadow: 0 0 14px rgba(167,139,250,0.34);
}

.cta-click-burst span:nth-child(6) { transform: translate(-50%, -100%) rotate(0deg); }
.cta-click-burst span:nth-child(7) { transform: translate(-50%, -100%) rotate(60deg); }
.cta-click-burst span:nth-child(8) { transform: translate(-50%, -100%) rotate(120deg); }
.cta-click-burst span:nth-child(9) { transform: translate(-50%, -100%) rotate(180deg); }
.cta-click-burst span:nth-child(10) { transform: translate(-50%, -100%) rotate(240deg); }
.cta-click-burst span:nth-child(11) { transform: translate(-50%, -100%) rotate(300deg); }

@keyframes burstAppear {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.22) rotateX(25deg);
  }
  22% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.55) rotateX(0deg);
  }
}

@keyframes burstCorePulse {
  0% {
    transform: scale(0.25);
    opacity: 0;
  }
  30% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

@keyframes burstRingOuter {
  0% { transform: scale(0.4); opacity: 0; }
  30% { opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes burstRingMid {
  0% { transform: scale(0.4); opacity: 0; }
  35% { opacity: 0.7; }
  100% { transform: scale(1.18); opacity: 0; }
}

@keyframes burstRingInner {
  0% { transform: scale(0.4); opacity: 0; }
  40% { opacity: 0.6; }
  100% { transform: scale(1.12); opacity: 0; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
  background: rgba(12, 7, 24, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.logo h2 {
  font-size: 1.35rem;
  margin-bottom: 2px;
}

.logo p {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .order-link {
  color: var(--text);
  font-weight: 700;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  transition: var(--transition);
}

.icon-btn:hover,
.menu-btn:hover {
  border-color: var(--border-strong);
  background: rgba(139,92,246,0.08);
  color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(139,92,246,0.12);
}

.menu-btn {
  display: none;
  cursor: pointer;
}

.menu-btn i {
  transition: transform 0.3s ease;
}

.menu-btn.active i {
  transform: rotate(90deg);
}

.hero {
  padding: 92px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-lead {
  max-width: 680px;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-taglines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-taglines span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  transition: var(--transition);
}

.hero-taglines span:hover {
  border-color: var(--border-strong);
  color: var(--text);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  padding: 14px 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  min-width: 160px;
}

.btn-primary {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  color: white;
  font-weight: 800;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(139,92,246,0.26);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 38px rgba(139,92,246,0.32);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-strong);
}

.hero-contact-strong {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-contact-strong a {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.hero-contact-strong a:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-strong);
  box-shadow: 0 0 25px rgba(139,92,246,0.08);
}

.hero-contact-strong i {
  color: var(--accent-2);
  margin-bottom: 8px;
  display: block;
}

.hero-contact-strong span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-contact-strong strong {
  display: block;
  margin-top: 3px;
}

.hero-card,
.process-card,
.big-form-card,
.extra-card,
.big-input,
.portfolio-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  will-change: transform;
}

.hero-card {
  overflow: hidden;
}

.hero-image {
  height: 340px;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,7,24,0.7), rgba(12,7,24,0.08));
}

.hero-card-content {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.stat-box {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.stat-box:hover {
  transform: scale(1.02);
  border-color: var(--border-strong);
  box-shadow: 0 0 25px rgba(139,92,246,0.08);
}

.stat-box span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.trust-items {
  min-height: 76px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.trust-items span {
  color: var(--muted);
  font-size: 14px;
  transition: var(--transition);
}

.trust-items span:hover {
  color: var(--text);
}

.cards-grid,
.process-grid,
.pricing-grid,
.pricing-extra,
.portfolio-grid {
  display: grid;
  gap: 22px;
}

.cards-grid {
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-card {
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.portfolio-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border-strong);
  box-shadow: 0 0 30px rgba(139,92,246,0.08), var(--shadow);
}

.portfolio-image {
  height: 240px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-content {
  padding: 22px;
}

.portfolio-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid var(--border);
}

.portfolio-content h3 {
  margin-bottom: 10px;
}

.portfolio-content p {
  color: var(--muted);
}

.service-card {
  padding: 28px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  border: 1px solid var(--service-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(168,85,247,0.09), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(196, 181, 253, 0.52);
  box-shadow: 0 0 30px rgba(168,85,247,0.10), var(--shadow);
}

.service-card i {
  font-size: 24px;
  color: #c4b5fd;
  margin-bottom: 16px;
}

.service-card h3,
.process-card h3,
.pricing-title h3,
.pricing-card h4,
.extra-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.process-card p,
.pricing-card li,
.extra-card p {
  color: var(--muted);
}

.service-card span {
  display: inline-block;
  margin-top: 18px;
  color: #ddd6fe;
  font-weight: 700;
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
}

.process-card {
  padding: 24px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.process-card:hover,
.big-form-card:hover,
.big-input:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 0 30px rgba(139,92,246,0.08), var(--shadow);
}

.extra-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.step {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-weight: 700;
  border: 1px solid var(--border);
}

.pricing-category {
  margin-bottom: 44px;
}

.pricing-title {
  margin-bottom: 18px;
}

.pricing-title h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  padding: 28px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
  backdrop-filter: blur(7px);
  border: 1px solid var(--pricing-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(139,92,246,0.11), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  will-change: transform;
  transform-style: preserve-3d;
}

.pricing-card .price,
.pricing-card h4,
.pricing-card ul {
  position: relative;
  z-index: 2;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(139,92,246,0),
    rgba(167,139,250,0.50),
    rgba(237,233,254,0.08),
    rgba(139,92,246,0)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.pricing-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(167,139,250,0.28), transparent 72%);
  top: -80px;
  right: -80px;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(196, 181, 253, 0.60);
  box-shadow:
    0 0 40px rgba(167,139,250,0.18),
    0 0 84px rgba(139,92,246,0.07),
    var(--shadow);
}

.pricing-card:hover::before,
.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card:hover::after {
  transform: scale(1.12);
}

.pricing-card h4 {
  font-size: 1.5rem;
}

.featured {
  border-color: rgba(221, 214, 254, 0.68);
  background:
    linear-gradient(180deg, rgba(139,92,246,0.18), rgba(255,255,255,0.03));
  box-shadow:
    0 0 34px rgba(167,139,250,0.18),
    0 12px 40px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

.featured::before,
.featured::after {
  opacity: 1;
}

.featured:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 0 48px rgba(167,139,250,0.22),
    0 0 96px rgba(139,92,246,0.07),
    0 20px 55px rgba(0,0,0,0.4);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139,92,246,0.22), rgba(255,255,255,0.06));
  color: #ede9fe;
  border: 1px solid rgba(196, 181, 253, 0.44);
  box-shadow: 0 0 20px rgba(139,92,246,0.10);
}

.price {
  font-size: 2rem;
  color: #ddd6fe;
  font-weight: 800;
  margin: 12px 0 16px;
  text-shadow: 0 0 14px rgba(167,139,250,0.18);
}

.pricing-card ul {
  list-style: none;
}

.pricing-card li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.pricing-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4b5fd;
  position: absolute;
  left: 0;
  top: 10px;
  box-shadow: 0 0 14px rgba(167,139,250,0.28);
}

.pricing-extra {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.extra-card {
  padding: 24px;
  backdrop-filter: blur(6px);
}

.pricing-info-card {
  border: 1px solid var(--contact-border);
  background:
    linear-gradient(180deg, rgba(192,132,252,0.14), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.02);
  box-shadow:
    0 0 30px rgba(192,132,252,0.08),
    var(--shadow);
}

.pricing-info-card:hover {
  border-color: rgba(221,214,254,0.52);
  box-shadow:
    0 0 36px rgba(192,132,252,0.12),
    var(--shadow);
}

/* full changed order section */
.order-section .section-head {
  margin-bottom: 28px;
}

.order-form-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(18, 18, 22, 0.82);
  box-shadow:
    0 0 24px rgba(0, 0, 0, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(10px);
}

.big-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.form-order-box {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(24, 24, 28, 0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  transition: 0.3s ease;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-order-box:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0,0,0,0.16);
  transform: translateY(-3px);
}

.form-order-box label {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: #f7f2ff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.form-order-box input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.95);
  color: #f7f2ff;
  outline: none;
  font-size: 0.96rem;
  transition: 0.28s ease;
}

.form-order-box input::placeholder {
  color: #9a9aa5;
}

.form-order-box input:focus {
  border-color: rgba(167, 139, 250, 0.36);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
  background: rgba(14, 14, 18, 1);
}

.form-submit-wrap {
  margin-top: 24px;
  padding-top: 10px;
  text-align: center;
}

.submit-btn {
  min-width: 250px;
}

.submit-note {
  margin-top: 12px;
  color: #b8c6d8;
  font-size: 14px;
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  text-align: center;
  padding: 56px 24px;
  background:
    linear-gradient(180deg, rgba(192,132,252,0.14), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.03);
  backdrop-filter: blur(7px);
  border: 1px solid var(--contact-border);
  box-shadow:
    0 0 30px rgba(192,132,252,0.10),
    var(--shadow);
}

.cta-box .section-tag {
  background: rgba(192,132,252,0.12);
  border-color: rgba(221,214,254,0.44);
  color: #e9d5ff;
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto 22px;
}

.center-only-btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.cta-contact-row {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-row a {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,132,252,0.30);
  color: var(--muted);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.cta-contact-row a:hover {
  color: var(--text);
  border-color: rgba(221,214,254,0.52);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(192,132,252,0.10);
}

.cta-contact-row i {
  color: #ddd6fe;
  margin-right: 6px;
}

.footer {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.footer-grid-single {
  padding-bottom: 30px;
}

.footer-text {
  margin-top: 12px;
  max-width: 760px;
}

.footer-contact-strong {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.footer-contact-strong a {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.footer-contact-strong a:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--border-strong);
  box-shadow: 0 0 24px rgba(139,92,246,0.08);
}

.footer-contact-strong i {
  color: var(--accent-2);
}

.footer-contact-strong span {
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.floating-socials {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-whatsapp,
.floating-instagram {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ca851);
}

.floating-instagram {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.floating-whatsapp:hover,
.floating-instagram:hover {
  transform: translateY(-4px) scale(1.05);
}

.pop-up {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.35s ease;
  will-change: opacity, transform;
}

.pop-up.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@keyframes mobileMenuFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .cards-grid,
  .process-grid,
  .pricing-grid,
  .pricing-extra,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact-strong,
  .big-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .big-form-grid {
    grid-template-columns: 1fr;
  }

  .form-order-box {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .header {
    background: rgba(12, 7, 24, 0.94);
    backdrop-filter: blur(8px);
  }

  .nav {
    min-height: 74px;
    gap: 12px;
  }

  .logo {
    gap: 10px;
    max-width: 70%;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .logo h2 {
    font-size: 1.05rem;
    line-height: 1.1;
    margin-bottom: 2px;
  }

  .logo p {
    font-size: 10px;
    line-height: 1.3;
  }

  .nav-contact {
    gap: 8px;
  }

  .nav-contact .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .menu-btn {
    display: grid;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .nav-links {
    position: fixed;
    top: 90px;
    left: 16px;
    right: 16px;
    border-radius: 18px;
    background: rgba(18, 10, 32, 0.98);
    border: 1px solid var(--border-strong);
    flex-direction: column;
    display: none;
    padding: 20px;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }

  .nav-links.active {
    display: flex;
    animation: mobileMenuFade 0.28s ease;
  }

  .nav-links a {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    color: var(--text);
    border: 1px solid transparent;
  }

  .nav-links a:hover {
    background: rgba(139,92,246,0.12);
    border-color: var(--border);
    color: var(--accent-2);
  }

  .hero {
    padding: 42px 0 36px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-taglines {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-contact-strong {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-card {
    order: -1;
  }

  .hero-image {
    height: 240px;
  }

  .trust-items {
    justify-content: center;
    gap: 12px;
    padding: 14px 0;
  }

  .cards-grid,
  .process-grid,
  .pricing-grid,
  .pricing-extra,
  .portfolio-grid,
  .big-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 20px));
  }

  .section {
    padding: 64px 0;
  }

  .header {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  }

  .nav {
    min-height: 70px;
  }

  .logo {
    max-width: 72%;
  }

  .logo h2 {
    font-size: 0.98rem;
  }

  .logo p {
    font-size: 9px;
  }

  .nav-contact .icon-btn:nth-child(1) {
    display: none;
  }

  .hero {
    padding: 30px 0 28px;
  }

  .hero-text .section-tag {
    margin-bottom: 14px;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 0.96rem;
    margin-bottom: 20px;
  }

  .hero-taglines span {
    font-size: 12px;
    padding: 7px 10px;
  }

  .hero-buttons,
  .cta-contact-row,
  .footer-contact-strong {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-width: unset;
  }

  .hero-contact-strong a,
  .footer-contact-strong a,
  .cta-contact-row a {
    width: 100%;
  }

  .hero-contact-strong a {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .hero-contact-strong i {
    margin-bottom: 6px;
  }

  .hero-contact-strong span {
    font-size: 12px;
  }

  .hero-contact-strong strong {
    font-size: 14px;
  }

  .hero-image {
    height: 210px;
  }

  .hero-card-content,
  .service-card,
  .process-card,
  .pricing-card,
  .extra-card,
  .big-input,
  .portfolio-content {
    padding: 18px;
  }

  .order-form-card {
    padding: 18px;
    border-radius: 22px;
  }

  .big-form-grid {
    gap: 14px;
  }

  .form-order-box {
    padding: 14px;
    border-radius: 18px;
  }

  .form-order-box label {
    font-size: 0.94rem;
    margin-bottom: 8px;
  }

  .form-order-box input {
    height: 50px;
    font-size: 0.93rem;
    border-radius: 14px;
  }

  .form-submit-wrap {
    margin-top: 20px;
  }

  .submit-btn {
    width: 100%;
    min-width: unset;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2,
  .cta-box h2 {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .pricing-title h3 {
    font-size: 1.45rem;
  }

  .price {
    font-size: 1.75rem;
  }

  .floating-socials {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-whatsapp,
  .floating-instagram {
    width: 52px;
    height: 52px;
    font-size: 23px;
  }

  .cta-box {
    padding: 36px 18px;
  }

  .footer-contact-strong {
    gap: 12px;
  }

  .success-box {
    padding: 34px 20px 30px;
    border-radius: 24px;
  }

  .success-box h3 {
    font-size: 1.75rem;
  }

  .success-icon-wrap {
    width: 98px;
    height: 98px;
  }

  .success-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
}
