/* ==========================================================================
   WELABS Design System
   A geometric, editorial design system for welabs.de
   Colors: Coral #fa6c64, Dark #313131, Teal #22BBC4
   Fonts: Bebas Neue (display) + Lato (body)
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --coral: #fa6c64;
  --coral-hover: #ff8a83;
  --coral-dark: #e55a52;
  --coral-10: rgba(250, 108, 100, 0.1);
  --coral-20: rgba(250, 108, 100, 0.2);

  --dark: #313131;
  --dark-deep: #1a1a1a;
  --dark-surface: #3d3d3d;
  --dark-80: rgba(49, 49, 49, 0.8);

  --teal: #22BBC4;
  --teal-hover: #3dd4dd;
  --teal-dark: #1a9da5;
  --teal-10: rgba(34, 187, 196, 0.1);

  --white: #ffffff;
  --off-white: #f7f7f7;
  --light-gray: #e8e8e8;
  --medium-gray: #999999;
  --text: #313131;
  --text-light: #6b6b6b;
  --text-on-dark: #d4d4d4;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  --nav-height: 80px;
  --section-py: clamp(80px, 10vw, 140px);
  --container: 1220px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--ease-out-quart);
  --transition-base: 0.4s var(--ease-out-expo);
  --transition-slow: 0.7s var(--ease-out-expo);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
  --shadow-coral: 0 8px 32px rgba(250, 108, 100, 0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --skew: -6deg;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--coral);
  color: var(--white);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h4 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
  transform: skewX(var(--skew));
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: var(--text-light);
}

.dark-section .lead,
.dark-section .eyebrow {
  color: var(--text-on-dark);
}

.dark-section .eyebrow {
  color: var(--coral);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 860px;
}

.container--wide {
  max-width: 1440px;
}

section {
  padding: var(--section-py) 0;
  position: relative;
}

.dark-section {
  background: var(--dark);
  color: var(--white);
}

.dark-deep-section {
  background: var(--dark-deep);
  color: var(--white);
}

.off-white-section {
  background: var(--off-white);
}

.grid {
  display: grid;
  gap: var(--gutter);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base), height var(--transition-base);
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  height: 64px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav__logo-img {
  height: 24px;
  width: auto;
}

.nav__logo-mark {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 3px;
  transform: skewX(var(--skew));
}

.nav__logo-mark span {
  width: 6px;
  height: 18px;
  border-radius: 1px;
}

.nav__logo-mark span:nth-child(1) { background: var(--coral); height: 12px; }
.nav__logo-mark span:nth-child(2) { background: var(--teal); height: 18px; }
.nav__logo-mark span:nth-child(3) { background: var(--coral); height: 8px; }
.nav__logo-mark span:nth-child(4) { background: var(--teal); height: 18px; }
.nav__logo-mark span:nth-child(5) { background: var(--coral); height: 14px; }
.nav__logo-mark span:nth-child(6) { background: var(--teal); height: 10px; }

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transform: skewX(var(--skew));
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--coral);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: background var(--transition-fast), transform var(--transition-fast);
  transform: skewX(var(--skew));
}

.nav__cta span {
  display: inline-block;
  transform: skewX(calc(var(--skew) * -1));
}

.nav__cta:hover {
  background: var(--coral-hover);
  transform: skewX(var(--skew)) translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
}

.nav__burger span {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--coral);
  transform: translateX(8px);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 108, 100, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 108, 100, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__bg-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.hero__bg-gradient--coral {
  background: var(--coral);
  top: -200px;
  right: -100px;
}

.hero__bg-gradient--teal {
  background: var(--teal);
  bottom: -200px;
  left: -100px;
  opacity: 0.08;
}

.hero__diagonal {
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 120%;
  background: linear-gradient(135deg, rgba(250, 108, 100, 0.06), transparent 70%);
  transform: skewX(var(--skew));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--coral);
  transform: skewX(var(--skew));
}

.hero__title {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  margin-bottom: 32px;
}

.hero__title span {
  display: block;
}

.hero__title .highlight {
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-on-dark);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--medium-gray);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Logo decoration on right side of hero */
.hero__geometric {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .hero__geometric {
    display: block;
  }
}

.hero__logo-graphic {
  width: 320px;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
  animation: heroLogoIn 1.2s var(--ease-out-expo) 0.5s forwards;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(-8deg);
  }
  to {
    opacity: 0.15;
    transform: scale(1) rotate(0deg);
  }
}

/* ---------- Section Dividers ---------- */
.divider-diagonal {
  position: relative;
}

.divider-diagonal::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
}

.divider-diagonal--reverse::after {
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.divider-top {
  position: relative;
}

.divider-top::before {
  content: '';
  position: absolute;
  top: -79px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  transform: skewX(var(--skew));
}

.btn--primary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: skewX(calc(var(--skew) * -1));
}

.btn--primary:hover {
  background: var(--coral-hover);
  transform: skewX(var(--skew)) translateY(-2px);
  box-shadow: var(--shadow-coral);
}

.btn--secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.btn--secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  transform: skewX(var(--skew));
}

.btn--dark span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: skewX(calc(var(--skew) * -1));
}

.btn--dark:hover {
  background: var(--dark-deep);
  transform: skewX(var(--skew)) translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--dark);
  color: var(--dark);
}

.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn__arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ---------- Section Header ---------- */
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header--center {
  text-align: center;
}

.section-header--center .eyebrow {
  justify-content: center;
}

.section-header--center .eyebrow::before {
  display: none;
}

.section-header--center .lead {
  max-width: 600px;
  margin: 0 auto;
}

.section-header h2 {
  margin-bottom: 20px;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--coral);
  transition: height var(--transition-base);
  transform: skewX(var(--skew));
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--coral);
  background: var(--coral-10);
  border-radius: var(--radius-md);
  padding: 12px;
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(250, 108, 100, 0.3);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.03em;
  transition: gap var(--transition-fast);
}

.service-card__link:hover {
  gap: 12px;
}

/* ---------- Stats Section ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stats--4col {
  grid-template-columns: repeat(4, 1fr);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  letter-spacing: 0.03em;
}

/* ---------- About / Two-Column ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__visual {
  position: relative;
}

.split__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-surface), var(--dark));
}

.split__image-frame--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: var(--radius-md);
  transform: skewX(var(--skew));
  opacity: 0.15;
}

.split__accent--top {
  top: -20px;
  right: -20px;
}

.split__accent--bottom {
  bottom: -20px;
  left: -20px;
  background: var(--teal);
}

.split__content h2 {
  margin-bottom: 24px;
}

.split__content p {
  margin-bottom: 16px;
}

.split__content .btn {
  margin-top: 16px;
}

/* ---------- Product Cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--light-gray);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card__visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.product-card__visual--wephish {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.product-card__visual--wefairs {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
}

.product-card__visual--wenovate {
  background: linear-gradient(135deg, #2d1b3d, #1a1a2e);
}

.product-card__visual-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.product-card__body {
  padding: 32px;
}

.product-card__name {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.product-card__tagline {
  font-size: 0.9rem;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 16px;
}

.product-card__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--coral);
  transition: gap var(--transition-fast);
}

.product-card__link:hover {
  gap: 14px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-single {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  position: relative;
}

.testimonial-card__quote {
  font-size: 2.5rem;
  font-family: var(--font-display);
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.testimonial-card__authors {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-card__author-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.testimonial-card__author-item .testimonial-card__role {
  margin-top: 0;
}

/* ---------- Team Grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--light-gray);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* Last item (odd count): center in grid */
.team-member:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 12px);
  justify-self: center;
}

.team-member__avatar {
  width: 160px;
  min-width: 160px;
  height: 160px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
}

.team-member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-member__avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
}

.team-member:nth-child(1) .team-member__avatar-inner { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.team-member:nth-child(2) .team-member__avatar-inner { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.team-member:nth-child(3) .team-member__avatar-inner { background: linear-gradient(135deg, var(--coral-dark), #b8453e); }
.team-member:nth-child(4) .team-member__avatar-inner { background: linear-gradient(135deg, var(--dark), var(--dark-surface)); }
.team-member:nth-child(5) .team-member__avatar-inner { background: linear-gradient(135deg, var(--teal-dark), #0d7a80); }

.team-member__info {
  flex: 1;
  min-width: 0;
}

.team-member__nick {
  font-size: 0.75rem;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-member__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.team-member__role {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.team-member__bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.team-member__experience {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.team-member__exp-item {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

.team-member__exp-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

/* ---------- Values Stack ---------- */
.values-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.values-stack__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-fast);
}

.values-stack__item:hover {
  border-color: var(--coral-20);
  box-shadow: var(--shadow-sm);
}

.values-stack__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--coral);
}

.values-stack__icon svg {
  width: 100%;
  height: 100%;
}

.values-stack__title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.values-stack__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Service Visual Mockups ---------- */
.service-visual {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-visual__mockup {
  width: 100%;
  height: 100%;
  position: relative;
}

/* -- Branding Visual -- */
.service-visual--branding {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  padding: 32px;
}

.service-visual--branding .service-visual__mockup {
  display: grid;
  grid-template-rows: 1.2fr 0.6fr 1fr;
  gap: 20px;
}

.sv-brand__logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-brand__logo-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(250, 108, 100, 0.3);
}

.sv-brand__logo-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sv-brand__logo-lines span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.sv-brand__logo-lines span:first-child {
  width: 70%;
}

.sv-brand__logo-lines span:last-child {
  width: 45%;
}

.sv-brand__colors {
  display: flex;
  gap: 10px;
}

.sv-brand__swatch {
  flex: 1;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-visual--branding:hover .sv-brand__swatch {
  transform: translateY(-2px);
}

.sv-brand__typo {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-brand__typo-large {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  opacity: 0.5;
  line-height: 1;
}

.sv-brand__typo-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sv-brand__typo-lines span {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.sv-brand__typo-lines span:nth-child(1) { width: 100%; }
.sv-brand__typo-lines span:nth-child(2) { width: 80%; }
.sv-brand__typo-lines span:nth-child(3) { width: 60%; }

/* -- Digital Transformation Visual -- */
.service-visual--transform {
  background: linear-gradient(145deg, #0d1b2a 0%, #1b263b 100%);
  padding: 32px;
}

.service-visual--transform .service-visual__mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sv-transform__nodes {
  position: relative;
  width: 220px;
  height: 200px;
}

.sv-transform__node {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.sv-transform__node svg {
  width: 24px;
  height: 24px;
}

.sv-transform__node--1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250, 108, 100, 0.12);
  color: var(--coral);
}

.sv-transform__node--2 {
  bottom: 20px;
  left: 0;
  background: rgba(34, 187, 196, 0.12);
  color: var(--teal);
}

.sv-transform__node--3 {
  bottom: 20px;
  right: 0;
  background: rgba(250, 108, 100, 0.12);
  color: var(--coral);
}

.service-visual--transform:hover .sv-transform__node {
  border-color: rgba(255, 255, 255, 0.2);
}

.sv-transform__connector {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  height: 1px;
}

.sv-transform__connector--1 {
  width: 80px;
  top: 52px;
  left: 30px;
  transform: rotate(55deg);
  transform-origin: top right;
}

.sv-transform__connector--2 {
  width: 80px;
  top: 52px;
  right: 30px;
  transform: rotate(-55deg);
  transform-origin: top left;
}

.sv-transform__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(250, 108, 100, 0.15), rgba(34, 187, 196, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-base);
}

.sv-transform__center svg {
  width: 28px;
  height: 28px;
  opacity: 0.6;
}

.service-visual--transform:hover .sv-transform__center {
  border-color: var(--coral);
  box-shadow: 0 0 30px rgba(250, 108, 100, 0.15);
}

.sv-transform__label {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* -- E-Commerce Visual -- */
.service-visual--ecommerce {
  background: linear-gradient(145deg, #1a1a2e 0%, #22223b 100%);
  padding: 24px;
  padding-top: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.service-visual--ecommerce .service-visual__mockup {
  position: relative;
  width: 100%;
  margin-top: 8px;
}

.sv-shop__browser {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sv-shop__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.sv-shop__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.sv-shop__dot:nth-child(1) { background: #ff5f57; }
.sv-shop__dot:nth-child(2) { background: #ffbd2e; }
.sv-shop__dot:nth-child(3) { background: #28ca42; }

.sv-shop__url-bar {
  flex: 1;
  height: 20px;
  background: #fff;
  border-radius: 10px;
  margin-left: 12px;
  border: 1px solid #e0e0e0;
}

.sv-shop__nav {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.sv-shop__nav span {
  height: 8px;
  border-radius: 4px;
  background: #e0e0e0;
}

.sv-shop__nav span:nth-child(1) { width: 50px; }
.sv-shop__nav span:nth-child(2) { width: 40px; }
.sv-shop__nav span:nth-child(3) { width: 55px; }
.sv-shop__nav span:nth-child(4) { width: 35px; }

.sv-shop__content {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.sv-shop__content + .sv-shop__content {
  border-top: 1px solid #eee;
}

.sv-shop__product-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  flex-shrink: 0;
}

.sv-shop__product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-shop__product-title {
  height: 12px;
  width: 85%;
  background: #e0e0e0;
  border-radius: 6px;
}

.sv-shop__product-price {
  height: 16px;
  width: 40%;
  background: var(--coral);
  border-radius: 8px;
  opacity: 0.7;
}

.sv-shop__product-stars {
  display: flex;
  gap: 3px;
}

.sv-shop__product-stars span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #f0c040;
}

.sv-shop__product-btn {
  height: 28px;
  width: 70%;
  background: var(--coral);
  border-radius: var(--radius-sm);
  margin-top: auto;
  transform: skewX(var(--skew));
}

.sv-shop__cart-badge {
  position: absolute;
  top: 50px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(250, 108, 100, 0.4);
  transition: transform var(--transition-fast);
}

.service-visual--ecommerce:hover .sv-shop__cart-badge {
  transform: scale(1.08);
}

.sv-shop__cart-badge svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.sv-shop__cart-badge > span {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  background: var(--dark);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -- IT Consulting Visual (Console) -- */
.service-visual--consulting {
  background: linear-gradient(145deg, #0d1117 0%, #161b22 100%);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.sv-console__window {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-console__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-console__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sv-console__dot--red { background: #ff5f57; }
.sv-console__dot--yellow { background: #ffbd2e; }
.sv-console__dot--green { background: #28ca42; }

.sv-console__body {
  padding: 16px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.72rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}

.sv-console__prompt {
  color: var(--teal);
}

.sv-console__cmd {
  color: var(--white);
}

.sv-console__line--dim {
  color: rgba(255, 255, 255, 0.35);
}

.sv-console__line--success {
  color: #28ca42;
}

.sv-console__line--warn {
  color: #ffbd2e;
}

.sv-console__line--info {
  color: var(--coral);
}

.sv-console__cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--teal);
  animation: consoleBlink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes consoleBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* -- Web Platform Visual (Dashboard) -- */
.service-visual--platform {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-platform__dashboard {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.sv-platform__sidebar {
  width: 48px;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.sv-platform__sidebar-item {
  width: 100%;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.sv-platform__sidebar-item--active {
  background: rgba(250, 108, 100, 0.2);
  border: 1px solid rgba(250, 108, 100, 0.3);
}

.sv-platform__main {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-platform__topbar {
  height: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}

.sv-platform__widgets {
  flex: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
}

.sv-platform__widget {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.sv-platform__widget--chart {
  display: flex;
  align-items: flex-end;
}

.sv-platform__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.sv-platform__chart-bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height var(--transition-base);
}

.sv-platform__chart-bars span:nth-child(odd) {
  background: var(--coral);
  opacity: 0.5;
}

.sv-platform__chart-bars span:nth-child(even) {
  background: var(--teal);
  opacity: 0.4;
}

.service-visual--platform:hover .sv-platform__chart-bars span {
  opacity: 0.8;
}

.sv-platform__widget--stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.sv-platform__stat-row {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.sv-platform__stat-row:nth-child(1) { width: 80%; }
.sv-platform__stat-row:nth-child(2) { width: 60%; }
.sv-platform__stat-row:nth-child(3) { width: 90%; }

/* -- Website Visual (Devices) -- */
.service-visual--website {
  background: linear-gradient(145deg, #1b2d3e 0%, #0d1b2a 100%);
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.service-visual--website .service-visual__mockup {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sv-web__devices {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  position: relative;
}

.sv-web__desktop {
  width: 260px;
  background: var(--white);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.sv-web__browser-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.sv-web__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
}

.sv-web__dot:nth-child(1) { background: #ff5f57; }
.sv-web__dot:nth-child(2) { background: #ffbd2e; }
.sv-web__dot:nth-child(3) { background: #28ca42; }

.sv-web__page {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv-web__hero-block {
  height: 48px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  opacity: 0.7;
}

.sv-web__content-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sv-web__content-lines span {
  height: 5px;
  border-radius: 3px;
  background: #eee;
}

.sv-web__content-lines span:nth-child(1) { width: 100%; }
.sv-web__content-lines span:nth-child(2) { width: 85%; }
.sv-web__content-lines span:nth-child(3) { width: 60%; }

.sv-web__grid-blocks {
  display: flex;
  gap: 6px;
}

.sv-web__grid-blocks span {
  flex: 1;
  height: 36px;
  border-radius: 4px;
  background: #f0f0f0;
}

.sv-web__grid-blocks span:nth-child(2) {
  background: rgba(34, 187, 196, 0.15);
}

.sv-web__phone {
  width: 72px;
  background: var(--dark);
  border-radius: 12px 12px 0 0;
  padding: 4px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  position: relative;
}

.sv-web__phone-notch {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 4px auto 6px;
}

.sv-web__phone-page {
  background: var(--white);
  border-radius: 6px 6px 0 0;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-web__phone-hero {
  height: 32px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  opacity: 0.7;
}

.sv-web__phone-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sv-web__phone-lines span {
  height: 4px;
  border-radius: 2px;
  background: #eee;
}

.sv-web__phone-lines span:first-child { width: 100%; }
.sv-web__phone-lines span:last-child { width: 70%; }

/* ---------- Blog Article ---------- */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.blog-article__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.blog-article__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
  flex-shrink: 0;
}

.blog-article__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--coral-10);
  color: var(--coral);
  border-radius: var(--radius-sm);
}

.blog-article__body h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--dark);
}

.blog-article__body h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--dark);
}

.blog-article__body p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.blog-article__body ul,
.blog-article__body ol {
  margin-bottom: 24px;
  padding-left: 0;
}

.blog-article__body ul li,
.blog-article__body ol li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.8;
}

.blog-article__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--coral);
  transform: skewX(var(--skew));
}

.blog-article__body ol {
  counter-reset: ol-counter;
}

.blog-article__body ol li {
  counter-increment: ol-counter;
}

.blog-article__body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--coral);
  font-size: 0.9rem;
}

.blog-article__body blockquote {
  border-left: 3px solid var(--coral);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blog-article__body blockquote p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 0;
  font-size: 1.05rem;
}

.blog-article__body strong {
  color: var(--text);
  font-weight: 700;
}

.blog-article__body code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.88em;
  background: var(--off-white);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--light-gray);
}

.blog-article__body pre {
  background: var(--dark-deep);
  color: var(--text-on-dark);
  padding: 24px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 24px 0;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  line-height: 1.7;
}

.blog-article__body pre code {
  background: none;
  padding: 0;
  border: none;
  color: inherit;
  font-size: inherit;
}

.blog-article__info-box {
  padding: 24px 28px;
  background: var(--teal-10);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal);
  margin: 32px 0;
}

.blog-article__info-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.blog-article__info-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.blog-article__share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  margin-top: 48px;
  border-top: 1px solid var(--light-gray);
}

.blog-article__share-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.blog-article__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--light-gray);
  max-width: 760px;
  margin: 0 auto;
}

.blog-article__nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition-fast), gap var(--transition-fast);
  max-width: 45%;
}

.blog-article__nav-link:hover {
  color: var(--coral);
  gap: 12px;
}

.blog-article__nav-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

/* Geometric decorative elements */
.blog-card__image-placeholder::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
}

.blog-card__image-placeholder::after {
  content: '';
  position: absolute;
  opacity: 0.06;
  transition: transform 0.6s var(--ease-out-expo);
}

.blog-card:hover .blog-card__image-placeholder::before {
  transform: scale(1.1);
  opacity: 0.12;
}

.blog-card:hover .blog-card__image-placeholder::after {
  transform: scale(1.05) rotate(3deg);
}

/* Card 1 — purple/indigo */
.blog-card:nth-child(3n+1) .blog-card__image-placeholder {
  background: linear-gradient(160deg, #2d1b69 0%, #1a1a3e 40%, #0f0f2a 100%);
}

.blog-card:nth-child(3n+1) .blog-card__image-placeholder::before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(250, 108, 100, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
}

.blog-card:nth-child(3n+1) .blog-card__image-placeholder::after {
  width: 120px;
  height: 120px;
  bottom: -20px;
  left: 30%;
  background: rgba(34, 187, 196, 0.4);
  border-radius: 50%;
  opacity: 0.1;
}

/* Card 2 — deep teal/ocean */
.blog-card:nth-child(3n+2) .blog-card__image-placeholder {
  background: linear-gradient(160deg, #0d2b3e 0%, #122a3a 40%, #0a1628 100%);
}

.blog-card:nth-child(3n+2) .blog-card__image-placeholder::before {
  width: 200px;
  height: 200px;
  top: -40px;
  left: 50%;
  background: radial-gradient(circle, rgba(34, 187, 196, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.18;
}

.blog-card:nth-child(3n+2) .blog-card__image-placeholder::after {
  width: 300px;
  height: 2px;
  top: 60%;
  right: -40px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(-8deg);
  border-radius: 0;
  opacity: 1;
}

/* Card 3 — warm/maroon */
.blog-card:nth-child(3n+3) .blog-card__image-placeholder {
  background: linear-gradient(160deg, #4a1a1a 0%, #2a0d0d 40%, #1a0808 100%);
}

.blog-card:nth-child(3n+3) .blog-card__image-placeholder::before {
  width: 180px;
  height: 180px;
  bottom: -60px;
  right: 10%;
  background: radial-gradient(circle, rgba(250, 108, 100, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.2;
}

.blog-card:nth-child(3n+3) .blog-card__image-placeholder::after {
  width: 100px;
  height: 100px;
  top: 20px;
  left: 60%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  background: transparent;
  opacity: 1;
}

/* Badge label */
.blog-card__badge {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover .blog-card__badge {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
}

.blog-card__body {
  padding: 28px;
}

.blog-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.blog-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.2;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* ---------- Project / Portfolio Cards ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.project-card__bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-card__bg,
.project-card.active .project-card__bg {
  transform: scale(1.05);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.3) 50%, transparent 100%);
  transition: background var(--transition-base);
}

.project-card:hover .project-card__overlay,
.project-card.active .project-card__overlay {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.5) 60%, rgba(26, 26, 26, 0.2) 100%);
}

.project-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  transform: translateY(10px);
  transition: transform var(--transition-base);
}

.project-card:hover .project-card__content,
.project-card.active .project-card__content {
  transform: translateY(0);
}

.project-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}

.project-card__title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0;
}

.project-card__desc {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: opacity 0.35s ease 0.05s, max-height 0.4s ease, margin-top 0.3s ease;
}

.project-card:hover .project-card__desc,
.project-card.active .project-card__desc {
  opacity: 1;
  max-height: 150px;
  margin-top: 8px;
}

.project-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: opacity 0.35s ease 0.1s, max-height 0.4s ease, margin-top 0.3s ease;
}

.project-card:hover .project-card__facts,
.project-card.active .project-card__facts {
  opacity: 1;
  max-height: 120px;
  margin-top: 12px;
}

.project-card__fact {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card__fact--client {
  background: rgba(34, 187, 196, 0.15);
  color: rgba(34, 187, 196, 0.9);
  border-color: rgba(34, 187, 196, 0.25);
}

/* ---------- Consulting Project Cards (non-clickable) ---------- */
.project-card--consulting {
  cursor: default;
  aspect-ratio: 16/13;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-card--consulting:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.project-card--consulting .project-card__bg {
  transition: none;
}

.project-card--consulting:hover .project-card__bg,
.project-card--consulting.active .project-card__bg {
  transform: none;
}

.project-card--consulting .project-card__overlay {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.6) 55%, rgba(26, 26, 26, 0.15) 100%);
  transition: none;
}

.project-card--consulting:hover .project-card__overlay,
.project-card--consulting.active .project-card__overlay {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.6) 55%, rgba(26, 26, 26, 0.15) 100%);
}

.project-card--consulting .project-card__content {
  transform: translateY(0);
  transition: none;
}

.project-card--consulting:hover .project-card__content,
.project-card--consulting.active .project-card__content {
  transform: translateY(0);
}

.project-card--consulting .project-card__desc {
  opacity: 1;
  max-height: 200px;
  margin-top: 8px;
  transition: none;
}

.project-card--consulting .project-card__facts {
  opacity: 1;
  max-height: 120px;
  margin-top: 12px;
  transition: none;
}

@media (max-width: 768px) {
  .project-card--consulting {
    aspect-ratio: auto;
    min-height: 380px;
  }
}

/* ---------- Consulting Card CTA Overlay ---------- */
.project-card__cta {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  text-decoration: none;
  border-radius: var(--radius-lg);
}

.project-card--consulting:hover .project-card__cta,
.project-card--consulting.active .project-card__cta {
  opacity: 1;
  pointer-events: auto;
}

.project-card__cta-label {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--white);
  letter-spacing: 0.02em;
}

.project-card__cta-btn {
  display: inline-flex;
  padding: 14px 32px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-md);
  transform: skewX(var(--skew));
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.project-card__cta-btn span {
  transform: skewX(calc(var(--skew) * -1));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.project-card__cta:hover .project-card__cta-btn {
  background: #e05550;
  box-shadow: 0 4px 20px rgba(250, 108, 100, 0.3);
}

/* ---------- Projects Divider ---------- */
.projects-divider {
  padding: clamp(24px, 4vw, 48px) 0;
}

.projects-divider__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.projects-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}

.projects-divider__content {
  text-align: center;
  flex-shrink: 0;
  max-width: 480px;
}

.projects-divider__content .lead {
  font-size: 0.95rem;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .projects-divider__inner {
    flex-direction: column;
  }

  .projects-divider__line {
    width: 60%;
    flex: none;
  }
}

/* ---------- Project Card Visualizations ---------- */

/* --- Cyber Security Transformation --- */
.pj-cyber {
  background: linear-gradient(135deg, #0a1628, #162040, #1a1a2e);
}

.pj-cyber__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pj-cyber__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250,108,100,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,108,100,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pj-cyber__shield {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  animation: pj-cyber-pulse 3s ease-in-out infinite;
}

.pj-cyber__shield svg {
  width: 100%;
  height: 100%;
}

@keyframes pj-cyber-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.pj-cyber__roadmap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}

.pj-cyber__node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  position: relative;
}

.pj-cyber__node--1 {
  background: rgba(250,108,100,0.25);
  border: 1.5px solid rgba(250,108,100,0.5);
  animation: pj-cyber-node 2.5s ease-in-out infinite;
}

.pj-cyber__node--2 {
  background: rgba(34,187,196,0.25);
  border: 1.5px solid rgba(34,187,196,0.5);
  animation: pj-cyber-node 2.5s ease-in-out 0.3s infinite;
}

.pj-cyber__node--3 {
  background: rgba(40,202,66,0.2);
  border: 1.5px solid rgba(40,202,66,0.5);
  animation: pj-cyber-node 2.5s ease-in-out 0.6s infinite;
}

@keyframes pj-cyber-node {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50% { box-shadow: 0 0 12px rgba(255,255,255,0.08); }
}

.pj-cyber__line {
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.25), rgba(255,255,255,0.1));
}

.pj-cyber__tag {
  position: absolute;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.pj-cyber__tag--1 {
  top: 20%;
  right: 12%;
}

.pj-cyber__tag--2 {
  bottom: 28%;
  left: 10%;
}

/* --- Information Protection & DLP --- */
.pj-dlp {
  background: linear-gradient(135deg, #1a0d2e, #2d1b4e, #1a1a2e);
}

.pj-dlp__scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pj-dlp__docs {
  display: flex;
  gap: 12px;
  transform: perspective(600px) rotateY(-5deg);
}

.pj-dlp__doc {
  width: 64px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px;
  position: relative;
  transition: transform 0.6s var(--ease-out-expo);
}

.pj-dlp__doc--1 { animation: pj-dlp-float 4s ease-in-out infinite; }
.pj-dlp__doc--2 { animation: pj-dlp-float 4s ease-in-out 0.5s infinite; }
.pj-dlp__doc--3 { animation: pj-dlp-float 4s ease-in-out 1s infinite; }

@keyframes pj-dlp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.pj-dlp__doc-header {
  width: 60%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 8px;
}

.pj-dlp__doc-lines span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  margin-bottom: 4px;
}

.pj-dlp__doc-lines span:last-child {
  width: 70%;
}

.pj-dlp__label {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

.pj-dlp__label--confidential {
  background: rgba(250,108,100,0.25);
  color: #fa6c64;
  border: 1px solid rgba(250,108,100,0.3);
}

.pj-dlp__label--internal {
  background: rgba(255,193,7,0.2);
  color: #ffc107;
  border: 1px solid rgba(255,193,7,0.3);
}

.pj-dlp__label--public {
  background: rgba(40,202,66,0.2);
  color: #28ca42;
  border: 1px solid rgba(40,202,66,0.3);
}

.pj-dlp__lock {
  position: absolute;
  top: 16%;
  right: 14%;
  width: 40px;
  height: 40px;
  opacity: 0.6;
  animation: pj-cyber-pulse 3s ease-in-out 1s infinite;
}

.pj-dlp__lock svg {
  width: 100%;
  height: 100%;
}

.pj-dlp__badge {
  position: absolute;
  bottom: 22%;
  right: 10%;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(155,89,182,0.15);
  color: rgba(155,89,182,0.7);
  border: 1px solid rgba(155,89,182,0.2);
}

/* --- Identity & Access Management --- */
.pj-iam {
  background: linear-gradient(135deg, #0a2028, #0d2e38, #1a2e3e);
}

.pj-iam__scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pj-iam__users {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pj-iam__user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  min-width: 140px;
}

.pj-iam__user--1 { animation: pj-dlp-float 4s ease-in-out infinite; }
.pj-iam__user--2 { animation: pj-dlp-float 4s ease-in-out 0.4s infinite; }
.pj-iam__user--3 { animation: pj-dlp-float 4s ease-in-out 0.8s infinite; }

.pj-iam__avatar {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.pj-iam__avatar svg {
  width: 100%;
  height: 100%;
}

.pj-iam__level {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}

.pj-iam__level--admin {
  background: rgba(250,108,100,0.2);
  color: #fa6c64;
}

.pj-iam__level--user {
  background: rgba(34,187,196,0.2);
  color: #22BBC4;
}

.pj-iam__level--guest {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
}

.pj-iam__key {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 48px;
  height: 48px;
  animation: pj-iam-rotate 6s linear infinite;
}

.pj-iam__key svg {
  width: 100%;
  height: 100%;
}

@keyframes pj-iam-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pj-iam__tags {
  position: absolute;
  bottom: 22%;
  left: 10%;
  display: flex;
  gap: 6px;
}

.pj-iam__tags span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 3px;
  background: rgba(34,187,196,0.1);
  color: rgba(34,187,196,0.6);
  border: 1px solid rgba(34,187,196,0.15);
}

/* --- ISMS Governance & Compliance --- */
.pj-isms {
  background: linear-gradient(135deg, #1a0d2e, #2a1540, #1e1a30);
}

.pj-isms__scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pj-isms__dashboard {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.pj-isms__kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pj-isms__kpi span {
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.pj-isms__kpi-bar {
  width: 22px;
  height: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.pj-isms__kpi-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(34,187,196,0.6), rgba(34,187,196,0.25));
  border-radius: 3px;
}

.pj-isms__kpi--1 .pj-isms__kpi-fill { animation: pj-isms-bar 3s ease-in-out infinite; }
.pj-isms__kpi--2 .pj-isms__kpi-fill { animation: pj-isms-bar 3s ease-in-out 0.4s infinite; }
.pj-isms__kpi--3 .pj-isms__kpi-fill { animation: pj-isms-bar 3s ease-in-out 0.8s infinite; }
.pj-isms__kpi--4 .pj-isms__kpi-fill { animation: pj-isms-bar 3s ease-in-out 1.2s infinite; }

@keyframes pj-isms-bar {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.pj-isms__badge {
  position: absolute;
  top: 14%;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(34,187,196,0.1);
  border: 1px solid rgba(34,187,196,0.2);
  border-radius: 4px;
  animation: pj-aip-pulse 3s ease-in-out infinite;
}

.pj-isms__badge span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(34,187,196,0.7);
}

.pj-isms__checklist {
  position: absolute;
  bottom: 18%;
  left: 8%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pj-isms__check {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}

.pj-isms__check span {
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
}

.pj-isms__check--done span {
  color: rgba(40,202,66,0.7);
}

.pj-isms__check-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  animation: pj-dlp-float 3s ease-in-out infinite;
}

/* --- AIP & Azure RMS --- */
.pj-aip {
  background: linear-gradient(135deg, #0d1a2e, #162d50, #1a2640);
}

.pj-aip__scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pj-aip__docs {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.pj-aip__doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 10px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  min-width: 80px;
}

.pj-aip__doc--1 { animation: pj-dlp-float 4s ease-in-out infinite; }
.pj-aip__doc--2 { animation: pj-dlp-float 4s ease-in-out 0.5s infinite; }
.pj-aip__doc--3 { animation: pj-dlp-float 4s ease-in-out 1s infinite; }

.pj-aip__doc-icon {
  width: 28px;
  height: 28px;
}

.pj-aip__doc-icon svg {
  width: 100%;
  height: 100%;
}

.pj-aip__label {
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

.pj-aip__label--secret {
  background: rgba(239,68,68,0.2);
  color: #ef4444;
}

.pj-aip__label--confidential {
  background: rgba(245,158,11,0.2);
  color: #f59e0b;
}

.pj-aip__label--general {
  background: rgba(59,130,246,0.15);
  color: rgba(59,130,246,0.7);
}

.pj-aip__shield {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 44px;
  height: 44px;
  animation: pj-aip-pulse 3s ease-in-out infinite;
}

.pj-aip__shield svg {
  width: 100%;
  height: 100%;
}

@keyframes pj-aip-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.pj-aip__tags {
  position: absolute;
  bottom: 20%;
  left: 10%;
  display: flex;
  gap: 6px;
}

.pj-aip__tags span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 3px;
  background: rgba(59,130,246,0.1);
  color: rgba(59,130,246,0.6);
  border: 1px solid rgba(59,130,246,0.15);
}

/* --- KRITIS Asset Management --- */
.pj-kritis {
  background: linear-gradient(135deg, #0a1a14, #122a1e, #1a2e28);
}

.pj-kritis__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 16px;
}

.pj-kritis__infra {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 8px;
}

.pj-kritis__tower,
.pj-kritis__plane {
  width: 40px;
  height: 40px;
  opacity: 0.7;
}

.pj-kritis__tower svg,
.pj-kritis__plane svg {
  width: 100%;
  height: 100%;
}

.pj-kritis__plane {
  animation: pj-kritis-fly 5s ease-in-out infinite;
}

@keyframes pj-kritis-fly {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(4px) translateY(-4px); }
}

.pj-kritis__checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pj-kritis__check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.pj-kritis__check span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.pj-kritis__check--done span {
  color: rgba(40,202,66,0.7);
}

.pj-kritis__check-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  animation: pj-cyber-pulse 2s ease-in-out infinite;
}

.pj-kritis__badge-wrap {
  position: absolute;
  top: 16%;
  right: 10%;
}

.pj-kritis__cert-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(250,108,100,0.15);
  color: rgba(250,108,100,0.8);
  border: 1px solid rgba(250,108,100,0.25);
}

/* --- IT & OT Maturity Assessment --- */
.pj-maturity {
  background: linear-gradient(135deg, #1a1408, #2a2010, #1e1a0e);
}

.pj-maturity__scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pj-maturity__chart {
  position: relative;
  width: 200px;
  height: 120px;
}

.pj-maturity__axis--y {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.pj-maturity__axis--x {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.pj-maturity__bars {
  position: absolute;
  bottom: 1px;
  left: 8px;
  right: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 2px;
}

.pj-maturity__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  position: relative;
  min-width: 20px;
  animation: pj-maturity-grow 1.5s var(--ease-out-expo) forwards;
  transform-origin: bottom;
}

.pj-maturity__bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

.pj-maturity__bar--1 {
  height: 75%;
  background: linear-gradient(to top, rgba(250,108,100,0.3), rgba(250,108,100,0.6));
  animation-delay: 0s;
}

.pj-maturity__bar--2 {
  height: 45%;
  background: linear-gradient(to top, rgba(34,187,196,0.3), rgba(34,187,196,0.6));
  animation-delay: 0.1s;
}

.pj-maturity__bar--3 {
  height: 60%;
  background: linear-gradient(to top, rgba(155,89,182,0.3), rgba(155,89,182,0.6));
  animation-delay: 0.2s;
}

.pj-maturity__bar--4 {
  height: 85%;
  background: linear-gradient(to top, rgba(255,193,7,0.3), rgba(255,193,7,0.6));
  animation-delay: 0.3s;
}

.pj-maturity__bar--5 {
  height: 55%;
  background: linear-gradient(to top, rgba(40,202,66,0.3), rgba(40,202,66,0.6));
  animation-delay: 0.4s;
}

@keyframes pj-maturity-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.pj-maturity__target {
  position: absolute;
  left: 0;
  right: 0;
  top: 25%;
  height: 1px;
  border-top: 1.5px dashed rgba(250,108,100,0.3);
}

.pj-maturity__score {
  position: absolute;
  top: 16%;
  right: 8%;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pj-maturity__score-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,193,7,0.7);
  line-height: 1;
}

.pj-maturity__score-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
}

/* --- Digital Data Transformation --- */
.pj-datatrans {
  background: linear-gradient(135deg, #120a28, #1a1040, #0d1b2a);
}

.pj-datatrans__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 10px;
}

.pj-datatrans__flow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pj-datatrans__node {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pj-datatrans__node svg {
  width: 28px;
  height: 28px;
}

.pj-datatrans__node--source {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.pj-datatrans__node--transform {
  background: rgba(34,187,196,0.1);
  border: 1px solid rgba(34,187,196,0.2);
  animation: pj-cyber-pulse 3s ease-in-out infinite;
}

.pj-datatrans__node--target {
  background: rgba(250,108,100,0.1);
  border: 1px solid rgba(250,108,100,0.2);
}

.pj-datatrans__arrow {
  display: flex;
  gap: 3px;
  align-items: center;
}

.pj-datatrans__arrow span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: pj-datatrans-dot 1.5s ease-in-out infinite;
}

.pj-datatrans__arrow span:nth-child(2) {
  animation-delay: 0.2s;
  background: rgba(255,255,255,0.25);
}

.pj-datatrans__arrow span:nth-child(3) {
  animation-delay: 0.4s;
  background: rgba(255,255,255,0.35);
}

@keyframes pj-datatrans-dot {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.pj-datatrans__labels {
  display: flex;
  gap: 36px;
  margin-top: 4px;
}

.pj-datatrans__labels span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.pj-datatrans__change-badge {
  position: absolute;
  bottom: 22%;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
  background: rgba(34,187,196,0.1);
  color: rgba(34,187,196,0.6);
  border: 1px solid rgba(34,187,196,0.15);
}

/* --- Third Party Cyber Risk Assessment --- */
.pj-risk {
  background: linear-gradient(135deg, #1a0a0a, #2a1218, #1a1a2e);
}

.pj-risk__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 14px;
}

.pj-risk__matrix {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  padding-left: 14px;
  padding-bottom: 14px;
}

.pj-risk__matrix-row {
  display: flex;
  gap: 3px;
}

.pj-risk__cell {
  width: 40px;
  height: 28px;
  border-radius: 3px;
}

.pj-risk__cell--low {
  background: rgba(40,202,66,0.15);
  border: 1px solid rgba(40,202,66,0.2);
}

.pj-risk__cell--medium {
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.2);
}

.pj-risk__cell--high {
  background: rgba(250,108,100,0.15);
  border: 1px solid rgba(250,108,100,0.2);
}

.pj-risk__cell--critical {
  background: rgba(220,38,38,0.2);
  border: 1px solid rgba(220,38,38,0.25);
}

.pj-risk__matrix-label-y {
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 0.4rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  white-space: nowrap;
}

.pj-risk__matrix-label-x {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.4rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  white-space: nowrap;
}

.pj-risk__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pj-cyber-pulse 3s ease-in-out infinite;
}

.pj-risk__dot--1 {
  top: 8px;
  right: 16px;
  background: #fa6c64;
  box-shadow: 0 0 8px rgba(250,108,100,0.5);
}

.pj-risk__dot--2 {
  top: 38px;
  left: 38px;
  background: #ffc107;
  box-shadow: 0 0 8px rgba(255,193,7,0.4);
  animation-delay: 0.5s;
}

.pj-risk__dot--3 {
  bottom: 22px;
  left: 24px;
  background: #28ca42;
  box-shadow: 0 0 8px rgba(40,202,66,0.4);
  animation-delay: 1s;
}

.pj-risk__vendors {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pj-risk__vendor {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
}

.pj-risk__vendor-score {
  margin-left: auto;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.45rem;
  padding: 1px 6px;
  border-radius: 3px;
}

.pj-risk__vendor-score--ok {
  background: rgba(40,202,66,0.15);
  color: #28ca42;
}

.pj-risk__vendor-score--warn {
  background: rgba(250,108,100,0.15);
  color: #fa6c64;
}

/* --- SASE Rollout Strategy --- */
.pj-sase {
  background: linear-gradient(135deg, #0a1820, #102030, #0d1b2a);
}

.pj-sase__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

.pj-sase__cloud {
  position: relative;
  width: 72px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pj-sase__cloud svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.pj-sase__cloud-label {
  position: relative;
  z-index: 1;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(34,187,196,0.8);
  margin-top: 6px;
}

.pj-sase__connections {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: 20px;
  position: relative;
}

.pj-sase__conn {
  width: 1px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pj-sase__conn::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(34,187,196,0.5));
  animation: pj-sase-flow 1.5s linear infinite;
}

.pj-sase__conn--2::after { animation-delay: 0.3s; }
.pj-sase__conn--3::after { animation-delay: 0.6s; }

@keyframes pj-sase-flow {
  0% { top: -50%; }
  100% { top: 100%; }
}

.pj-sase__endpoints {
  display: flex;
  gap: 20px;
}

.pj-sase__endpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}

.pj-sase__endpoint span {
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.pj-sase__tags {
  position: absolute;
  bottom: 18%;
  display: flex;
  gap: 6px;
}

.pj-sase__tags span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 3px;
  background: rgba(34,187,196,0.1);
  color: rgba(34,187,196,0.55);
  border: 1px solid rgba(34,187,196,0.15);
}

/* --- Anti-Phishing Awareness Campaign --- */
.pj-phishing {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0d1b2a);
}

.pj-phishing__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 14px;
}

.pj-phishing__mail {
  width: 180px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px;
  animation: pj-dlp-float 4s ease-in-out infinite;
}

.pj-phishing__mail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pj-phishing__mail-from {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pj-phishing__mail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pj-phishing__mail-line {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}

.pj-phishing__warning-icon {
  flex-shrink: 0;
  animation: pj-cyber-pulse 2s ease-in-out infinite;
}

.pj-phishing__mail-subject {
  height: 4px;
  width: 75%;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 8px;
}

.pj-phishing__mail-body span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  margin-bottom: 4px;
}

.pj-phishing__mail-link {
  margin-top: 8px;
  position: relative;
  display: inline-flex;
}

.pj-phishing__mail-btn {
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 3px;
  background: rgba(250,108,100,0.2);
  color: rgba(250,108,100,0.7);
  border: 1px solid rgba(250,108,100,0.25);
}

.pj-phishing__mail-strike {
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 1.5px;
  background: #fa6c64;
  transform: rotate(-8deg);
}

.pj-phishing__stats-row {
  display: flex;
  gap: 8px;
}

.pj-phishing__stat-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.pj-phishing__stat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Data at Rest Scanning --- */
.pj-scanning {
  background: linear-gradient(135deg, #0d1a14, #122a1e, #0a1628);
}

.pj-scanning__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

.pj-scanning__files {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 180px;
}

.pj-scanning__file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
}

.pj-scanning__file--1 { animation: pj-dlp-float 4s ease-in-out infinite; }
.pj-scanning__file--2 { animation: pj-dlp-float 4s ease-in-out 0.3s infinite; }
.pj-scanning__file--3 { animation: pj-dlp-float 4s ease-in-out 0.6s infinite; }

.pj-scanning__file-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.pj-scanning__file-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.pj-scanning__file-name {
  display: block;
  height: 3px;
  width: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}

.pj-scanning__file-result {
  margin-left: auto;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 3px;
}

.pj-scanning__file-result--sensitive {
  background: rgba(250,108,100,0.15);
  color: #fa6c64;
}

.pj-scanning__file-result--ok {
  background: rgba(40,202,66,0.15);
  color: #28ca42;
}

.pj-scanning__progress {
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pj-scanning__progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.pj-scanning__progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, #22BBC4, #3dd4dd);
  border-radius: 2px;
  animation: pj-scanning-progress 3s ease-in-out infinite;
}

@keyframes pj-scanning-progress {
  0% { width: 20%; }
  50% { width: 85%; }
  100% { width: 20%; }
}

.pj-scanning__progress-label {
  font-size: 0.45rem;
  color: rgba(34,187,196,0.6);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pj-scanning__badge {
  position: absolute;
  top: 14%;
  right: 10%;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(34,187,196,0.1);
  color: rgba(34,187,196,0.55);
  border: 1px solid rgba(34,187,196,0.15);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--coral);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  transform: skewX(var(--skew));
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* ---------- Contact Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.dark-section .form-label {
  color: var(--text-on-dark);
}

.form-input,
.form-textarea {
  padding: 14px 18px;
  font-size: 0.95rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-10);
}

.dark-section .form-input,
.dark-section .form-textarea {
  background: var(--dark-surface);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.dark-section .form-input:focus,
.dark-section .form-textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(250, 108, 100, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---------- Clients / Trust ---------- */
.clients-section {
  padding: 56px 0 48px;
  background: var(--off-white);
}

.clients-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--medium-gray);
  margin-bottom: 28px;
  font-weight: 400;
}

.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: grayscale(100%);
}

.client-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .clients-section {
    padding: 40px 0 32px;
  }

  .clients-row {
    gap: 24px 32px;
  }

  .client-logo img {
    height: 28px;
  }
}

/* ---------- Page Header (for inner pages) ---------- */
.page-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 108, 100, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 108, 100, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header h1 {
  position: relative;
  margin-bottom: 16px;
}

.page-header .lead {
  position: relative;
  max-width: 640px;
  color: var(--text-on-dark);
}

/* ---------- Content Sections ---------- */
.content-block {
  margin-bottom: 48px;
}

.content-block h3 {
  margin-bottom: 16px;
  color: var(--dark);
}

.content-block p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.dark-section .content-block h3 {
  color: var(--white);
}

.dark-section .content-block p {
  color: var(--text-on-dark);
}

/* Feature List */
.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.dark-section .feature-item {
  background: var(--dark-surface);
}

.dark-section .feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.feature-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--coral);
  margin-top: 2px;
}

.feature-item__content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature-item__content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Glossary ---------- */
.glossary-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--coral);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 24px;
  margin-top: 48px;
}

.glossary-letter:first-child {
  margin-top: 0;
}

.glossary-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.glossary-item__term {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.glossary-item__def {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- Karriere ---------- */
.karriere-feature {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.karriere-feature .feature-item__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.karriere-feature p {
  margin-top: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---------- Karriere / Job Listings ---------- */
.job-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.job-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.job-card__info h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.job-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.job-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-deep);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  color: var(--text-on-dark);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer__link:hover {
  color: var(--coral);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
  flex-shrink: 0;
}

.footer__contact-item a {
  color: var(--text-on-dark);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--coral);
}

.footer__note {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  font-size: 0.75rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

.footer__note p {
  margin: 0;
  max-width: 640px;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: var(--medium-gray);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--coral);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-coral { color: var(--coral); }
.text-teal { color: var(--teal); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* ---------- Project Detail ---------- */
.project-detail__hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.project-detail__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail__hero-image--gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.1em;
}

.project-detail__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 64px;
}

.project-detail__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-detail__meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}

.project-detail__meta-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.project-detail__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.project-detail__content h3 {
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--dark);
}

.project-detail__content h3:first-child {
  margin-top: 0;
}

.project-detail__content p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.project-detail__content p:last-child {
  margin-bottom: 0;
}

.project-detail__content ul {
  margin-bottom: 24px;
  padding-left: 0;
}

.project-detail__content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.project-detail__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--coral);
  transform: skewX(var(--skew));
}

.project-detail__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.project-detail__sidebar-card {
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.project-detail__sidebar-card h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.project-detail__tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-detail__tech-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  color: var(--text);
  transform: skewX(var(--skew));
}

.project-detail__tech-tag span {
  display: inline-block;
  transform: skewX(calc(var(--skew) * -1));
}

.project-detail__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--light-gray);
}

.project-detail__nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.project-detail__nav-link:hover {
  color: var(--coral);
  gap: 12px;
}

.project-detail__nav-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}

/* ==========================================================================
   PRODUCT VISUAL THUMBNAILS — Animated App Prototypes
   ========================================================================== */

/* ---------- WePhish: Phishing Inbox Simulation ---------- */
.pv-wephish__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
}

.pv-wephish__inbox-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pv-wephish__inbox-dots {
  display: flex;
  gap: 4px;
}

.pv-wephish__inbox-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pv-wephish__inbox-dots span:nth-child(1) { background: #ff5f57; }
.pv-wephish__inbox-dots span:nth-child(2) { background: #ffbd2e; }
.pv-wephish__inbox-dots span:nth-child(3) { background: #28ca42; }

.pv-wephish__inbox-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  flex: 1;
}

.pv-wephish__inbox-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--coral);
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pvBadgePulse 2s ease-in-out infinite;
}

@keyframes pvBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); box-shadow: 0 0 8px rgba(250, 108, 100, 0.5); }
}

.pv-wephish__emails {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pv-wephish__email {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--ease-out-expo);
}

.pv-wephish__email--phish {
  background: rgba(250, 108, 100, 0.06);
  border-color: rgba(250, 108, 100, 0.15);
  animation: pvPhishSlideIn 0.8s var(--ease-out-expo) 0.5s both;
}

@keyframes pvPhishSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pv-wephish__email-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pv-wephish__email-avatar svg {
  width: 16px;
  height: 16px;
}

.pv-wephish__email-body {
  flex: 1;
  min-width: 0;
}

.pv-wephish__email-sender {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pv-wephish__warning-tag {
  font-size: 0.5rem;
  background: var(--coral);
  color: white;
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  animation: pvWarningBlink 1.5s ease-in-out infinite;
}

@keyframes pvWarningBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pv-wephish__email-subject {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.pv-wephish__email-line {
  height: 3px;
  width: 60%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-top: 4px;
}

.pv-wephish__shield-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: pvShieldPulse 2.5s ease-in-out infinite;
}

.pv-wephish__shield-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes pvShieldPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 6px rgba(250, 108, 100, 0.4)); }
}

/* Stats with animated ring charts */
.pv-wephish__stats {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pv-wephish__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pv-wephish__stat-ring {
  position: relative;
  width: 40px;
  height: 40px;
}

.pv-wephish__stat-ring svg {
  width: 100%;
  height: 100%;
}

.pv-wephish__stat-ring-fill {
  animation: pvRingFillCoral 1.5s var(--ease-out-expo) 1s forwards;
}

.pv-wephish__stat-ring-fill--teal {
  animation: pvRingFillTeal 1.5s var(--ease-out-expo) 1.3s forwards;
}

.pv-wephish__stat-ring-fill--green {
  animation: pvRingFillGreen 1.5s var(--ease-out-expo) 1.6s forwards;
}

@keyframes pvRingFillCoral {
  to { stroke-dashoffset: 75; }
}

@keyframes pvRingFillTeal {
  to { stroke-dashoffset: 31; }
}

@keyframes pvRingFillGreen {
  to { stroke-dashoffset: 8.8; }
}

.pv-wephish__stat-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.pv-wephish__stat-label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* ---------- Wefairs: Live Event Platform ---------- */
.pv-wefairs__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 8px;
}

.pv-wefairs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pv-wefairs__header-logo {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pv-wefairs__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4444;
  animation: pvLivePulse 1.2s ease-in-out infinite;
}

@keyframes pvLivePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(255, 68, 68, 0); }
}

.pv-wefairs__user-avatars {
  display: flex;
  margin-left: auto;
}

.pv-wefairs__user-avatars span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  font-weight: 700;
  color: white;
  border: 2px solid #0d1b2a;
  margin-left: -6px;
}

.pv-wefairs__user-avatars span:first-child {
  margin-left: 0;
}

.pv-wefairs__body {
  flex: 1;
  display: flex;
  gap: 8px;
  min-height: 0;
}

.pv-wefairs__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.pv-wefairs__video {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pv-wefairs__video-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.pv-wefairs__video-wave span {
  width: 3px;
  border-radius: 2px;
  background: var(--teal);
  opacity: 0.6;
  animation: pvAudioWave 1s ease-in-out infinite;
}

.pv-wefairs__video-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.pv-wefairs__video-wave span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.pv-wefairs__video-wave span:nth-child(3) { height: 6px; animation-delay: 0.2s; }
.pv-wefairs__video-wave span:nth-child(4) { height: 18px; animation-delay: 0.15s; }
.pv-wefairs__video-wave span:nth-child(5) { height: 10px; animation-delay: 0.25s; }
.pv-wefairs__video-wave span:nth-child(6) { height: 16px; animation-delay: 0.05s; }
.pv-wefairs__video-wave span:nth-child(7) { height: 8px; animation-delay: 0.3s; }
.pv-wefairs__video-wave span:nth-child(8) { height: 12px; animation-delay: 0.2s; }

@keyframes pvAudioWave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.pv-wefairs__video-speaker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-wefairs__video-speaker svg {
  width: 20px;
  height: 20px;
}

.pv-wefairs__video-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.pv-wefairs__booths {
  display: flex;
  gap: 6px;
}

.pv-wefairs__booth {
  flex: 1;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.4s var(--ease-out-expo);
}

.pv-wefairs__booth:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.pv-wefairs__booth-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-wefairs__booth-icon svg {
  width: 14px;
  height: 14px;
}

.pv-wefairs__booth-line {
  height: 3px;
  width: 70%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.pv-wefairs__booth--1 { animation: pvBoothFadeIn 0.6s var(--ease-out-expo) 0.3s both; }
.pv-wefairs__booth--2 { animation: pvBoothFadeIn 0.6s var(--ease-out-expo) 0.5s both; }
.pv-wefairs__booth--3 { animation: pvBoothFadeIn 0.6s var(--ease-out-expo) 0.7s both; }

@keyframes pvBoothFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Chat sidebar */
.pv-wefairs__chat {
  width: 90px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.pv-wefairs__chat-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pv-wefairs__chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-end;
}

.pv-wefairs__chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.pv-wefairs__chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.pv-wefairs__chat-bubble {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 6px;
  border-radius: 4px;
  line-height: 1.3;
}

.pv-wefairs__chat-msg--1 { animation: pvChatIn 0.5s var(--ease-out-expo) 1s both; }
.pv-wefairs__chat-msg--2 { animation: pvChatIn 0.5s var(--ease-out-expo) 2.5s both; }
.pv-wefairs__chat-msg--3 { animation: pvChatIn 0.5s var(--ease-out-expo) 4s both; }

@keyframes pvChatIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Wenovate: Innovation Competition ---------- */
.pv-wenovate__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 8px;
}

.pv-wenovate__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pv-wenovate__topbar-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pv-wenovate__topbar-phase {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.pv-wenovate__ideas {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pv-wenovate__idea {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--ease-out-expo);
}

.pv-wenovate__idea--1 {
  background: rgba(250, 108, 100, 0.05);
  border-color: rgba(250, 108, 100, 0.12);
  animation: pvIdeaSlide 0.6s var(--ease-out-expo) 0.3s both;
}

.pv-wenovate__idea--2 {
  animation: pvIdeaSlide 0.6s var(--ease-out-expo) 0.5s both;
}

.pv-wenovate__idea--3 {
  animation: pvIdeaSlide 0.6s var(--ease-out-expo) 0.7s both;
}

@keyframes pvIdeaSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.pv-wenovate__idea-rank {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--coral);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.pv-wenovate__idea-content {
  flex: 1;
  min-width: 0;
}

.pv-wenovate__idea-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-wenovate__idea-team {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.pv-wenovate__idea-team span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.38rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.pv-wenovate__idea-bar-wrap {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-top: 4px;
  overflow: hidden;
}

.pv-wenovate__idea-bar {
  height: 100%;
  border-radius: 2px;
  width: 0;
}

.pv-wenovate__idea-bar--1 {
  background: var(--coral);
  animation: pvBarFill1 1.2s var(--ease-out-expo) 1s forwards;
}

.pv-wenovate__idea-bar--2 {
  background: var(--teal);
  animation: pvBarFill2 1.2s var(--ease-out-expo) 1.2s forwards;
}

.pv-wenovate__idea-bar--3 {
  background: #9b59b6;
  animation: pvBarFill3 1.2s var(--ease-out-expo) 1.4s forwards;
}

@keyframes pvBarFill1 { to { width: 84%; } }
@keyframes pvBarFill2 { to { width: 68%; } }
@keyframes pvBarFill3 { to { width: 55%; } }

.pv-wenovate__idea-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.pv-wenovate__idea-stars {
  display: flex;
  gap: 1px;
}

.pv-wenovate__idea-stars svg {
  width: 10px;
  height: 10px;
}

.pv-wenovate__idea-pts {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

/* Jury voting dots */
.pv-wenovate__jury {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pv-wenovate__jury-label {
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

.pv-wenovate__jury-dots {
  display: flex;
  gap: 4px;
  flex: 1;
}

.pv-wenovate__jury-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--ease-out-expo);
}

.pv-wenovate__jury-dot--done {
  background: var(--coral);
  opacity: 0.7;
}

.pv-wenovate__jury-dot--active {
  background: var(--teal);
  animation: pvJuryPulse 1.5s ease-in-out infinite;
}

@keyframes pvJuryPulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(34, 187, 196, 0.3); }
  50% { opacity: 1; box-shadow: 0 0 0 4px rgba(34, 187, 196, 0); }
}

.pv-wenovate__jury-count {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* ==========================================================================
   PRODUCT CARD THUMBNAILS (Homepage compact versions)
   ========================================================================== */

/* ---------- PC-WePhish: Compact Inbox ---------- */
.pc-wephish {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 10px;
  justify-content: center;
}

.pc-wephish__emails {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pc-wephish__email {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-wephish__email--phish {
  background: rgba(250, 108, 100, 0.06);
  border-color: rgba(250, 108, 100, 0.15);
  animation: pvPhishSlideIn 0.8s var(--ease-out-expo) 0.5s both;
}

.pc-wephish__email--dim {
  opacity: 0.4;
}

.pc-wephish__email-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pc-wephish__email-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pc-wephish__email-lines span {
  display: block;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.pc-wephish__phish-tag {
  font-size: 0.45rem;
  font-weight: 700;
  background: var(--coral);
  color: white;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  animation: pvWarningBlink 1.5s ease-in-out infinite;
  white-space: nowrap;
}

.pc-wephish__shield {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  animation: pvShieldPulse 2.5s ease-in-out infinite;
}

.pc-wephish__stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 8px 0 0;
}

.pc-wephish__stat-ring {
  position: relative;
  width: 36px;
  height: 36px;
}

.pc-wephish__stat-ring svg {
  width: 100%;
  height: 100%;
}

.pc-wephish__stat-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.pc-wephish__ring--coral {
  animation: pcRingCoral 1.5s var(--ease-out-expo) 1s forwards;
}

.pc-wephish__ring--teal {
  animation: pcRingTeal 1.5s var(--ease-out-expo) 1.3s forwards;
}

.pc-wephish__ring--green {
  animation: pcRingGreen 1.5s var(--ease-out-expo) 1.6s forwards;
}

@keyframes pcRingCoral { to { stroke-dashoffset: 68; } }
@keyframes pcRingTeal { to { stroke-dashoffset: 28; } }
@keyframes pcRingGreen { to { stroke-dashoffset: 8; } }

/* ---------- PC-Wefairs: Compact Live Event ---------- */
.pc-wefairs {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
}

.pc-wefairs__top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}

.pc-wefairs__live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4444;
  animation: pvLivePulse 1.2s ease-in-out infinite;
}

.pc-wefairs__live-text {
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.pc-wefairs__avatars {
  margin-left: auto;
  display: flex;
}

.pc-wefairs__avatars span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.38rem;
  font-weight: 700;
  color: white;
  border: 1.5px solid #0d1b2a;
  margin-left: -4px;
}

.pc-wefairs__avatars span:first-child {
  margin-left: 0;
}

.pc-wefairs__stage {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.pc-wefairs__speaker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-wefairs__speaker svg {
  width: 16px;
  height: 16px;
}

.pc-wefairs__wave {
  display: flex;
  align-items: center;
  gap: 2px;
}

.pc-wefairs__wave span {
  width: 2px;
  border-radius: 1px;
  background: var(--teal);
  opacity: 0.5;
  animation: pvAudioWave 1s ease-in-out infinite;
}

.pc-wefairs__wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.pc-wefairs__wave span:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.pc-wefairs__wave span:nth-child(3) { height: 5px; animation-delay: 0.2s; }
.pc-wefairs__wave span:nth-child(4) { height: 14px; animation-delay: 0.15s; }
.pc-wefairs__wave span:nth-child(5) { height: 7px; animation-delay: 0.25s; }
.pc-wefairs__wave span:nth-child(6) { height: 11px; animation-delay: 0.05s; }

.pc-wefairs__booths {
  display: flex;
  gap: 5px;
}

.pc-wefairs__booth {
  flex: 1;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- PC-Wenovate: Compact Ideas Ranking ---------- */
.pc-wenovate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
  justify-content: center;
}

.pc-wenovate__ideas {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pc-wenovate__idea {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-wenovate__idea--1 {
  background: rgba(250, 108, 100, 0.05);
  border-color: rgba(250, 108, 100, 0.12);
  animation: pvIdeaSlide 0.6s var(--ease-out-expo) 0.3s both;
}

.pc-wenovate__idea--2 {
  animation: pvIdeaSlide 0.6s var(--ease-out-expo) 0.5s both;
}

.pc-wenovate__idea--3 {
  animation: pvIdeaSlide 0.6s var(--ease-out-expo) 0.7s both;
}

.pc-wenovate__rank {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--coral);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.pc-wenovate__idea-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.pc-wenovate__idea-line {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.pc-wenovate__idea-bar-wrap {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.pc-wenovate__idea-bar {
  height: 100%;
  width: 0;
  background: var(--bar-color, var(--coral));
  border-radius: 2px;
  animation: pcBarFill 1.2s var(--ease-out-expo) 1s forwards;
}

@keyframes pcBarFill {
  to { width: var(--bar-w, 50%); }
}

.pc-wenovate__stars {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}

.pc-wenovate__stars svg {
  width: 8px;
  height: 8px;
}

.pc-wenovate__jury {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  padding: 6px 0 0;
}

.pc-wenovate__jury-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.pc-wenovate__jury-dot--done {
  background: var(--coral);
  opacity: 0.7;
}

.pc-wenovate__jury-dot--active {
  background: var(--teal);
  animation: pvJuryPulse 1.5s ease-in-out infinite;
}

.pc-wenovate__jury-label {
  font-size: 0.45rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .products-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero__geometric {
    display: none;
  }

  .sv-web__desktop {
    width: 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--reverse {
    direction: ltr;
  }

  .service-visual {
    aspect-ratio: 16/10;
  }

  .sv-shop__content {
    flex-direction: column;
  }

  .sv-shop__product-img {
    width: 100%;
    height: 60px;
  }

  .sv-console__body {
    font-size: 0.65rem;
  }

  .grid-2,
  .grid-3,
  .services-grid,
  .products-grid,
  .testimonials-grid,
  .blog-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .karriere-feature {
    padding: 28px 20px;
  }

  div.project-card {
    aspect-ratio: 16/12;
  }

  .project-card__facts {
    display: none;
  }

  .project-card__content {
    padding: 24px;
  }

  .project-card__desc {
    font-size: 0.8rem;
  }

  .project-card__fact {
    font-size: 0.65rem;
  }

  .project-detail__meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .project-detail__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-detail__sidebar {
    position: static;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-member:last-child:nth-child(odd) {
    max-width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__scroll {
    display: none;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .team-member__avatar {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }

  .team-member__bio {
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 3rem;
  }
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: 80px;
}

.error-page__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.error-page__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 108, 100, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 108, 100, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.error-page__bg-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.error-page__bg-gradient--coral {
  background: var(--coral);
  top: -200px;
  right: -100px;
}

.error-page__bg-gradient--teal {
  background: var(--teal);
  bottom: -200px;
  left: -100px;
  opacity: 0.08;
}

.error-page__diagonal {
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 120%;
  background: linear-gradient(135deg, rgba(250, 108, 100, 0.06), transparent 70%);
  transform: skewX(var(--skew));
}

.error-page__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-page__code {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
  margin-bottom: 32px;
}

.error-page__digit {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 1;
  color: var(--white);
  opacity: 0.12;
  display: block;
  transform: skewX(var(--skew));
}

.error-page__digit--accent {
  color: var(--coral);
  opacity: 1;
  position: relative;
}

.error-page__digit--accent::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 60%;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
  transform: translateX(-50%) skewX(calc(var(--skew) * -1));
}

.error-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--white);
}

.error-page__text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-on-dark);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 48px;
}

.error-page__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Geometric decoration */
.error-page__geometric {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}

@media (min-width: 1100px) {
  .error-page__geometric {
    display: block;
  }
}

.error-page__logo-graphic {
  width: 280px;
  height: auto;
  opacity: 0.08;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  animation: errorLogoFloat 6s ease-in-out infinite;
}

@keyframes errorLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@media (max-width: 600px) {
  .error-page__actions {
    flex-direction: column;
  }
}
