/* Home motion system (mock-inspired, intensity ~3) */

.page-home {
  --section-gap: 120px;
  --status-pending: #fecb00;
  background: #f5faff;
}

.page-home .container {
  max-width: 1280px;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.text-teal { color: var(--teal); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-title-visual {
  display: block;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
  pointer-events: none;
}

#curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
#curtain .curtain-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--navy);
}
#curtain .curtain-panel-l { left: 0; }
#curtain .curtain-panel-r { right: 0; }
#curtain .curtain-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
#curtain .curtain-logo img {
  width: min(220px, 52vw);
  height: auto;
  display: block;
}

.orb-float {
  animation: orb-float 14s ease-in-out infinite;
}
.orb-float.delay-2 { animation-delay: -4s; animation-duration: 18s; }
.orb-float.delay-3 { animation-delay: -9s; animation-duration: 11s; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(18px, -24px) scale(1.04); }
  66% { transform: translate(-14px, 14px) scale(0.97); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition: opacity 0.75s ease-out, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease-out;
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.pop-reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.94) rotate(var(--rot, 0deg));
  filter: blur(5px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease-out;
}
.pop-reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0);
}

.card-hover {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px 16px 0 0;
  z-index: 2;
}
.card-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(29, 158, 117, 0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(13, 43, 78, 0.1), 0 0 0 1px rgba(29, 158, 117, 0.18);
}
.card-hover:hover::before { opacity: 1; }
.card-hover:hover::after { left: 200%; }

.tilt-card { will-change: transform; transform: perspective(900px); }
.magnetic-btn { will-change: transform; display: inline-flex; }

.pulse-dot {
  box-shadow: 0 0 0 0 rgba(29, 158, 117, 0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 158, 117, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(29, 158, 117, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 158, 117, 0); }
}

.glitch-text { position: relative; }
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.glitch-text.glitch-on::before {
  opacity: 0.55;
  left: 2px;
  text-shadow: -1px 0 rgba(255, 60, 60, 0.5);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim 0.7s linear;
}
.glitch-text.glitch-on::after {
  opacity: 0.55;
  left: -2px;
  text-shadow: -1px 0 rgba(55, 138, 221, 0.55);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim-2 0.7s linear;
}
@keyframes glitch-anim {
  0% { clip: rect(32px, 9999px, 28px, 0); }
  50% { clip: rect(54px, 9999px, 93px, 0); }
  100% { clip: rect(21px, 9999px, 45px, 0); }
}
@keyframes glitch-anim-2 {
  0% { clip: rect(65px, 9999px, 100px, 0); }
  50% { clip: rect(12px, 9999px, 78px, 0); }
  100% { clip: rect(45px, 9999px, 89px, 0); }
}

#scramble-target span { display: inline-block; }

.hero-highlight {
  background-image: linear-gradient(90deg, var(--teal), var(--blue), var(--teal));
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 1.1s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 1.1s ease;
}
.hero-highlight.shine-in {
  background-position: 0% 0;
  text-shadow: 0 0 24px rgba(29, 158, 117, 0.2);
}

.cursor-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(29,158,117,0.14) 0%, rgba(55,138,221,0.07) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
.cursor-glow.visible { opacity: 1; }

.parallax-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.parallax-el {
  position: absolute;
  will-change: transform;
  color: var(--teal);
}
.parallax-el--tr {
  top: -4rem;
  right: -6rem;
  width: 420px;
  height: 420px;
  opacity: 0.11;
}
.parallax-el--bl {
  bottom: 0;
  left: -5rem;
  width: 320px;
  height: 320px;
  color: var(--blue);
  opacity: 0.1;
}
.parallax-el--mid {
  top: 38%;
  left: 58%;
  width: 160px;
  height: 160px;
  opacity: 0.12;
}

.page-home .nav-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  position: relative;
  padding: 9px 18px;
}
.page-home .nav-cta-icon { font-size: 18px; }
.page-home .nav-cta-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--white);
}

.home-hero {
  position: relative;
  min-height: min(100vh, 880px);
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  text-align: left;
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.home-hero-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.home-hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 24px;
  animation: none;
}
.home-hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-sub);
  max-width: 640px;
  margin: 0 0 36px;
  font-weight: 300;
  line-height: 1.7;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(29, 158, 117, 0.2);
}
.btn-wa:hover {
  background: var(--teal-light);
  box-shadow: 0 6px 18px rgba(29, 158, 117, 0.28);
}
.btn-wa--lg {
  font-size: 17px;
  padding: 18px 32px;
  font-weight: 700;
}
.btn-wa-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--white);
}
.btn-wa--lg .btn-wa-pulse {
  border-color: var(--navy);
  width: 14px;
  height: 14px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid rgba(22, 49, 86, 0.18);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(22, 49, 86, 0.04);
  border-color: rgba(22, 49, 86, 0.28);
}

.scroll-hint {
  display: none;
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: max-content;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(13, 43, 78, 0.4);
  z-index: 2;
  transition: color 0.2s, opacity 0.75s ease-out, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease-out;
}
.scroll-hint:hover { color: var(--teal); }
.scroll-hint span:first-child {
  font-size: 10px;
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.scroll-hint-icon {
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (min-width: 768px) {
  .scroll-hint { display: flex; }
}

.marquee-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.marquee-shine-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 96px, black calc(100% - 96px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 96px, black calc(100% - 96px), transparent 100%);
}
.marquee-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(29,158,117,0.28) 45%, rgba(55,138,221,0.28) 55%, transparent 70%);
  background-size: 250% 100%;
  mix-blend-mode: screen;
  animation: shine-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes shine-sweep {
  0% { background-position: 150% 0; }
  60%, 100% { background-position: -50% 0; }
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding-right: 64px;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: rgba(13, 43, 78, 0.28);
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.home-section {
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 1;
}
.home-section--muted { background: var(--off-white); }
.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-intro--left {
  text-align: left;
  margin-left: 0;
}
.section-intro h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-intro p {
  font-size: 18px;
  color: var(--text-sub);
  font-weight: 300;
  line-height: 1.65;
}
.section-cta-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.values-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card-home {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.value-icon .material-symbols-outlined { font-size: 24px; }
.value-card-home h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
}
.value-card-home p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.6;
}

.services-grid-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card-home {
  display: block;
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon .material-symbols-outlined { font-size: 28px; }
.service-icon--blue { background: rgba(213, 227, 255, 0.55); color: var(--navy); }
.service-icon--teal { background: rgba(131, 245, 198, 0.28); color: var(--teal); }
.service-icon--navy { background: rgba(210, 228, 255, 0.5); color: var(--navy-mid); }
.service-icon--muted { background: rgba(222, 227, 232, 0.8); color: var(--navy); }
.service-arrow {
  color: rgba(13, 43, 78, 0.25);
  transition: color 0.2s;
}
.service-card-home:hover .service-arrow { color: var(--teal); }
.service-card-home h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card-home p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.6;
}

.process-track {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.process-track-bg {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(22, 49, 86, 0.1);
  border-radius: 999px;
  z-index: 0;
}
#process-line {
  position: absolute;
  left: 23px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--blue));
  border-radius: 999px;
  transform: scaleY(0);
  transform-origin: top left;
  z-index: 1;
}
#process-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px #f5faff, 0 0 14px 2px rgba(29, 158, 117, 0.5);
  left: 18px;
  top: 0;
  z-index: 5;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.process-step {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex: 1;
}
.process-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--teal);
  box-shadow: 0 0 0 8px #f5faff;
}
.process-num--filled {
  background: var(--teal);
  color: var(--navy);
}
.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}
.process-step p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .process-track-bg {
    left: 0;
    right: 0;
    top: 24px;
    bottom: auto;
    width: 100%;
    height: 2px;
  }
  #process-line {
    left: 0;
    top: 24px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--teal), var(--blue));
    transform: scaleX(0);
    transform-origin: left top;
  }
  #process-dot {
    left: 0;
    top: 19px;
  }
  .process-steps {
    flex-direction: row;
    gap: 28px;
    justify-content: space-between;
  }
  .process-step {
    flex-direction: column;
    gap: 16px;
  }
}

.shopcore-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: var(--section-gap) 0;
  z-index: 1;
}
.shopcore-orbs { position: absolute; inset: 0; pointer-events: none; }
.shopcore-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.shopcore-orb-1 {
  width: 420px;
  height: 420px;
  top: -8rem;
  right: -5rem;
  background: radial-gradient(circle, rgba(29,158,117,0.16) 0%, transparent 70%);
}
.shopcore-orb-2 {
  width: 360px;
  height: 360px;
  bottom: 0;
  left: -6rem;
  background: radial-gradient(circle, rgba(55,138,221,0.14) 0%, transparent 70%);
}
.shopcore-orb-3 {
  width: 220px;
  height: 220px;
  top: 33%;
  left: 50%;
  background: radial-gradient(circle, rgba(29,158,117,0.08) 0%, transparent 70%);
}
.shopcore-parallax {
  top: 2.5rem;
  left: 8%;
  width: 280px;
  height: 280px;
  color: var(--white);
  opacity: 0.1;
}
.shopcore-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.shopcore-copy { max-width: 420px; }
.shopcore-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--status-pending);
  margin-bottom: 20px;
}
.shopcore-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-pending);
  animation: pulse 2s infinite;
}
.shopcore-copy h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}
.shopcore-copy > p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.65;
}
.shopcore-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.shopcore-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 500;
}
.shopcore-tag--pending {
  background: rgba(254, 203, 0, 0.15);
  border-color: rgba(254, 203, 0, 0.35);
  color: var(--status-pending);
}
.shopcore-tag .material-symbols-outlined { font-size: 16px; }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
.shopcore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.shopcore-link:hover { color: var(--teal-light); }
.shopcore-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  flex: 1;
}
.shopcore-module {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  border-radius: 16px;
  transition: background 0.25s;
}
.shopcore-module:hover { background: rgba(255,255,255,0.1); }
.shopcore-module .material-symbols-outlined {
  font-size: 28px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  transition: color 0.25s, transform 0.25s;
  display: block;
}
.shopcore-module:hover .material-symbols-outlined {
  color: var(--teal);
  transform: scale(1.08);
}
.shopcore-module h4 {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
}
.shopcore-band .card-hover:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.2), 0 0 0 1px rgba(29, 158, 117, 0.25);
}

@media (min-width: 900px) {
  .shopcore-inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
  .shopcore-copy { width: 34%; max-width: none; }
  .shopcore-modules {
    width: 66%;
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-cta-section { padding-top: calc(var(--section-gap) - 24px); }
.home-cta-box {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 20px 48px rgba(13, 43, 78, 0.18);
}
.aurora-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(29,158,117,0.55), rgba(55,138,221,0.55), rgba(29,158,117,0.55));
  background-size: 300% 300%;
  animation: aurora-shift 10s ease-in-out infinite;
}
@keyframes aurora-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.home-cta-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.home-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}
.home-cta-orb-1 {
  width: 360px;
  height: 360px;
  top: -6rem;
  right: -4rem;
  background: radial-gradient(circle, rgba(29,158,117,0.35) 0%, transparent 70%);
}
.home-cta-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -5rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(55,138,221,0.3) 0%, transparent 70%);
}
.home-cta-orb-3 {
  width: 180px;
  height: 180px;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(29,158,117,0.2) 0%, transparent 70%);
}
.home-cta-content { position: relative; z-index: 2; }
.home-cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
}
.home-cta-content > p {
  font-size: 18px;
  color: rgba(174, 200, 243, 0.9);
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.65;
}
.home-cta-email {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.home-cta-email a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.home-cta-email a:hover { color: var(--teal-light); }

.home-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
  text-align: left;
}
.home-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.home-footer .footer-brand {
  justify-content: flex-start;
  margin-bottom: 12px;
}
.home-footer-brand p {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 8px;
}
.home-footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 16px;
}
.home-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-footer a {
  font-size: 14px;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s;
}
.home-footer a:hover { color: var(--teal); }
.home-footer-contact {
  font-weight: 600 !important;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .values-grid-home { grid-template-columns: 1fr 1fr; }
  .home-footer-grid { grid-template-columns: 1fr 1fr; }
  .page-home { --section-gap: 88px; }
}
@media (max-width: 640px) {
  .values-grid-home,
  .services-grid-home,
  .shopcore-modules { grid-template-columns: 1fr; }
  .home-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-hero { min-height: auto; padding: 120px 0 80px; }
  .home-hero-actions { flex-direction: column; align-items: stretch; }
  .home-hero-actions .btn-wa,
  .home-hero-actions .btn-outline { width: 100%; }
  .home-cta-box { padding: 48px 24px; border-radius: 22px; }
  .service-card-home { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-el,
  .orb-float,
  .marquee-track,
  .marquee-shine,
  .aurora-bg,
  .scroll-hint-icon,
  .pulse-dot,
  .live-dot,
  .shopcore-badge-dot { animation: none !important; }
  .reveal-up,
  .pop-reveal { transition-duration: 0.01s !important; filter: none !important; }
  #curtain { display: none !important; }
  .cursor-glow { display: none !important; }
  #scroll-progress { transform: none !important; }
}
