@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Slightly darker, rich pastel background base */
  --bg0: #eaeeed; 
  --bg1: #e2e8e4; 
  --card: rgba(255, 255, 255, 0.72); 
  --card2: rgba(243, 247, 244, 0.8);
  --txt: #1c2e23; 
  --muted: #576b5d; 
  --muted2: #8aa092; 
  --line: rgba(28, 46, 35, 0.08); 
  
  /* Multi-colored pastel accents */
  --a1: #6ebb82;       /* Pastel Mint */
  --a2: #64a6c0;       /* Pastel Blue */
  --a3: #958cd3;       /* Pastel Lavender */
  --a4: #d08477;       /* Pastel Peach/Coral */
  --a1-glow: rgba(110, 187, 130, 0.25);
  --a2-glow: rgba(100, 166, 192, 0.25);
  --a3-glow: rgba(149, 140, 211, 0.25);

  --shadow: 0 10px 40px rgba(28, 46, 35, 0.04);
  --shadow2: 0 20px 45px rgba(28, 46, 35, 0.08);
  --r: 18px;
  --r2: 24px;

  --ok: #56af6d;
  --warn: #d09041;
  --bad: #d05c5c;

  /* Expanded max-width for PC */
  --max: 1560px;
  --gap: 24px;
  --pad: clamp(20px, 5vw, 60px);

  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', var(--sans);

  /* Scroll parallax variable updated by JS */
  --scroll-ratio: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--txt);
  
  /* Rich scroll-driven pastel mesh background */
  background-color: #eaeeed;
  background-image:
    radial-gradient(1000px 700px at calc(8% + (var(--scroll-ratio) * 12%)) calc(12% + (var(--scroll-ratio) * 15%)), rgba(110, 187, 130, 0.16), transparent 60%),
    radial-gradient(1000px 700px at calc(90% - (var(--scroll-ratio) * 15%)) calc(18% + (var(--scroll-ratio) * 12%)), rgba(100, 166, 192, 0.15), transparent 60%),
    radial-gradient(900px 600px at calc(15% + (var(--scroll-ratio) * 8%)) calc(70% - (var(--scroll-ratio) * 20%)), rgba(149, 140, 211, 0.12), transparent 70%),
    radial-gradient(900px 600px at calc(85% - (var(--scroll-ratio) * 10%)) calc(80% - (var(--scroll-ratio) * 18%)), rgba(208, 132, 119, 0.14), transparent 65%);
  transition: background-color 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg0);
}
::-webkit-scrollbar-thumb {
  background: var(--muted2);
  border-radius: 99px;
  border: 2px solid var(--bg0);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 14px;
  top: 14px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  z-index: 9999;
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(238, 243, 240, 0.8);
  border-bottom: 1px solid var(--line);
}
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navlinks {
  display: none;
  gap: 8px;
}
.navlinks a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.navlinks a:hover, .navlinks a:focus {
  color: var(--txt);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(110, 187, 130, 0.3);
  outline: none;
  transform: translateY(-1px);
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--txt);
  border-radius: 99px;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media(max-width: 991px) {
  .navlinks {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 79px;
    left: 0;
    width: 100%;
    height: calc(100vh - 79px);
    background: rgba(238, 243, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px var(--pad);
    gap: 16px;
    border-top: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 95;
    overflow-y: auto;
  }
  .navlinks.active {
    transform: translateY(0);
  }
  .navlinks a {
    font-size: 18px;
    padding: 16px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.5);
  }
}
@media(min-width: 992px) {
  .menu-toggle { display: none; }
  .navlinks { display: flex; }
}

/* Buttons */
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.1px;
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  user-select: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(1px);
}
.btn.primary {
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #ffffff;
  box-shadow: 0 10px 25px var(--a1-glow);
}
.btn.primary:hover, .btn.primary:focus {
  box-shadow: 0 15px 35px var(--a1-glow);
  background: linear-gradient(135deg, #7ad292, #75c1dd);
  outline: none;
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  color: var(--txt);
}
.btn.ghost:hover, .btn.ghost:focus {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--a1);
  outline: none;
  box-shadow: 0 0 0 3px var(--a1-glow);
}

/* Layout Grid and Container */
main {
  padding: 40px 0 100px;
}
section {
  margin: 80px 0;
}
.sectionHead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.sectionHead .dot {
  margin: 0;
}

/* Scroll Reveal Base Class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Kicker status tag */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: radial-gradient(circle at 30% 30%, var(--a1), var(--a3));
  box-shadow: 0 0 0 3px var(--a1-glow);
}

/* Glassmorphism Cards */
.card {
  background: var(--card);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 187, 130, 0.4);
  box-shadow: var(--shadow2);
}
.cardPad {
  padding: 28px;
}

/* Glow Effects */
.glowTop {
  position: relative;
}
.glowTop::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 130px;
  background: radial-gradient(600px 140px at 20% 0%, rgba(110, 187, 130, 0.15), transparent 60%),
              radial-gradient(600px 140px at 80% 0%, rgba(149, 140, 211, 0.12), transparent 60%);
  pointer-events: none;
}

/* Hero Section */
.hero {
  padding: 40px 0 24px;
}
.gridHero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  transition: all 0.4s ease;
}
@media(min-width: 992px) {
  .gridHero {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.gridHero:has(> .card:hover) > div:not(.card) {
  filter: blur(1.2px);
  opacity: 0.8;
}
.gridHero > * {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, opacity 0.4s ease;
  position: relative;
  z-index: 1;
}
.gridHero > .card:hover {
  transform: scale(1.05) translateY(-6px);
  z-index: 5;
}
h1 {
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--txt);
}
.sub {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.6;
  max-width: 58ch;
}
.ctaRow {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.micro {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(28, 46, 35, 0.06);
}
.pill b {
  color: var(--txt);
  font-weight: 650;
}
.pill .chip {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--a1);
}
.pill:nth-child(2) .chip {
  background: var(--a2);
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.metricItem {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all 0.3s ease;
}
.metricItem:hover {
  background: #fff;
  border-color: var(--a1);
  transform: translateY(-2px);
}
.metricVal {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--txt);
  background: linear-gradient(135deg, var(--a1), var(--a2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metricLabel {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.mini {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* Services Detail Layout */
.detailed-services-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 28px;
}
.detailed-services-container {
  transition: all 0.4s ease;
}
.detailed-services-container:hover .service-detail-card:not(:hover) {
  filter: blur(1.2px);
  opacity: 0.8;
}
.service-detail-card {
  border-radius: var(--r2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}
.service-detail-card:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: var(--shadow2), 0 20px 40px rgba(28, 46, 35, 0.08);
  z-index: 5;
}
.service-detail-card.service-web:hover { border-color: rgba(110, 187, 130, 0.6); }
.service-detail-card.service-video:hover { border-color: rgba(100, 166, 192, 0.6); }
.service-detail-card.service-design:hover { border-color: rgba(149, 140, 211, 0.6); }

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  margin-top: 20px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list li {
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.list li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 700;
  flex-shrink: 0;
}
.price {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.price b {
  color: var(--txt);
  font-size: 15px;
}

/* Portfolio works page & Grid */
.tab-controls {
  display: flex;
  gap: 14px;
  margin: 32px 0 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.tab-btn {
  background: none;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.tab-btn:hover {
  color: var(--txt);
  background: rgba(255, 255, 255, 0.45);
}
.tab-btn.active {
  color: var(--txt);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.workGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
  transition: all 0.4s ease;
}
.workGrid:hover > *:not(:hover) {
  filter: blur(1.2px);
  opacity: 0.8;
}
.workGrid > * {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}
.workGrid > *:hover {
  transform: scale(1.05) translateY(-6px);
  z-index: 5;
  box-shadow: var(--shadow2);
}
.workItem {
  position: relative;
  cursor: pointer;
}
.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,245,241,0.85));
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.thumb.aspect-16-9 {
  aspect-ratio: 16 / 9;
}
.thumb.aspect-4-3 {
  aspect-ratio: 4 / 3;
}
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 46, 35, 0.02);
  transition: background-color 0.3s ease;
  z-index: 2;
}
.workItem:hover .thumb::after {
  background-color: transparent;
}
.thumb video, .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.workItem:hover .thumb video, .workItem:hover .thumb img {
  transform: scale(1.04);
}
.workItem h4 {
  margin: 16px 0 6px;
  font-size: 17px;
  letter-spacing: -0.2px;
  color: var(--txt);
  transition: color 0.2s ease;
}
.workItem:hover h4 {
  color: var(--a1);
}
.workMeta {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted2);
  display: flex;
  gap: 8px;
  align-items: center;
}
.workMeta span {
  background: rgba(28, 46, 35, 0.04);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Play button overlay */
.play-btn-overlay {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px var(--a1-glow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  z-index: 5;
  pointer-events: none;
}
.play-btn-overlay svg {
  margin-left: 2px;
}
.workItem:hover .play-btn-overlay {
  transform: scale(1.12);
  box-shadow: 0 12px 25px var(--a1-glow);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 11, 0.82);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  padding: clamp(16px, 4vw, 60px);
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-video, .lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 1010;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  line-height: 1;
}
.lightbox-close:hover {
  background-color: var(--bad);
  border-color: var(--bad);
  transform: rotate(90deg);
}

/* Process section (Ablauf) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
  margin-top: 28px;
}
.steps:hover .step:not(:hover) {
  filter: blur(1.2px);
  opacity: 0.8;
}
.step {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}
.step:hover {
  transform: scale(1.05) translateY(-6px);
  z-index: 5;
  border-color: rgba(110, 187, 130, 0.4);
  box-shadow: var(--shadow2);
}
.stepNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: rgba(110, 187, 130, 0.15);
  border: 1px solid rgba(110, 187, 130, 0.35);
  color: var(--txt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact form Page */
.contactGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  margin-top: 28px;
}
@media(min-width: 992px) {
  .contactGrid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.formBox label {
  display: block;
  margin-bottom: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.formBox input, .formBox textarea, .formBox select {
  appearance: none;
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--txt);
  font-size: 14px;
  font-family: var(--sans);
  margin-bottom: 18px;
  transition: all 0.25s ease;
}
.formBox input:focus, .formBox textarea:focus, .formBox select:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--a1);
  box-shadow: 0 0 0 4px var(--a1-glow);
}
.formBox textarea {
  min-height: 130px;
  resize: vertical;
}

.channelList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.channelList a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.channelList a:hover {
  background: #ffffff;
  border-color: var(--a2);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.channelList a span {
  font-weight: 600;
}
.channelValue {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--a2);
}

/* Success Card Overlay inside form */
.form-success-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.form-success-overlay.active {
  display: flex;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 99px;
  background: rgba(86, 175, 109, 0.15);
  color: var(--ok);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

/* Footer (very bottom) */
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  margin-top: 60px;
}
.foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  flex-wrap: wrap;
}
.footRow a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 12px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footRow a:hover {
  color: var(--txt);
  text-decoration: underline;
}
.fine {
  color: var(--muted2);
  font-size: 13px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 150%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow2);
  z-index: 9999;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast-badge {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--a1);
}
.toast-msg {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--txt);
}
.toast-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  padding: 2px 6px;
  font-weight: 700;
}
.toast-close:hover {
  color: var(--txt);
}

/* Background Parallax Floating Circles */
.parallax-bg-shapes {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.85;
}
.bg-shape {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  will-change: transform;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 1.5s ease, opacity 1.5s ease;
}
.shape-mint {
  --base-x: 0px;
  --base-y: 0px;
  --base-rot: 0deg;
  --base-scale: 1;
  width: 50vw;
  height: 50vw;
  background: rgba(110, 187, 130, 0.16);
  top: -10%;
  left: -10%;
  transform: translate(calc(var(--base-x) + (var(--scroll-ratio) * 120px)), calc(var(--base-y) + (var(--scroll-ratio) * 80px))) rotate(calc(var(--base-rot) + (var(--scroll-ratio) * 180deg))) scale(calc(var(--base-scale) + (var(--scroll-ratio) * 0.15)));
}
body.sec-services .shape-mint {
  --base-x: 12vw;
  --base-y: 10vh;
  --base-rot: 90deg;
  --base-scale: 1.3;
}
body.sec-work .shape-mint {
  --base-x: 22vw;
  --base-y: -8vh;
  --base-rot: 180deg;
  --base-scale: 0.85;
}
body.sec-process .shape-mint {
  --base-x: -8vw;
  --base-y: 18vh;
  --base-rot: 270deg;
  --base-scale: 1.1;
}
body.sec-contact .shape-mint {
  --base-x: 4vw;
  --base-y: -15vh;
  --base-rot: 360deg;
  --base-scale: 1.2;
}

.shape-blue {
  --base-x: 0px;
  --base-y: 0px;
  --base-rot: 0deg;
  --base-scale: 1;
  width: 45vw;
  height: 45vw;
  background: rgba(100, 166, 192, 0.15);
  top: 15%;
  right: -10%;
  transform: translate(calc(var(--base-x) + (var(--scroll-ratio) * -100px)), calc(var(--base-y) + (var(--scroll-ratio) * 120px))) rotate(calc(var(--base-rot) + (var(--scroll-ratio) * -120deg))) scale(calc(var(--base-scale) - (var(--scroll-ratio) * 0.1)));
}
body.sec-services .shape-blue {
  --base-x: -8vw;
  --base-y: 12vh;
  --base-rot: -60deg;
  --base-scale: 1.15;
}
body.sec-work .shape-blue {
  --base-x: -18vw;
  --base-y: 6vh;
  --base-rot: -120deg;
  --base-scale: 1.4;
}
body.sec-process .shape-blue {
  --base-x: 12vw;
  --base-y: -12vh;
  --base-rot: -180deg;
  --base-scale: 0.95;
}
body.sec-contact .shape-blue {
  --base-x: -12vw;
  --base-y: 8vh;
  --base-rot: -240deg;
  --base-scale: 1.05;
}

.shape-lavender {
  --base-x: 0px;
  --base-y: 0px;
  --base-rot: 0deg;
  --base-scale: 1;
  width: 48vw;
  height: 48vw;
  background: rgba(149, 140, 211, 0.13);
  top: 50%;
  left: -15%;
  transform: translate(calc(var(--base-x) + (var(--scroll-ratio) * 80px)), calc(var(--base-y) + (var(--scroll-ratio) * -150px))) rotate(calc(var(--base-rot) + (var(--scroll-ratio) * 140deg))) scale(calc(var(--base-scale) + (var(--scroll-ratio) * 0.2)));
}
body.sec-services .shape-lavender {
  --base-x: 4vw;
  --base-y: -8vh;
  --base-rot: 45deg;
  --base-scale: 0.95;
}
body.sec-work .shape-lavender {
  --base-x: 12vw;
  --base-y: 12vh;
  --base-rot: 90deg;
  --base-scale: 1.25;
}
body.sec-process .shape-lavender {
  --base-x: 20vw;
  --base-y: -4vh;
  --base-rot: 180deg;
  --base-scale: 1.5;
}
body.sec-contact .shape-lavender {
  --base-x: -4vw;
  --base-y: 18vh;
  --base-rot: 270deg;
  --base-scale: 0.85;
}

.shape-peach {
  --base-x: 0px;
  --base-y: 0px;
  --base-rot: 0deg;
  --base-scale: 1;
  width: 40vw;
  height: 40vw;
  background: rgba(208, 132, 119, 0.15);
  bottom: -5%;
  right: -5%;
  transform: translate(calc(var(--base-x) + (var(--scroll-ratio) * -140px)), calc(var(--base-y) + (var(--scroll-ratio) * -60px))) rotate(calc(var(--base-rot) + (var(--scroll-ratio) * -90deg))) scale(calc(var(--base-scale) - (var(--scroll-ratio) * 0.15)));
}
body.sec-services .shape-peach {
  --base-x: -4vw;
  --base-y: -4vh;
  --base-rot: -30deg;
  --base-scale: 1.05;
}
body.sec-work .shape-peach {
  --base-x: -12vw;
  --base-y: 8vh;
  --base-rot: -90deg;
  --base-scale: 0.9;
}
body.sec-process .shape-peach {
  --base-x: -18vw;
  --base-y: 12vh;
  --base-rot: -120deg;
  --base-scale: 1.15;
}
body.sec-contact .shape-peach {
  --base-x: 18vw;
  --base-y: -12vh;
  --base-rot: -180deg;
  --base-scale: 1.4;
}

/* Section Background Color Transitions */
body.sec-hero { background-color: #eaeeed; }
body.sec-services { background-color: #e2e8e4; }
body.sec-work { background-color: #e2e7ec; }
body.sec-process { background-color: #e6e4ec; }
body.sec-contact { background-color: #ece4e2; }

@media(min-width: 992px) {
  #tab-design .workGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Chat Widget Styles */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: var(--sans);
}

.chat-trigger {
  width: 56px;
  height: 56px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px var(--a1-glow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.chat-trigger:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 15px 35px var(--a1-glow);
}
.chat-trigger:active {
  transform: scale(0.95);
}

.chat-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 330px;
  height: 440px;
  background: var(--card);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
.chat-window.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  padding: 16px;
  background: linear-gradient(135deg, rgba(110, 187, 130, 0.15), rgba(100, 166, 192, 0.15));
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header strong {
  font-size: 15px;
  color: var(--txt);
}
.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
}
.chat-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.chat-close-btn:hover {
  color: var(--txt);
}

.chat-onboarding {
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-onboarding input {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  background: rgba(255,255,255,0.8);
  font-family: var(--sans);
  color: var(--txt);
  transition: all 0.2s ease;
}
.chat-onboarding input:focus {
  outline: none;
  border-color: var(--a1);
  background: #fff;
  box-shadow: 0 0 0 3px var(--a1-glow);
}

.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.4;
  word-wrap: break-word;
}
.chat-msg.bot {
  background: rgba(255,255,255,0.8);
  color: var(--txt);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--line);
  align-self: flex-start;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #ffffff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-typing {
  font-size: 12px;
  color: var(--muted2);
  margin-left: 6px;
  display: none;
  align-self: flex-start;
}

.chat-footer {
  padding: 12px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  display: none; /* Shown after onboarding */
  align-items: center;
  gap: 8px;
}
.chat-window.onboarded .chat-footer {
  display: flex;
}
.chat-footer input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  background: rgba(255,255,255,0.8);
  color: var(--txt);
  font-family: var(--sans);
  transition: all 0.2s ease;
}
.chat-footer input:focus {
  outline: none;
  border-color: var(--a1);
  background: #fff;
}
.chat-footer button {
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.chat-footer button:hover {
  opacity: 0.9;
}

