/* =============================================================
   APPLUTO TEMPLATE — Color Palette
   Change these values to re-theme the entire template.
   ============================================================= */
:root {
  /* Primary color (HSL components for opacity variants) */
  --appluto-primary-h: 152;
  --appluto-primary-s: 60%;
  --appluto-primary-l: 42%;
  --appluto-primary: hsl(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l));
  --appluto-primary-fg: hsl(0, 0%, 100%);

  /* Accent / secondary tint (light version of primary) */
  --appluto-accent-h: 152;
  --appluto-accent-s: 50%;
  --appluto-accent-l: 90%;
  --appluto-accent: hsl(var(--appluto-accent-h), var(--appluto-accent-s), var(--appluto-accent-l));
  --appluto-accent-fg: hsl(152, 60%, 30%);

  /* Background & foreground */
  --appluto-bg: hsl(140, 20%, 98%);
  --appluto-fg: hsl(220, 20%, 15%);
  --appluto-fg-h: 220;
  --appluto-fg-s: 20%;
  --appluto-fg-l: 15%;

  /* Card / surface */
  --appluto-card: hsl(0, 0%, 100%);

  /* Muted */
  --appluto-muted: hsl(150, 15%, 94%);
  --appluto-muted-fg: hsl(220, 10%, 50%);

  /* Border */
  --appluto-border-h: 150;
  --appluto-border-s: 15%;
  --appluto-border-l: 90%;
  --appluto-border: hsl(var(--appluto-border-h), var(--appluto-border-s), var(--appluto-border-l));

  /* Misc */
  --appluto-secondary: hsl(150, 20%, 95%);
  --appluto-ring: var(--appluto-primary);
  --appluto-destructive: hsl(0, 84.2%, 60.2%);
  --appluto-service-icon-color: var(--appluto-primary);
  --appluto-radius: 0.75rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--appluto-bg);
  color: var(--appluto-fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
input, textarea { font: inherit; }

.appluto-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Utility ===== */
.appluto-glow-text { color: var(--appluto-primary); }
.appluto-section { padding: 7rem 0; position: relative; z-index: 10; }
.appluto-section-header { text-align: center; margin-bottom: 4rem; }
.appluto-section-label { color: var(--appluto-primary); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.appluto-section-subtitle { color: var(--appluto-muted-fg); margin-top: 1rem; max-width: 32rem; margin-left: auto; margin-right: auto; font-size: 0.875rem; line-height: 1.7; }
.appluto-section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }

/* ===== Glass ===== */
.appluto-glass-card {
  background: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsla(var(--appluto-border-h), var(--appluto-border-s), var(--appluto-border-l), 0.5);
  border-radius: 1rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
}
.appluto-glass-card-hover {
  background: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsla(var(--appluto-border-h), var(--appluto-border-s), var(--appluto-border-l), 0.5);
  border-radius: 1rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.5s ease;
}
.appluto-glass-card-hover:hover {
  border-color: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.3);
  box-shadow: 0 8px 40px hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.08), 0 2px 20px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.7);
  background: hsla(0, 0%, 100%, 0.7);
}
.appluto-glass-strong {
  background: hsla(0, 0%, 100%, 0.7);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  border: 1px solid hsla(var(--appluto-border-h), var(--appluto-border-s), var(--appluto-border-l), 0.6);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ===== Buttons ===== */
.appluto-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500; border-radius: var(--appluto-radius); transition: all 0.3s ease; font-size: 0.875rem;
}
.appluto-btn-primary {
  background: var(--appluto-primary); color: var(--appluto-primary-fg);
  padding: 0.75rem 1.75rem;
  box-shadow: 0 4px 14px hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2);
}
.appluto-btn-primary:hover { background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.9); box-shadow: 0 6px 20px hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.3); transform: translateY(-1px); }
.appluto-btn-outline {
  border: 1px solid var(--appluto-border); padding: 0.75rem 1.75rem;
}
.appluto-btn-outline:hover { border-color: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.4); background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.05); }
.appluto-btn-lg { padding: 0.875rem 1.75rem; }

/* ===== Section Fade ===== */
.appluto-section-fade {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.appluto-section-fade.visible { opacity: 1; transform: translateY(0); }

/* ===== Background Shapes ===== */
.appluto-bg-shapes { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.appluto-bg-orb { position: absolute; border-radius: 50%; }
.appluto-bg-orb-1 { top: -15%; right: -10%; width: 700px; height: 700px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.08); filter: blur(100px); animation: appluto-float-1 20s ease-in-out infinite; }
.appluto-bg-orb-2 { bottom: -15%; left: -10%; width: 600px; height: 600px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.06); filter: blur(80px); animation: appluto-float-2 25s ease-in-out infinite; }
.appluto-bg-orb-3 { top: 35%; left: 45%; width: 400px; height: 400px; background: hsla(var(--appluto-accent-h), var(--appluto-accent-s), var(--appluto-accent-l), 0.25); filter: blur(70px); animation: appluto-float-3 15s ease-in-out infinite; }
.appluto-bg-orb-4 { top: 60%; right: 20%; width: 350px; height: 350px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.05); filter: blur(90px); animation: appluto-float-1 20s ease-in-out infinite; }
.appluto-bg-orb-5 { top: 10%; left: 30%; width: 250px; height: 250px; background: hsla(var(--appluto-accent-h), var(--appluto-accent-s), var(--appluto-accent-l), 0.2); filter: blur(60px); animation: appluto-float-2 25s ease-in-out infinite; }
.appluto-bg-shape { position: absolute; }
.appluto-bg-shape-1 { top: 8%; right: 12%; width: 6rem; height: 6rem; border-radius: 1rem; border: 1px solid hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.08); background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.03); backdrop-filter: blur(4px); transform: rotate(12deg); animation: appluto-float-2 25s ease-in-out infinite; }
.appluto-bg-shape-2 { bottom: 18%; left: 5%; width: 5rem; height: 5rem; border-radius: 0.75rem; border: 1px solid hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.06); background: hsla(0,0%,100%,0.2); backdrop-filter: blur(4px); transform: rotate(-20deg); animation: appluto-float-3 15s ease-in-out infinite; }
.appluto-bg-shape-3 { top: 30%; left: 3%; width: 3rem; height: 3rem; border-radius: 0.5rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.05); transform: rotate(45deg); animation: appluto-float-2 25s ease-in-out infinite; }
.appluto-bg-dot { position: absolute; border-radius: 50%; }
.appluto-bg-dot-1 { top: 22%; left: 25%; width: 8px; height: 8px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2); animation: appluto-float-1 20s ease-in-out infinite; }
.appluto-bg-dot-2 { top: 55%; right: 18%; width: 12px; height: 12px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.15); animation: appluto-float-2 25s ease-in-out infinite; }
.appluto-bg-dot-3 { bottom: 25%; left: 30%; width: 8px; height: 8px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.25); animation: appluto-float-3 15s ease-in-out infinite; }

@keyframes appluto-float-1 { 0%,100% { transform: translate(0,0) rotate(0deg); } 25% { transform: translate(80px,-60px) rotate(90deg); } 50% { transform: translate(-40px,-120px) rotate(180deg); } 75% { transform: translate(60px,-40px) rotate(270deg); } }
@keyframes appluto-float-2 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(-100px,80px) rotate(120deg); } 66% { transform: translate(60px,-60px) rotate(240deg); } }
@keyframes appluto-float-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,40px) scale(1.1); } }
@keyframes appluto-pulse-glow { 0%,100% { opacity: 0.3; } 50% { opacity: 0.6; } }

/* ===== Navbar ===== */
.appluto-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsla(0,0%,100%,0.5);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid hsla(var(--appluto-border-h), var(--appluto-border-s), var(--appluto-border-l), 0.4);
  box-shadow: 0 4px 30px rgba(0,0,0,0.03), inset 0 -1px 0 rgba(255,255,255,0.5);
}
.appluto-navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.appluto-logo { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.appluto-nav-links { display: flex; align-items: center; gap: 1.75rem; }
.appluto-menu-list { list-style: none; display: flex; align-items: center; gap: 1.75rem; margin: 0; padding: 0; }
.appluto-menu-list > li { list-style: none; margin: 0; padding: 0; }
.appluto-nav-links a { font-size: 0.875rem; color: var(--appluto-muted-fg); transition: color 0.3s; }
.appluto-nav-links a:hover { color: var(--appluto-primary); }
.appluto-nav-right { display: flex; align-items: center; gap: 0.75rem; }
.appluto-nav-socials { display: flex; gap: 0.5rem; }
.appluto-nav-socials a { width: 2rem; height: 2rem; border-radius: 50%; background: var(--appluto-muted); display: flex; align-items: center; justify-content: center; color: var(--appluto-muted-fg); transition: all 0.3s; }
.appluto-nav-socials a:hover { color: var(--appluto-primary); background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); }
.appluto-nav-socials a svg, .appluto-nav-socials a img { display: block; width: 1rem; height: 1rem; }
.appluto-nav-cta { margin-left: 0.5rem; }
@keyframes applutoFadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes applutoIconSpin {
  from { transform: rotate(-90deg) scale(0.5); opacity: 0; }
  to { transform: rotate(0) scale(1); opacity: 1; }
}
.appluto-mobile-toggle {
  display: none; position: relative;
  background: none; border: none; cursor: pointer;
  color: var(--appluto-fg); width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem; transition: background 0.2s;
}
.appluto-mobile-toggle:hover { background: var(--appluto-muted); }
.appluto-mobile-toggle svg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.3s;
}
.appluto-mobile-toggle .appluto-icon-menu { opacity: 1; transform: translate(-50%, -50%) rotate(0); }
.appluto-mobile-toggle .appluto-icon-close { opacity: 0; transform: translate(-50%, -50%) rotate(90deg) scale(0.5); }
.appluto-mobile-toggle.active .appluto-icon-menu { opacity: 0; transform: translate(-50%, -50%) rotate(-90deg) scale(0.5); }
.appluto-mobile-toggle.active .appluto-icon-close { opacity: 1; transform: translate(-50%, -50%) rotate(0) scale(1); }

.appluto-mobile-menu {
  display: block; overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
  background: hsla(0,0%,100%,0.85); backdrop-filter: blur(40px);
  border-top: 1px solid var(--appluto-border);
  padding: 0 1.5rem;
}
.appluto-mobile-menu.open {
  opacity: 1; max-height: 500px;
  padding: 0.75rem 1.5rem 1.25rem;
}
.appluto-mobile-menu a {
  font-size: 0.95rem; color: var(--appluto-muted-fg); padding: 0.65rem 0.75rem;
  transition: color 0.3s, background 0.2s, transform 0.3s, opacity 0.3s;
  border-radius: 0.5rem; display: block;
  opacity: 0; transform: translateY(-8px);
}
.appluto-mobile-menu ul,
.appluto-mobile-menu ol { list-style: none; margin: 0; padding: 0; }
.appluto-mobile-menu li { list-style: none; margin: 0; padding: 0; }
.appluto-mobile-menu.open a {
  opacity: 1; transform: translateY(0);
}
.appluto-mobile-menu.open a:nth-child(1) { transition-delay: 0s; }
.appluto-mobile-menu.open a:nth-child(2) { transition-delay: 0.03s; }
.appluto-mobile-menu.open a:nth-child(3) { transition-delay: 0.06s; }
.appluto-mobile-menu.open a:nth-child(4) { transition-delay: 0.09s; }
.appluto-mobile-menu.open a:nth-child(5) { transition-delay: 0.12s; }
.appluto-mobile-menu.open a:nth-child(6) { transition-delay: 0.15s; }
.appluto-mobile-menu.open a:nth-child(7) { transition-delay: 0.18s; }
.appluto-mobile-menu a:hover { color: var(--appluto-primary); background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.06); }
.appluto-mobile-menu .appluto-mobile-socials {
  display: flex; gap: 0.5rem; padding-top: 0.75rem; border-top: 1px solid var(--appluto-border); margin-top: 0.5rem;
  opacity: 0; transform: translateY(-8px); transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}
.appluto-mobile-menu.open .appluto-mobile-socials { opacity: 1; transform: translateY(0); }
.appluto-mobile-menu .appluto-mobile-socials a { padding: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--appluto-muted); display: flex; align-items: center; justify-content: center; opacity: 1; transform: none; }
.appluto-mobile-menu .appluto-mobile-cta {
  display: inline-block; text-align: center; margin-top: 0.5rem;
  padding: 0.65rem 1.5rem; background: var(--appluto-primary); color: #fff;
  border-radius: 0.5rem; font-weight: 500; font-size: 0.875rem;
  opacity: 0; transform: translateY(-8px); transition: opacity 0.3s ease 0.24s, transform 0.3s ease 0.24s, background 0.2s;
}
.appluto-mobile-menu.open .appluto-mobile-cta { opacity: 1; transform: translateY(0); }

/* ===== Hero ===== */
.appluto-hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 5rem; overflow: hidden; }
.appluto-hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.appluto-hero-orb { position: absolute; border-radius: 50%; }
.appluto-hero-orb-1 { top: 5rem; right: 10%; width: 18rem; height: 18rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); filter: blur(48px); animation: appluto-float-1 20s ease-in-out infinite; }
.appluto-hero-orb-2 { bottom: 5rem; left: 5%; width: 14rem; height: 14rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.08); filter: blur(32px); animation: appluto-float-2 25s ease-in-out infinite; }
.appluto-hero-dot { position: absolute; border-radius: 50%; }
.appluto-hero-dot-1 { top: 30%; right: 30%; width: 1rem; height: 1rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.4); animation: appluto-float-3 15s ease-in-out infinite; }
.appluto-hero-dot-2 { top: 20%; left: 15%; width: 0.75rem; height: 0.75rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.3); animation: appluto-float-1 20s ease-in-out infinite; }
.appluto-hero-dot-3 { bottom: 30%; right: 15%; width: 1.25rem; height: 1.25rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.25); animation: appluto-float-2 25s ease-in-out infinite; }
.appluto-hero-line { position: absolute; height: 1px; }
.appluto-hero-line-1 { top: 15%; right: 20%; width: 5rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2); transform: rotate(45deg); animation: appluto-float-3 15s ease-in-out infinite; }
.appluto-hero-line-2 { bottom: 25%; left: 10%; width: 4rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.15); transform: rotate(-12deg); animation: appluto-float-1 20s ease-in-out infinite; }
.appluto-hero-grid { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle, var(--appluto-primary) 1px, transparent 1px); background-size: 40px 40px; }
.appluto-hero-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 10; }
.appluto-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); backdrop-filter: blur(16px); border: 1px solid hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2); color: var(--appluto-primary); font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.appluto-hero-badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--appluto-primary); animation: appluto-pulse-glow 2s ease-in-out infinite; }
.appluto-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.appluto-hero-desc { color: var(--appluto-muted-fg); font-size: 1.125rem; max-width: 32rem; margin-bottom: 2rem; line-height: 1.7; }
.appluto-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.appluto-hero-visual { display: flex; justify-content: center; position: relative; }
.appluto-hero-deco-1 { position: absolute; top: -2rem; right: -1rem; width: 8rem; height: 8rem; border-radius: 1.5rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); transform: rotate(12deg); animation: appluto-float-2 25s ease-in-out infinite; }
.appluto-hero-deco-2 { position: absolute; bottom: -1rem; left: -2rem; width: 6rem; height: 6rem; border-radius: 1rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.08); transform: rotate(-6deg); animation: appluto-float-3 15s ease-in-out infinite; }
.appluto-hero-deco-3 { position: absolute; top: 50%; right: -1.5rem; width: 4rem; height: 4rem; border-radius: 0.75rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.15); transform: rotate(45deg); animation: appluto-float-1 20s ease-in-out infinite; }
.appluto-hero-model-wrap { position: relative; width: 420px; height: 480px; }
.appluto-hero-model-bg { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 340px; height: 400px; border-radius: 2rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.08); }
.appluto-hero-model-ring { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); width: 370px; height: 410px; border-radius: 2.5rem; border: 2px solid hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.15); }
.appluto-hero-model-img { position: relative; z-index: 10; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }
.appluto-hero-float-badge { position: absolute; z-index: 20; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; border-radius: 1rem; animation: appluto-fadeInUp 0.6s ease both; }
.appluto-hero-float-badge-1 { top: 2rem; left: -3rem; }
.appluto-hero-float-badge-2 { bottom: 4rem; right: -2.5rem; animation-delay: 0.3s; }
.appluto-hero-float-icon { width: 2rem; height: 2rem; border-radius: 50%; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.15); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; color: var(--appluto-primary); font-size: 0.75rem; font-weight: 700; }
.appluto-hero-float-title { font-size: 0.75rem; font-weight: 700; }
.appluto-hero-float-sub { font-size: 0.625rem; color: var(--appluto-muted-fg); }
@keyframes appluto-fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Stats */
.appluto-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 5rem; }
.appluto-stat-card { padding: 1.5rem; width: 100%; text-align: left; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; }
.appluto-stat-value { color: var(--appluto-primary); font-weight: 700; font-size: 1.875rem; transition: transform 0.3s; }
.appluto-stat-card:hover .appluto-stat-value { transform: scale(1.1); }
.appluto-stat-label { color: var(--appluto-muted-fg); font-size: 0.875rem; margin-top: 0.25rem; }

/* ===== 3D Slider ===== */
.appluto-slider-3d-wrap { margin-bottom: 4rem; }
.appluto-slider-3d { position: relative; height: 320px; display: flex; align-items: center; justify-content: center; }
.appluto-slide-3d { position: absolute; width: 400px; height: 260px; border-radius: 1rem; overflow: hidden; cursor: pointer; border: 1px solid hsla(var(--appluto-border-h), var(--appluto-border-s), var(--appluto-border-l), 0.5); backdrop-filter: blur(4px); transition: all 0.6s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 8px 32px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.3); }
.appluto-slide-3d:hover { border-color: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.4); }
.appluto-slide-3d img { width: 100%; height: 100%; object-fit: cover; }
.appluto-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsla(var(--appluto-fg-h), var(--appluto-fg-s), var(--appluto-fg-l), 0.6), transparent); }
.appluto-slide-info { position: absolute; bottom: 1rem; left: 1rem; }
.appluto-slide-category { font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.5rem; border-radius: 9999px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.9); color: var(--appluto-primary-fg); }
.appluto-slide-title { color: var(--appluto-primary-fg); font-weight: 700; margin-top: 0.5rem; font-size: 0.875rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }

.appluto-slider-controls { display: flex; justify-content: center; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.appluto-slider-btn { padding: 0.75rem; border-radius: 50%; color: var(--appluto-fg); width: 45px; height: 45px;}
.appluto-slider-dots { display: flex; align-items: center; gap: 0.5rem; }
.appluto-slider-dot { height: 0.5rem; border-radius: 9999px; transition: all 0.3s; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.25); cursor: pointer; border: none; }
.appluto-slider-dot.active { width: 2rem; background: var(--appluto-primary); }

/* Highlights */
.appluto-highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 56rem; margin: 0 auto; }
.appluto-highlight-card { padding: 1.25rem; display: flex; align-items: flex-start; gap: 1rem; }
.appluto-highlight-num { flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); color: var(--appluto-primary); font-weight: 700; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; }
.appluto-highlight-card p { color: hsla(var(--appluto-fg-h), var(--appluto-fg-s), var(--appluto-fg-l), 0.8); font-size: 0.875rem; line-height: 1.6; }

/* ===== Portfolio ===== */
.appluto-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.appluto-portfolio-card { overflow: hidden; cursor: pointer; }
.appluto-portfolio-thumb { height: 12rem; display: flex; align-items: center; justify-content: center; position: relative; }
.appluto-portfolio-icon { width: 4rem; height: 4rem; border-radius: 1rem; border: 1px solid hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2); display: flex; align-items: center; justify-content: center; background: hsla(0,0%,100%,0.3); backdrop-filter: blur(24px); }
.appluto-portfolio-icon-inner { width: 1.75rem; height: 1.75rem; border-radius: 0.5rem; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.3); }
.appluto-portfolio-icon-lg { width: 6rem; height: 6rem; border-radius: 1.5rem; border-width: 2px; }
.appluto-portfolio-icon-inner-lg { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; }
.appluto-portfolio-hover-overlay { position: absolute; inset: 0; background: hsla(0,0%,100%,0.6); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: var(--appluto-primary); }
.appluto-portfolio-card:hover .appluto-portfolio-hover-overlay { opacity: 1; }
.appluto-portfolio-body { padding: 1.25rem; }
.appluto-portfolio-cat { font-size: 0.75rem; color: var(--appluto-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.appluto-portfolio-body h3 { font-weight: 600; margin-top: 0.25rem; font-size: 1rem; }
.appluto-portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.75rem; }
.appluto-portfolio-tags span { padding: 0.125rem 0.5rem; font-size: 0.625rem; border-radius: 9999px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.08); color: var(--appluto-primary); font-weight: 500; }

/* Portfolio Modal */
.appluto-modal-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; background: hsla(var(--appluto-fg-h), var(--appluto-fg-s), var(--appluto-fg-l), 0.3); backdrop-filter: blur(12px); }
.appluto-modal-overlay.active { display: flex; }
.appluto-modal-card { border-radius: 1.5rem; max-width: 42rem; width: 100%; max-height: 90vh; overflow: auto; }
.appluto-modal-thumb { height: 14rem; display: flex; align-items: center; justify-content: center; position: relative; border-radius: 1.5rem 1.5rem 0 0; }
.appluto-modal-close, .appluto-modal-nav { position: absolute; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: hsla(0,0%,100%,0.8); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.appluto-modal-close:hover, .appluto-modal-nav:hover { background: var(--appluto-card); }
.appluto-modal-close { top: 1rem; right: 1rem; }
.appluto-modal-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.appluto-modal-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.appluto-modal-body { padding: 2rem; }
.appluto-modal-body h3 { font-size: 1.5rem; font-weight: 700; margin-top: 0.25rem; margin-bottom: 0.75rem; }
.appluto-modal-body p { color: var(--appluto-muted-fg); line-height: 1.7; margin-bottom: 1.5rem; }

/* ===== Services ===== */
.appluto-services-layout { display: grid; grid-template-columns: 3fr 5fr 4fr; gap: 2rem; }
.appluto-services-intro {}
.appluto-services-meta { color: var(--appluto-muted-fg); font-size: 0.875rem; margin-bottom: 2rem; }
.appluto-services-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 2rem; }
.appluto-services-desc { color: var(--appluto-muted-fg); font-size: 0.875rem; line-height: 1.7; }
.appluto-services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.appluto-services-col {}
.appluto-service-item { width: 100%; text-align: left; padding: 1.25rem 0; border-bottom: 1px solid var(--appluto-border); opacity: 0.7; transition: opacity 0.3s, color 0.3s; }
.appluto-service-item:hover, .appluto-service-item.active { opacity: 1; }
.appluto-service-item.active .appluto-service-name { color: var(--appluto-primary); }
.appluto-service-item:hover .appluto-service-name { color: var(--appluto-primary); }
.appluto-service-num { display: block; font-size: 0.75rem; color: var(--appluto-muted-fg); margin-bottom: 0.25rem; }
.appluto-service-name { font-size: 0.875rem; font-weight: 500; transition: color 0.3s; }
.appluto-services-detail {
  border-radius: 1rem;
  background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.9);
  backdrop-filter: blur(24px);
  color: var(--appluto-primary-fg);
  min-height: 480px; overflow: hidden; position: relative;
  box-shadow: 0 10px 40px hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.appluto-services-detail-default { padding: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 480px; text-align: center; }
.appluto-services-detail-default p { opacity: 0.6; font-size: 0.875rem; margin-top: 1.5rem; }
.appluto-services-detail-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 480px; transition: all 0.5s ease; }
.appluto-services-detail-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.appluto-services-detail-content > p, #appluto-service-desc { color: hsla(0,0%,100%,0.8); font-size: 0.875rem; line-height: 1.7; }
.appluto-service-icon { margin-bottom: 2rem; opacity: 0.8; color: var(--appluto-service-icon-color); }
.appluto-service-icon svg { display: block; }
.appluto-service-nav { display: flex; justify-content: space-between; margin-top: 2.5rem; }
.appluto-service-nav-label { font-size: 0.75rem; opacity: 0.6; }
.appluto-service-nav-btns { display: flex; justify-content: space-between; margin-top: 0.5rem; }
.appluto-service-nav-btn { padding: 0.5rem; border-radius: 50%; transition: background 0.3s; }
.appluto-service-nav-btn:hover { background: hsla(0,0%,100%,0.1); }

/* ===== Process ===== */
.appluto-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.appluto-process-card { padding: 1.75rem; position: relative; }
.appluto-process-num { font-size: 3rem; font-weight: 700; color: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); position: absolute; top: 1rem; right: 1.25rem; transition: color 0.5s; }
.appluto-process-card:hover .appluto-process-num { color: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2); }
.appluto-process-card h3 { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; position: relative; z-index: 10; }
.appluto-process-card p { color: var(--appluto-muted-fg); font-size: 0.875rem; line-height: 1.6; position: relative; z-index: 10; }
.appluto-process-connector { display: none; position: absolute; top: 50%; right: -0.75rem; width: 1.5rem; height: 2px; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2); z-index: 20; }

/* ===== Testimonials ===== */
.appluto-testimonials-slider { max-width: 64rem; margin: 0 auto; }
.appluto-testimonials-track { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.appluto-testimonial-card { padding: 2rem; position: relative; border-radius: 1rem; min-height: 200px; }
.appluto-testimonial-side { width: 300px; flex-shrink: 0; opacity: 0.4; transform: scale(0.9); transition: all 0.5s; display: none; }
.appluto-testimonial-center { width: 100%; max-width: 36rem; flex-shrink: 0; transition: all 0.5s; border-color: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.2); }
.appluto-testimonial-quote { position: absolute; top: 1.5rem; right: 1.5rem; color: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.15); }
.appluto-testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.appluto-testimonial-star { color: var(--appluto-primary); fill: var(--appluto-primary); }
.appluto-testimonial-text { color: hsla(var(--appluto-fg-h), var(--appluto-fg-s), var(--appluto-fg-l), 0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.appluto-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.appluto-testimonial-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); display: flex; align-items: center; justify-content: center; color: var(--appluto-primary); font-weight: 700; font-size: 0.875rem; }
.appluto-testimonial-name { font-weight: 600; font-size: 0.875rem; }
.appluto-testimonial-role { color: var(--appluto-muted-fg); font-size: 0.75rem; }

/* ===== Team ===== */
.appluto-team-slider-wrap { display: flex; align-items: center; justify-content: center; gap: 2rem; }
.appluto-team-nav-vertical { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.appluto-team-dots { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.appluto-team-dot { width: 0.5rem; border-radius: 9999px; transition: all 0.3s; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.25); cursor: pointer; border: none; height: 0.5rem; }
.appluto-team-dot.active { height: 2rem; background: var(--appluto-primary); }
.appluto-team-slider-3d { position: relative; width: 100%; max-width: 48rem; height: 320px; display: flex; align-items: center; justify-content: center; }
.appluto-team-slide { position: absolute; width: 100%; max-width: 42rem; cursor: pointer; transition: all 0.6s cubic-bezier(0.4,0,0.2,1); }
.appluto-team-card-inner { display: flex; flex-direction: row; align-items: center; gap: 1.5rem; padding: 1.25rem; border-radius: 1rem; text-align: left; }
.appluto-team-img-wrap { position: relative; width: 10rem; height: 10rem; flex-shrink: 0; border-radius: 0.75rem; overflow: hidden; }
.appluto-team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.appluto-team-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsla(var(--appluto-fg-h), var(--appluto-fg-s), var(--appluto-fg-l), 0.2), transparent); }
.appluto-team-info { flex: 1; text-align: left; }
.appluto-team-info h3 { font-size: 1.25rem; font-weight: 700; }
.appluto-team-role { font-size: 0.875rem; font-weight: 500; color: var(--appluto-primary); margin-top: 0.25rem; }
.appluto-team-bio { font-size: 0.875rem; color: var(--appluto-muted-fg); margin-top: 0.75rem; line-height: 1.6; }
.appluto-team-socials { display: flex; gap: 0.5rem; margin-top: 1rem; justify-content: flex-start; }
.appluto-team-social-link { width: 2rem; height: 2rem; border-radius: 50%; background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); display: flex; align-items: center; justify-content: center; color: var(--appluto-primary); transition: all 0.3s; }
.appluto-team-social-link:hover { background: var(--appluto-primary); color: var(--appluto-primary-fg); }

/* ===== Contact ===== */
.appluto-contact-wrap { border-radius: 1.5rem; overflow: hidden; display: grid; grid-template-columns: 380px 1fr; max-width: 64rem; margin: 0 auto; }
.appluto-contact-info { background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.9); backdrop-filter: blur(24px); color: var(--appluto-primary-fg); padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); }
.appluto-contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.appluto-contact-info > p { color: hsla(0,0%,100%,0.8); font-size: 0.875rem; line-height: 1.6; }
.appluto-contact-details { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.appluto-contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.appluto-contact-item p { font-size: 0.875rem; }
.appluto-contact-deco-1 { position: absolute; bottom: -4rem; right: -4rem; width: 14rem; height: 14rem; border-radius: 50%; background: hsla(0,0%,100%,0.1); }
.appluto-contact-deco-2 { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 8rem; height: 8rem; border-radius: 50%; background: hsla(0,0%,100%,0.1); }
.appluto-contact-form { padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.appluto-contact-form .appluto-btn { align-self: flex-start; width: auto; }
.appluto-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.appluto-form-group { display: flex; flex-direction: column; }
.appluto-form-group label { font-size: 0.75rem; color: var(--appluto-muted-fg); margin-bottom: 0.5rem; }
.appluto-form-group .appluto-label-active { color: var(--appluto-primary); font-weight: 500; }
.appluto-form-group input, .appluto-form-group textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--appluto-border); padding-bottom: 0.5rem; font-size: 0.875rem; color: var(--appluto-fg); outline: none; transition: border-color 0.3s; resize: none; }
.appluto-form-group input::placeholder, .appluto-form-group textarea::placeholder { color: hsla(220,10%,50%,0.6); }
.appluto-form-group input:focus, .appluto-form-group textarea:focus { border-color: var(--appluto-primary); }

/* ===== Footer ===== */
.appluto-footer { position: relative; z-index: 10; border-top: 1px solid hsla(var(--appluto-border-h), var(--appluto-border-s), var(--appluto-border-l), 0.4); padding: 2.5rem 0; background: hsla(0,0%,100%,0.3); backdrop-filter: blur(24px); }
.appluto-footer-top { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.appluto-footer-tagline { font-size: 0.875rem; color: var(--appluto-muted-fg); margin-top: 0.25rem; }
.appluto-footer-socials { display: flex; gap: 0.75rem; }
.appluto-footer-socials a { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--appluto-muted); display: flex; align-items: center; justify-content: center; color: var(--appluto-muted-fg); transition: all 0.3s; }
.appluto-footer-socials a:hover { color: var(--appluto-primary); background: hsla(var(--appluto-primary-h), var(--appluto-primary-s), var(--appluto-primary-l), 0.1); }
.appluto-footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--appluto-border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.appluto-footer-bottom p { font-size: 0.875rem; color: var(--appluto-muted-fg); }
.appluto-footer-links { display: flex; gap: 1.5rem; }
.appluto-footer-links a { font-size: 0.875rem; color: var(--appluto-muted-fg); transition: color 0.3s; }
.appluto-footer-links a:hover { color: var(--appluto-primary); }

/* ===== Responsive ===== */
@media (min-width: 1024px) {
  .appluto-testimonial-side { display: block; }
  .appluto-process-connector { display: block; }
  .appluto-process-card:last-child .appluto-process-connector { display: none; }
}

@media (max-width: 1023px) {
  .appluto-hero-grid-layout { grid-template-columns: 1fr; }
  .appluto-hero-visual { display: none; }
  .appluto-stats-row { grid-template-columns: repeat(2, 1fr); }
  .appluto-services-layout { grid-template-columns: 1fr; }
  .appluto-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .appluto-process-grid { grid-template-columns: repeat(2, 1fr); }
  .appluto-contact-wrap { grid-template-columns: 1fr; }
  .appluto-team-nav-vertical { display: none; }
}

@media (max-width: 1023px) {
  .appluto-nav-links { display: none; }
  .appluto-nav-right { display: none; }
  .appluto-mobile-toggle { display: block; }
}

@media (max-width: 767px) {
  .appluto-mobile-menu.open { display: flex; }
  .appluto-portfolio-grid { grid-template-columns: 1fr; }
  .appluto-process-grid { grid-template-columns: 1fr; }
  .appluto-highlights-grid { grid-template-columns: 1fr; }
  .appluto-slide-3d { width: 280px; height: 200px; }
  .appluto-slider-3d { height: 260px; }
  .appluto-form-row { grid-template-columns: 1fr; }
  .appluto-footer-top, .appluto-footer-bottom { flex-direction: column; text-align: center; }
  .appluto-team-card-inner { flex-direction: row; text-align: left; align-items: center; }
  .appluto-team-img-wrap { width: 8rem; height: 8rem; }
  .appluto-team-info { text-align: left; }
  .appluto-team-socials { justify-content: flex-start; }
  .appluto-team-slider-3d { height: 380px; }
}
