/* =========================================================
   GayaQu Creative — Landing Page Stylesheet
   Author: GayaQu Creative Studio
   ========================================================= */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --c-primary: #141416;
  --c-primary-2: #1e1f24;
  --c-charcoal: #2b2c31;
  --c-secondary: #ffffff;
  --c-cream: #faf7f2;
  --c-gray: #f4f5f7;
  --c-gray-2: #e6e7eb;
  --c-text: #1e1f24;
  --c-text-2: #64676e;
  --c-text-3: #9a9da4;

  --c-accent-pink: #ff5fa2;
  --c-accent-pink-2: #ff8ec0;
  --c-accent-purple: #9333ea;
  --c-accent-purple-2: #c084fc;
  --c-accent-gold: #d4a857;
  --c-accent-gold-2: #e8c98a;

  --grad-accent: linear-gradient(135deg, #ff5fa2 0%, #c084fc 55%, #d4a857 100%);
  --grad-soft: linear-gradient(135deg, #ffe4ef 0%, #ede0ff 55%, #f7edd7 100%);
  --grad-card: linear-gradient(180deg, #ffffff 0%, #fbf7fc 100%);
  --grad-dark: linear-gradient(135deg, #141416 0%, #2b1c3a 50%, #141416 100%);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  --shadow-sm: 0 2px 8px rgba(20,20,22,.06);
  --shadow-md: 0 10px 30px rgba(20,20,22,.08);
  --shadow-lg: 0 20px 50px rgba(20,20,22,.12);
  --shadow-accent: 0 14px 40px rgba(147,51,234,.18);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --container: 1200px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .45s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--c-accent-purple); color: #fff; }

/* ---------- UTILITIES ---------- */
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: var(--space-9) 0; position: relative; }
.mt-32 { margin-top: 32px; }
.text-accent { color: var(--c-accent-purple); }
.text-accent-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-italic-playfair { font-family: var(--font-display); font-style: italic; font-weight: 700; }

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: var(--grad-soft);
  color: var(--c-accent-purple);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  margin-bottom: var(--space-4);
}
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--c-text-2);
  font-size: 1.05rem;
  max-width: 600px;
  margin-inline: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,95,162,.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(147,51,234,.35); }
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 2px solid var(--c-gray-2);
}
.btn-outline:hover { border-color: var(--c-accent-purple); color: var(--c-accent-purple); transform: translateY(-3px); }
.btn-primary-outline {
  background: #fff;
  color: var(--c-accent-purple);
  border: 2px solid rgba(147,51,234,.2);
}
.btn-primary-outline:hover {
  background: var(--c-accent-purple);
  color: #fff;
  border-color: var(--c-accent-purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  border-color: var(--c-gray-2);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--c-primary);
}
.logo-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-sub {
  font-size: .68rem;
  letter-spacing: .3em;
  font-weight: 700;
  color: var(--c-text-3);
  margin-top: 2px;
  padding-left: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: .95rem;
  color: var(--c-text-2);
  padding: 6px 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
  transition: width var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--c-text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.btn-nav-cta {
  background: var(--grad-accent);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--r-full);
  font-weight: 600 !important;
  box-shadow: 0 8px 20px rgba(255,95,162,.25);
}
.btn-nav-cta::after { display: none; }
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(147,51,234,.3); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: calc(76px + var(--space-8)) 0 var(--space-10);
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbf7fc 100%);
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}
.shape-1 { width: 420px; height: 420px; background: #ffc3dd; top: -100px; right: -80px; }
.shape-2 { width: 360px; height: 360px; background: #d9c3ff; bottom: -80px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: #fff0d1; top: 40%; right: 30%; opacity: .35; }
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--c-gray-2);
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-text-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-5);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 0 4px rgba(192,132,252,.18);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--c-text-2);
  max-width: 540px;
  margin-bottom: var(--space-6);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--c-primary);
  line-height: 1;
}
.stat-label { font-size: .85rem; color: var(--c-text-3); margin-top: 6px; }
.stat-divider {
  width: 1px;
  height: 42px;
  background: var(--c-gray-2);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
}
.hero-gallery {
  position: absolute;
  inset: 0;
}
.gallery-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  background: #fff;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-card:hover { transform: scale(1.03) rotate(0deg) !important; box-shadow: 0 30px 60px rgba(20,20,22,.18); z-index: 5; }
.gallery-card:hover img { transform: scale(1.08); }
.card-1 {
  width: 46%; aspect-ratio: 4/5;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 3;
  animation: float1 6s ease-in-out infinite;
}
.card-2 {
  width: 42%; aspect-ratio: 1/1;
  top: 14%; right: 2%;
  transform: rotate(4deg);
  z-index: 2;
  animation: float2 7s ease-in-out infinite;
}
.card-3 {
  width: 52%; aspect-ratio: 3/4;
  bottom: 0; left: 14%;
  transform: rotate(2deg);
  z-index: 4;
  animation: float3 7.5s ease-in-out infinite;
}
.card-4 {
  width: 34%; aspect-ratio: 1/1;
  top: 30%; right: 0;
  transform: rotate(-4deg);
  z-index: 1;
  animation: float1 8s ease-in-out infinite;
}
.card-5 {
  width: 38%; aspect-ratio: 3/4;
  bottom: 8%; right: 8%;
  transform: rotate(3deg);
  z-index: 2;
  animation: float2 6.5s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:rotate(-3deg) translateY(0)} 50%{transform:rotate(-3deg) translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:rotate(4deg) translateY(0)} 50%{transform:rotate(4deg) translateY(-14px)} }
@keyframes float3 { 0%,100%{transform:rotate(2deg) translateY(0)} 50%{transform:rotate(2deg) translateY(-10px)} }

.hero-floating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #fff;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: .85rem;
  z-index: 6;
  animation: floatbadge 4s ease-in-out infinite;
}
.hero-floating i {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  color: #fff;
}
.float-1 { top: 18%; left: -10px; }
.float-1 i { background: linear-gradient(135deg, var(--c-accent-pink), var(--c-accent-purple)); }
.float-2 { bottom: 18%; right: -6px; }
.float-2 i { background: linear-gradient(135deg, var(--c-accent-gold), var(--c-accent-pink)); }
@keyframes floatbadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.12) 100%);
  z-index: 1;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.badge-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--grad-accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.badge-title { font-weight: 700; font-size: 1rem; }
.badge-text { font-size: .82rem; color: var(--c-text-2); }
.about-headline {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-4);
  letter-spacing: -.01em;
}
.about-text {
  color: var(--c-text-2);
  margin-bottom: var(--space-6);
  font-size: 1rem;
}
.about-highlights { display: flex; flex-direction: column; gap: var(--space-4); }
.hl-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: 14px;
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hl-item:hover {
  background: var(--c-gray);
  transform: translateX(6px);
}
.hl-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--c-accent-purple);
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.hl-title { font-weight: 600; font-size: .98rem; }
.hl-desc { font-size: .88rem; color: var(--c-text-2); margin-top: 2px; }

/* ---------- SERVICES ---------- */
.services { background: var(--c-cream); }
.bg-blur {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .35;
  pointer-events: none;
}
.bg-blur-1 { background: #ffb8d6; top: -100px; left: -100px; }
.bg-blur-2 { background: #c9a8ff; top: 10%; right: -120px; }
.bg-blur-3 { background: #f2d9a0; bottom: -80px; left: 30%; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-gray-2);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  padding: 1px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(20,20,22,.12);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: var(--space-5);
}
.icon-pink { background: linear-gradient(135deg, #ff6aa8, #ff3e8a); box-shadow: 0 12px 24px rgba(255,95,162,.35); }
.icon-purple { background: linear-gradient(135deg, #a855f7, #7e22ce); box-shadow: 0 12px 24px rgba(147,51,234,.35); }
.icon-gold { background: linear-gradient(135deg, #e6bf77, #b58a3c); box-shadow: 0 12px 24px rgba(212,168,87,.35); }
.service-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: var(--space-2);
}
.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -.01em;
}
.service-desc {
  color: var(--c-text-2);
  font-size: .95rem;
  margin-bottom: var(--space-5);
}
.service-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--c-text);
  padding: 6px 0;
  border-bottom: 1px dashed var(--c-gray-2);
}
.service-list li:last-child { border-bottom: 0; }
.service-list li i {
  color: var(--c-accent-purple);
  font-size: .78rem;
  width: 18px;
}

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.why-card {
  position: relative;
  background: var(--grad-card);
  padding: 36px 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-gray-2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .75;
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--grad-soft);
  color: var(--c-accent-purple);
  display: grid; place-items: center;
  font-size: 1.35rem;
  margin-bottom: var(--space-5);
}
.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.why-desc {
  font-size: .92rem;
  color: var(--c-text-2);
}

/* ---------- PORTFOLIO ---------- */
.portfolio { background: var(--c-cream); overflow: hidden; }
.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--c-gray-2);
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-text-2);
  transition: all var(--dur) var(--ease);
}
.filter-btn:hover { color: var(--c-accent-purple); border-color: var(--c-accent-purple-2); }
.filter-btn.active {
  background: var(--grad-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255,95,162,.3);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.pf-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/4;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), opacity .4s var(--ease);
  cursor: pointer;
}
.pf-item.hidden { display: none; }
.pf-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pf-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.pf-item:hover img { transform: scale(1.08); }
.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,22,0) 35%, rgba(20,20,22,.85) 100%);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-2);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-cat {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--grad-accent);
  color: #fff;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
}
.pf-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding-right: 48px;
}
.pf-view {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  width: 40px; height: 40px;
  background: #fff;
  color: var(--c-accent-purple);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .95rem;
  transition: transform var(--dur) var(--ease);
}
.pf-view:hover { transform: scale(1.12); }

/* ---------- PROCESS ---------- */
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}
.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.step-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,22,0) 45%, rgba(20,20,22,.2) 100%);
}
.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.process-step:hover .step-visual img {
  transform: scale(1.06);
}
.step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.92);
  color: var(--c-accent-purple);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(20,20,22,.12);
}
.step-card {
  background: #fff;
  border: 1px solid var(--c-gray-2);
  padding: 24px 20px;
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  min-height: 220px;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.process-step:hover .step-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.process-step:hover .step-card::before { opacity: 1; }
.step-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--grad-soft);
  color: var(--c-accent-purple);
  display: grid; place-items: center;
  margin-bottom: var(--space-3);
  font-size: 1.1rem;
}
.step-meta {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-accent-pink);
  margin-bottom: 8px;
}
.step-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.step-card p {
  font-size: .9rem;
  color: var(--c-text-2);
}
.step-arrow {
  position: absolute;
  top: 26%;
  right: -18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-accent-purple);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-gray-2);
  z-index: 3;
}
.process-step:last-child .step-arrow { display: none; }

/* ---------- TESTIMONIAL ---------- */
.testimonial { position: relative; overflow: hidden; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.testi-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-gray-2);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-quote {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--grad-accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1rem;
  margin-bottom: var(--space-4);
  opacity: .9;
}
.testi-text {
  font-size: .98rem;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.testi-foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--c-gray-2);
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  font-weight: 700;
  display: grid; place-items: center;
}
.testi-name { font-weight: 700; font-size: .95rem; }
.testi-role { font-size: .8rem; color: var(--c-text-3); }
.testi-rating { color: var(--c-accent-gold); font-size: .85rem; }

/* ---------- CTA ---------- */
.cta-wrap {
  position: relative;
  background: var(--grad-dark);
  border-radius: var(--r-xl);
  padding: clamp(32px, 6vw, 64px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-7);
  align-items: center;
  color: #fff;
}
.cta-shape-1, .cta-shape-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .4;
  pointer-events: none;
}
.cta-shape-1 { width: 300px; height: 300px; background: var(--c-accent-pink); top: -80px; left: -60px; }
.cta-shape-2 { width: 280px; height: 280px; background: var(--c-accent-purple); bottom: -80px; right: 20%; }
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--c-accent-pink-2);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: var(--space-4);
}
.cta-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  letter-spacing: -.02em;
}
.cta-text {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: var(--space-6);
  max-width: 520px;
}
.cta-visual {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 420px;
  justify-self: end;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.1);
}
.cta-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-primary);
  color: rgba(255,255,255,.78);
  padding-top: var(--space-9);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,95,162,.6) 50%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.footer-logo .logo-text { color: #fff; font-size: 1.8rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,.45); }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.footer-subcat {
  font-size: .9rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-5);
}
.footer-sosmed { display: flex; gap: var(--space-3); }
.footer-sosmed a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  transition: all var(--dur) var(--ease);
}
.footer-sosmed a:hover {
  background: var(--grad-accent);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}
.footer-h {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: 12px;
}
.footer-h::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact li {
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i {
  width: 18px;
  color: var(--c-accent-pink-2);
  font-size: .9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-5) 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom i { color: var(--c-accent-pink); margin: 0 3px; }

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  z-index: 99;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 18px 40px rgba(37,211,102,.5); }
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-content { text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 460px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3) { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-step:last-child { grid-column: 1 / -1; max-width: 360px; margin-inline: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .cta-wrap { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-visual { justify-self: center; max-width: 360px; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-col { grid-column: 1 / -1; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 440px; margin-inline: auto; aspect-ratio: 1/1; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: var(--space-8) 0; }
  .section-head { margin-bottom: var(--space-6); }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(80%, 340px);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    gap: var(--space-4);
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
    transition: right var(--dur) var(--ease);
    z-index: 100;
  }
  .nav-menu.active { right: 0; }
  .nav-link { font-size: 1.05rem; }
  .btn-nav-cta { margin-top: var(--space-4); }
  .nav-toggle { display: flex; }

  .hero { padding-top: calc(76px + var(--space-6)); }
  .hero-badge { font-size: .78rem; }
  .hero-stats {
    gap: var(--space-4);
    justify-content: space-around;
    width: 100%;
  }
  .stat-divider { height: 30px; }
  .hero-visual { aspect-ratio: 1 / 1.15; }
  .card-1 { width: 48%; }
  .card-2 { width: 42%; }
  .card-3 { width: 54%; }
  .card-4 { width: 32%; }
  .card-5 { width: 40%; }
  .float-1 { left: 0; top: 14%; font-size: .78rem; padding: 10px 14px; }
  .float-2 { right: 0; bottom: 14%; font-size: .78rem; padding: 10px 14px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(3) { grid-column: auto; }

  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .pf-title { font-size: .95rem; }
  .process-flow { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .process-step:last-child { grid-column: auto; max-width: none; }
  .step-card { min-height: auto; }
  .step-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  .btn { padding: 12px 22px; font-size: .9rem; }
  .btn-lg { padding: 15px 28px; }

  .wa-float { width: 54px; height: 54px; right: 18px; bottom: 18px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .filter-btn { padding: 8px 16px; font-size: .82rem; }
}
