:root {
  --navy: #0f172a;
  --navy-soft: #17213a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --teal: #14b8a6;
  --teal-bright: #20d3c2;
  --ink: #111827;
  --slate: #475569;
  --muted: #64748b;
  --line: #dbe4ee;
  --soft: #f1f5f9;
  --paper: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}img {
  display: block;
  max-width: 100%;
}a {
  color: inherit;
  text-decoration: none;
}button,
input {
  font: inherit;
}svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

  .fall-number {
    display: inline-block;
    opacity: 0;
    animation: fallIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--delay, 0s) + 0.1s);
  }
@keyframes heroGradientShift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.22;
  }
  50% {
    transform: translate3d(2%, 1%, 0) scale(1.04);
    opacity: 0.34;
  }
  100% {
    transform: translate3d(-1%, 2%, 0) scale(1.02);
    opacity: 0.28;
  }
}

@keyframes fallIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -28px, 0) scale(0.92);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 8px, 0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes driftAccent {
  0% {
    transform: translate3d(-18px, 0, 0);
  }
  50% {
    transform: translate3d(18px, 0, 0);
  }
  100% {
    transform: translate3d(-18px, 0, 0);
  }
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}.section {
  position: relative;
  padding: 120px 0;
}

/* Hero accent elements */
.hero-accents {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.accent {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.48;
  transform: translate3d(0,0,0);
  transition: transform 2400ms cubic-bezier(.2,.9,.2,1), opacity 0.8s ease;
}
.accent-top-right {
  right: 28px;
  top: 28px;
  background: radial-gradient(circle at 30% 30%, rgba(20,184,166,0.72), rgba(20,184,166,0.32) 45%, transparent 58%);
}
.accent-bottom-left {
  left: 28px;
  bottom: 28px;
  background: radial-gradient(circle at 70% 70%, rgba(255,193,7,0.72), rgba(255,193,7,0.32) 45%, transparent 58%);
}

/* state classes applied by JS */
.accent--swap {
  transition: transform 900ms cubic-bezier(.2,.9,.2,1), right 900ms ease, left 900ms ease, top 900ms ease, bottom 900ms ease;
}
.accent--hidden { opacity: 0; }

.page-shell {
  padding: 140px 0 120px;
}

.page-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.page-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.16), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: #0f6e67;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-card h1 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-card h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.15rem;
}

.page-card p,
.page-card li {
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.8;
}

.page-card ul {
  padding-left: 20px;
}

.page-card a {
  color: var(--blue);
  font-weight: 700;
}

body.js-enabled .section,
body.js-enabled .site-footer {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.js-enabled .section.is-visible,
body.js-enabled .site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}.skip-link:focus {
  transform: translateY(0);
}.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 78px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 228, 238, 0.75);
  backdrop-filter: blur(18px);
}.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}.brand {
  width: 178px;
  flex: 0 0 auto;
}.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
}.main-nav > a:not(.nav-cta) {
  position: relative;
  color: #334155;
  transition: color 0.25s ease;
}.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--teal);
  transition: right 0.25s ease;
}.main-nav > a:not(.nav-cta):hover {
  color: var(--navy);
}.main-nav > a:not(.nav-cta):hover::after {
  right: 0;
}.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 10px;
  transition: transform 0.25s ease, background 0.25s ease;
}.nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}.nav-toggle,
.nav-button {
  display: none;
}.hero {
  position: relative;
  min-height: 880px;
  padding: 160px 0 42px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(248, 250, 252, 0.97), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 75% 15%, rgba(20, 184, 166, 0.12), transparent 30%);
}.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}.hero::after {
  content: "";
  position: absolute;
  inset: -10% -8% auto;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.18), transparent 32%),
              radial-gradient(circle at 80% 0%, rgba(20, 184, 166, 0.16), transparent 30%);
  filter: blur(24px);
  animation: heroGradientShift 14s ease-in-out infinite alternate;
  opacity: 0.35;
  z-index: -1;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}.hero-copy {
  animation: heroIn 0.8s ease both;
}.hero-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--delay, 0s);
}.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.eyebrow {
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #0f6e67;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 999px;
}.hero h1 {
  max-width: 670px;
  color: var(--navy);
  font-size: clamp(3rem, 5.25vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}.hero h1 span {
  color: var(--teal);
}.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}.button svg {
  width: 20px;
  height: 20px;
}.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #1854cf);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}.button-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.28);
}.button-primary:active {
  transform: scale(0.98);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}.button-secondary:hover {
  color: var(--blue);
  background: var(--white);
  transform: translateY(-3px);
}.browser-dots i,
.preview-browser-bar i {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
}.browser-dots i:nth-child(1),
.preview-browser-bar i:nth-child(1) { background: #fb7185; }.browser-dots i:nth-child(2),
.preview-browser-bar i:nth-child(2) { background: #fbbf24; }.browser-dots i:nth-child(3),
.preview-browser-bar i:nth-child(3) { background: #34d399; }.industry-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding: 18px 24px;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(219, 228, 238, 0.9);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}.industry-strip > span {
  color: var(--navy);
  font-weight: 800;
}.industry-strip > div {
  position: relative;
}.industry-strip > div::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  vertical-align: middle;
  background: var(--teal);
  border-radius: 50%;
}.section-heading {
  margin-bottom: 54px;
}.section-heading h2,
.services-intro h2,
.about-copy h2,
.contact-copy h2 {
  margin-top: 13px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}.section-heading p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--slate);
  font-size: 1.02rem;
}.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}.centered p {
  margin-inline: auto;
}.benefits {
  background: var(--white);
}.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}.benefit-card {
  position: relative;
  min-height: 310px;
  padding: 30px 26px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform, opacity;
}.reveal-card {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}.reveal-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}.benefit-card:hover {
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-8px);
}.benefit-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #172a49);
  border-color: transparent;
}.card-number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: rgba(100, 116, 139, 0.22);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}.featured .card-number {
  color: rgba(255, 255, 255, 0.11);
}.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 64px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(219, 228, 238, 0.9);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}.featured .icon-box {
  color: var(--white);
  background: rgba(20, 184, 166, 0.16);
  border-color: rgba(32, 211, 194, 0.24);
}.icon-box svg {
  width: 25px;
  height: 25px;
}.benefit-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
}.benefit-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}.featured h3 {
  color: var(--white);
}.featured p {
  color: #cbd5e1;
}.projects {
  background: var(--paper);
}.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
}.split-heading p {
  padding-bottom: 6px;
}.project-list {
  display: grid;
  gap: 34px;
}.project-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 520px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}.project-card.reverse {
  grid-template-columns: 0.88fr 1.12fr;
}.project-card.reverse .project-preview {
  order: 2;
}.project-preview {
  min-width: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}.preview-kks {
  background:
    radial-gradient(circle at 15% 18%, rgba(37, 99, 235, 0.36), transparent 28%),
    linear-gradient(145deg, #0c1d35, #0a1423);
}.preview-friseur {
  background:
    radial-gradient(circle at 85% 12%, rgba(215, 170, 94, 0.24), transparent 27%),
    linear-gradient(145deg, #171717, #050505);
}.preview-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 14px;
  background: #eef2f7;
  border-radius: 14px 14px 0 0;
}.preview-browser-bar span {
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
  font-size: 0.62rem;
}.kks-mini-site,
.friseur-mini-site {
  position: relative;
  min-height: 350px;
  padding: 28px 30px;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
}.kks-mini-site {
  color: var(--white);
  background: linear-gradient(135deg, #09213a, #123f70);
}.kks-mini-head,
.friseur-mini-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}.kks-mini-head b {
  padding: 5px 8px;
  color: #0d3970;
  background: var(--white);
  border-radius: 5px;
}.kks-mini-head span {
  margin-right: auto;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}.kks-mini-head i,
.friseur-mini-head i {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 99px;
}.kks-mini-copy,
.friseur-mini-copy {
  position: relative;
  z-index: 2;
  max-width: 70%;
  padding-top: 62px;
}.kks-mini-copy small,
.friseur-mini-copy small {
  color: #65b9ff;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}.kks-mini-copy h3,
.friseur-mini-copy h3 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.03;
}.kks-mini-copy p,
.friseur-mini-copy p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}.kks-mini-copy b,
.friseur-mini-copy b {
  display: block;
  width: 94px;
  height: 24px;
  margin-top: 20px;
  background: #1f8ef1;
  border-radius: 5px;
}.kks-mini-shape {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 250px;
  height: 300px;
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(255,255,255,.15) 35% 42%, transparent 42%),
    radial-gradient(circle at 50% 50%, #2f95e8, #15589d 58%, transparent 59%);
  border-radius: 45% 55% 35% 65%;
  transform: rotate(-10deg);
}.friseur-mini-site {
  color: var(--white);
  background: #0b0b0b;
}.friseur-mini-head b {
  margin-right: auto;
  color: #dfbc79;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}.friseur-mini-copy small {
  color: #dfbc79;
}.friseur-mini-copy h3 span {
  color: #dfbc79;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}.friseur-mini-copy b {
  background: #c99b4b;
}.friseur-mini-lines {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 330px;
  height: 500px;
  opacity: 0.38;
  background: repeating-linear-gradient(112deg, transparent 0 22px, #c99b4b 23px 25px);
  transform: rotate(8deg);
  mask-image: linear-gradient(to left, black, transparent 90%);
}.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 50px;
}.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.project-meta span {
  padding: 6px 10px;
  color: #0f6e67;
  background: rgba(20, 184, 166, 0.09);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}.project-info h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}.project-info > p {
  margin-top: 15px;
  color: var(--slate);
  font-size: 0.93rem;
}.project-info ul,
.price-card ul {
  list-style: none;
}.project-info ul {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
}.project-info li,
.price-card li {
  position: relative;
  padding-left: 24px;
}.project-info li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 800;
}.text-link span {
  transition: transform 0.2s ease;
}.text-link:hover span {
  transform: translate(3px, -3px);
}.services {
  overflow: hidden;
  background: var(--paper);
}.services::after {
  content: "AYAT";
  position: absolute;
  right: -35px;
  bottom: -70px;
  color: rgba(15, 23, 42, 0.025);
  font-size: 13rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  pointer-events: none;
}.services-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}.services-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}.services-intro p {
  margin-top: 20px;
  color: var(--slate);
}.services-intro .button {
  margin-top: 28px;
}.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}.service-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}.service-list article > span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}.service-list h3 {
  color: var(--navy);
  font-size: 1.2rem;
}.service-list p {
  max-width: 640px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}.pricing {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #080f1d, #111d35 62%, #0d2639);
}.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}.pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}.pricing-orb-one {
  top: -180px;
  left: -180px;

.hero::after {
  animation: heroGradientShift 14s ease-in-out infinite alternate, driftAccent 4s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
  width: 440px;
  height: 440px;
  background: rgba(37, 99, 235, 0.2);
}.pricing-orb-two {
  right: -160px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  background: rgba(20, 184, 166, 0.18);
}.pricing .container {
  position: relative;
  z-index: 1;
}.light-heading h2 {
  color: var(--white);
}.light-heading p {
  color: #b8c4d5;
}.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 34px 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}.price-card:hover {
  border-color: rgba(32, 211, 194, 0.35);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-7px);
}.price-card.popular {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  transform: translateY(-12px);
}.price-card.popular:hover {
  background: var(--white);
  transform: translateY(-18px);
}.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 15px;
  color: var(--navy);
  background: var(--teal-bright);
  border-radius: 0 0 10px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
}.price-top {
  min-height: 114px;
}.package-name {
  color: var(--teal-bright);
  font-size: 1.24rem;
  font-weight: 800;
}.popular .package-name {
  color: var(--blue);
}.price-top p {
  margin-top: 9px;
  color: #aebbd0;
  font-size: 0.86rem;
}.popular .price-top p {
  color: var(--muted);
}.price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}.popular .price {
  border-color: var(--line);
}.price small {
  margin-top: 9px;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}.price strong {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}.popular .price strong {
  color: var(--navy);
}.price-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
  color: #d5deeb;
  font-size: 0.82rem;
}.popular ul {
  color: #334155;
}.price-button {
  margin-top: auto;
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}.price-button:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}.price-button.filled {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}.pricing-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  color: #d5deeb;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}.pricing-callout {
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  color: #e7f5ef;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
}.pricing-callout .note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal-bright);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 800;
}.pricing-callout strong {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}.pricing-callout p {
  margin: 0 0 16px;
  color: #cde9dc;
  font-size: 0.88rem;
  line-height: 1.7;
}.pricing-callout .button-secondary {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
}
.pricing-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  color: #d5deeb;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}.note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--navy);
  background: var(--teal-bright);
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 800;
}.pricing-note strong {
  color: var(--white);
}.pricing-note p {
  margin-top: 3px;
  color: #aebbd0;
  font-size: 0.82rem;
}.process {
  background: var(--paper);
}.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}.process-grid::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, #cbd5e1 12%, #cbd5e1 88%, transparent);
}.process-grid article {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
}.process-number {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--white);
  background: var(--navy);
  border: 8px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  font-size: 0.76rem;
  font-weight: 800;
}.process-grid article:nth-child(2) .process-number,
.process-grid article:nth-child(4) .process-number {
  background: var(--teal);
}.process-grid h3 {
  color: var(--navy);
  font-size: 1.08rem;
}.process-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}.about {
  background: var(--white);
}.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 90px;
}.about-image-wrap {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
}.about-feature-card {
  position: relative;
  z-index: 1;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  border: 1px solid rgba(219, 228, 238, 0.85);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.about-feature-card .section-label {
  display: inline-flex;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 14px;
  border-radius: 999px;
}
.about-feature-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}
.about-feature-card p {
  margin: 0;
  color: var(--slate);
}
.about-feature-card .about-lead {
  color: #334155;
  font-size: 1.08rem;
}
.about-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.about-feature-list li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-weight: 700;
}
.about-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  font-weight: 900;
}
.about-pattern {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 180px;
  height: 180px;
  opacity: 0.65;
  background-image: radial-gradient(var(--teal) 2px, transparent 2px);
  background-size: 14px 14px;
}.about-image-wrap::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 24px;
}.about-location {
  position: absolute;
  right: -34px;
  bottom: 46px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 800;
}.about-location svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}.about-copy {
  display: none;
}.about-copy > p {
  margin-top: 18px;
  color: var(--slate);
}.about-copy .about-lead {
  margin-top: 23px;
  color: #334155;
  font-size: 1.08rem;
}.about-values {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}.about-values div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}.about-values span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
}.about-values strong {
  color: var(--navy);
  font-size: 0.9rem;
}.contact {
  padding: 0 0 110px;
  background: var(--white);
}.contact-shell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  padding: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.3), transparent 28%),
    linear-gradient(135deg, #0a1324, #14223d 60%, #0d333d);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}.contact-copy .section-label {
  color: var(--teal-bright);
}.contact-copy h2 {
  color: var(--white);
}.contact-copy > p {
  margin-top: 18px;
  color: #b8c4d5;
}.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #d5deeb;
  font-size: 0.78rem;
  font-weight: 700;
}.availability span {
  width: 9px;
  height: 9px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.13);
}.contact-options {
  display: grid;
  gap: 12px;
}.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}.contact-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(32, 211, 194, 0.36);
  transform: translateX(5px);
}.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--teal-bright);
  background: rgba(32, 211, 194, 0.1);
  border-radius: 13px;
}.contact-icon svg {
  width: 24px;
  height: 24px;
}.contact-card small,
.contact-card strong,
.contact-card span {
  display: block;
}.contact-card small {
  color: #94a3b8;
  font-size: 0.65rem;
}.contact-card strong {
  margin-top: 1px;
  color: var(--white);
  font-size: 0.95rem;
}.contact-card span {
  margin-top: 1px;
  color: #b8c4d5;
  font-size: 0.72rem;
}.contact-card > b {
  color: var(--teal-bright);
  font-size: 1.2rem;
}.site-footer {
  color: #aebbd0;
  background: #070d18;
}.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 1fr;
  gap: 70px;
  padding: 70px 0 54px;
}.footer-brand img {
  width: 190px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}.footer-brand p {
  max-width: 430px;
  margin-top: 15px;
  font-size: 0.86rem;
}.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}.footer-column h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.86rem;
}.footer-column a {
  width: fit-content;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--teal-bright);
}.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  align-items: center;
  flex-wrap: wrap;
}.footer-bottom div {
  display: flex;
  gap: 20px;
}.footer-cta {
  display: flex;
  justify-content: center;
  padding: 24px 0 8px;
}
.footer-cta .button {
  width: fit-content;
  padding: 14px 26px;
  font-size: 0.95rem;
}
@keyframes heroIn{from { opacity: 0; transform: translateY(24px); }to { opacity: 1; transform: translateY(0); }}@keyframes heroVisualIn{from { opacity: 0; transform: translateX(30px) scale(0.98); }to { opacity: 1; transform: translateX(0) scale(1); }}@media (max-width: 1080px){.main-nav {
    gap: 18px;
    font-size: 0.82rem;
  }.hero-grid {
    gap: 24px;
  }.benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }.project-card,
  .project-card.reverse {
    grid-template-columns: 1fr 1fr;
  }.project-preview {
    padding: 28px;
  }.project-info {
    padding: 42px 34px;
  }.contact-shell {
    padding: 52px;
    gap: 45px;
  }}@media (max-width: 900px){.site-header {
    height: 72px;
  }.brand {
    width: 155px;
  }.nav-button {
    position: relative;
    z-index: 1002;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 11px;
  }.nav-button span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 99px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }.main-nav {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    display: flex;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }.main-nav a {
    padding: 12px;
  }.main-nav > a:not(.nav-cta)::after {
    display: none;
  }.nav-cta {
    margin-top: 6px;
    text-align: center;
  }.nav-toggle:checked ~ .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }.nav-toggle:checked + .nav-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }.nav-toggle:checked + .nav-button span:nth-child(2) {
    opacity: 0;
  }.nav-toggle:checked + .nav-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }.hero {
    min-height: auto;
    padding-top: 130px;
  }.hero-grid {
    grid-template-columns: 1fr;
  }.hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }.eyebrow {
    justify-content: center;
  }.hero h1,
  .hero-text {
    margin-inline: auto;
  }.hero-actions,
  .hero-trust {
    justify-content: center;
  }.industry-strip {
    flex-wrap: wrap;
    justify-content: center;
  }.industry-strip > span {
    flex-basis: 100%;
    text-align: center;
  }.split-heading,
  .services-grid,
  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }.split-heading {
    gap: 8px;
  }.project-card,
  .project-card.reverse {
    grid-template-columns: 1fr;
  }.project-card.reverse .project-preview {
    order: 0;
  }.project-preview {
    min-height: 500px;
  }.services-grid {
    gap: 50px;
  }.services-intro {
    position: static;
  }.pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }.price-card,
  .price-card.popular,
  .price-card.popular:hover {
    min-height: auto;
    transform: none;
  }.process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }.process-grid::before {
    display: none;
  }.about-grid {
    gap: 70px;
  }.about-image-wrap {
    width: min(100%, 500px);
  }.about-copy {
    max-width: none;
  }.contact-shell {
    padding: 54px;
  }.footer-grid {
    grid-template-columns: 1.4fr 0.8fr;
  }.footer-column:last-child {
    grid-column: 1 / -1;
  }}@media (max-width: 640px){.container {
    width: min(calc(100% - 28px), var(--container));
  }.section {
    padding: 84px 0;
  }.hero {
    padding-top: 112px;
  }.hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }.hero-actions {
    flex-direction: column;
  }.hero-actions .button {
    width: 100%;
  }.industry-strip {
    margin-top: 28px;
    padding: 16px;
    gap: 10px 16px;
  }.benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }.benefit-card {
    min-height: 270px;
  }.icon-box {
    margin-bottom: 44px;
  }.project-preview {
    min-height: 400px;
    padding: 16px;
  }.kks-mini-site,
  .friseur-mini-site {
    min-height: 300px;
    padding: 20px;
  }.kks-mini-copy,
  .friseur-mini-copy {
    max-width: 78%;
    padding-top: 45px;
  }.kks-mini-copy h3,
  .friseur-mini-copy h3 {
    font-size: 2rem;
  }.kks-mini-head i,
  .friseur-mini-head i {
    width: 18px;
  }.project-info {
    padding: 36px 24px 40px;
  }.service-list article {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }.price-card {
    padding: 30px 22px;
  }.pricing-note {
    align-items: flex-start;
  }.about-image-wrap img {
    height: 500px;
  }.about-location {
    right: -4px;
    bottom: 24px;
  }.contact {
    padding-bottom: 70px;
  }.contact-shell {
    width: calc(100% - 20px);
    gap: 38px;
    padding: 40px 20px;
    border-radius: 24px;
  }.contact-card {
    grid-template-columns: 42px 1fr auto;
    padding: 14px;
  }.contact-icon {
    width: 42px;
    height: 42px;
  }.contact-card span {
    word-break: break-word;
  }.footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 54px;
  }.footer-column:last-child {
    grid-column: auto;
  }.footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }}@media (prefers-reduced-motion: reduce){*,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }}/* =========================================================
   HERO V2 — editorialer, weniger "Template", mobil stabil
   ========================================================= */
.hero-v2 {
  min-height: auto;
  padding: 150px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 16%, rgba(20, 184, 166, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 64%, #f4f8fb 100%);
}.hero-v2::before {
  opacity: 0.15;
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.65) 58%, transparent 92%);
}.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}.hero-grid-v2 {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}.hero-copy-v2 {
  padding: 14px 0 28px;
}.hero-eyebrow {
  margin-bottom: 22px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 0;
  letter-spacing: 0.105em;
  display: flex;
  width: fit-content;
  margin: 0 auto 24px;
  justify-content: center;
  text-align: center;

}.hero-copy-v2 h1 {
  max-width: 720px;
  font-size: clamp(3.25rem, 5.3vw, 6.15rem);
  line-height: 0.95;
  letter-spacing: -0.072em;
  text-wrap: balance;
}.hero-copy-v2 .hero-accent {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  color: var(--teal);
  z-index: 0;
}.hero-copy-v2 .hero-accent::after {
  content: none;
  position: absolute;
  left: -1%;
  right: -2%;
  bottom: 0.04em;
  z-index: -1;
  height: 0.25em;
  background: linear-gradient(90deg, var(--teal-bright), rgba(32, 211, 194, 0.45));
  border-radius: 999px 10px 999px 14px;
  transform: rotate(-1.1deg);
}.hero-copy-v2 .hero-text {
  max-width: 630px;
  margin-top: 30px;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}.hero-copy-v2 .hero-actions {
  margin-top: 30px;
}.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.34);
}.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
}.proof-item strong {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
}.proof-item span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}.proof-line {
  width: 1px;
  height: 34px;
  background: var(--line);
}.industry-strip-v2 {
  margin-top: 60px;
  border-radius: 10px 24px 10px 24px;
}@media (max-width: 1080px){.hero-grid-v2 {
    grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
    gap: 34px;
  }}@media (max-width: 900px){.hero-v2 {
    padding-top: 116px;
  }.hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 46px;
  }.hero-copy-v2 {
    max-width: 780px;
    margin-inline: auto;
    text-align: left;
  }.hero-copy-v2 h1,
  .hero-copy-v2 .hero-text {
    margin-inline: 0;
  }.hero-copy-v2 .hero-actions {
    justify-content: flex-start;
  }}@media (max-width: 640px){.site-header {
    background: rgba(255,255,255,.96);
  }.brand {
    width: 138px;
  }.brand img {
    height: 50px;
  }.main-nav {
    left: 14px;
    right: 14px;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
  }.hero-v2 {
    padding: 102px 0 28px;
  }.hero-grid-v2 {
    gap: 34px;
  }.hero-copy-v2 {
    padding: 0;
  }.hero-eyebrow {
    justify-content: flex-start;
    margin-bottom: 18px;
    font-size: .68rem;
  }.hero-copy-v2 h1 {
    font-size: clamp(2.55rem, 12.6vw, 3.72rem);
    line-height: .98;
    letter-spacing: -.062em;
  }.hero-copy-v2 .hero-accent {
    margin-top: 7px;
  }.hero-copy-v2 .hero-text {
    margin-top: 22px;
    font-size: .96rem;
    line-height: 1.6;
  }.hero-copy-v2 .hero-actions {
    gap: 10px;
    margin-top: 25px;
  }.hero-copy-v2 .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }.hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    margin-top: 27px;
    padding-top: 19px;
  }.proof-line {
    display: none;
  }.proof-item {
    align-items: flex-start;
  }.proof-item-wide {
    grid-column: 1 / -1;
  }.proof-item strong {
    min-width: 42px;
    font-size: 1.28rem;
  }.industry-strip-v2 {
    justify-content: flex-start;
    margin-top: 30px;
    padding: 15px 14px;
    border-radius: 10px 18px 10px 18px;
  }.industry-strip-v2 > span {
    text-align: left;
  }.industry-strip-v2 > div {
    width: calc(50% - 8px);
    font-size: .74rem;
  }.project-card,
  .project-card.reverse {
    border-radius: 22px;
  }.project-preview {
    min-height: 350px;
  }.contact-card {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }.contact-card strong,
  .contact-card span,
  .contact-card small {
    overflow-wrap: anywhere;
  }}@media (max-width: 390px){.hero-copy-v2 h1 {
    font-size: 2.42rem;
  }}/* Zusätzliche Sicherheit gegen horizontales Scrollen auf kleinen Geräten */
html, body {
  max-width: 100%;
  overflow-x: clip;
}/* =========================================================
   HERO V3 — cleanes, reduziertes Konzeptmotiv
   ========================================================= */
.hero-studio {
  position: relative;
  min-width: 0;
}.studio-canvas {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #0b1526 0%, #12233d 72%, #0d3840 125%);
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}.studio-canvas::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(32, 211, 194, 0.16), transparent 68%);
  pointer-events: none;
}.studio-canvas::after {
  content: none;
}.studio-browser {
  position: absolute;
  top: 42px;
  left: 32px;
  z-index: 3;
  width: calc(100% - 82px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}.studio-browser-bar {
  display: grid;
  grid-template-columns: auto 1fr 18px;
  align-items: center;
  gap: 14px;
  height: 39px;
  padding: 0 14px;
  color: #64748b;
  background: #edf2f7;
  border-bottom: 1px solid #dce5ee;
}.studio-dots { display: flex; gap: 5px; }.studio-dots i { width: 7px; height: 7px; background: #cbd5e1; border-radius: 50%; }.studio-dots i:nth-child(1) { background: #fb7185; }.studio-dots i:nth-child(2) { background: #fbbf24; }.studio-dots i:nth-child(3) { background: #34d399; }.studio-browser-bar > span {
  justify-self: center;
  width: min(68%, 250px);
  padding: 4px 12px;
  overflow: hidden;
  color: #64748b;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 0.52rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}.studio-browser-bar > b {
  width: 14px;
  height: 2px;
  background: #94a3b8;
  box-shadow: 0 -5px 0 #94a3b8, 0 5px 0 #94a3b8;
}.studio-site {
  position: relative;
  min-height: 398px;
  padding: 24px 26px 22px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 83% 40%, rgba(32, 211, 194, 0.22), transparent 24%), linear-gradient(125deg, #0b172a 0%, #122541 66%, #0c4a50 135%);
}.studio-site::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -175px;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(32, 211, 194, 0.28), transparent 67%);
}.studio-site-nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }.studio-site-logo, .studio-phone-brand { display: grid; color: #fff; font-size: 0.82rem; font-weight: 900; line-height: 0.82; }.studio-site-logo span, .studio-phone-brand span { margin-top: 5px; color: var(--teal-bright); font-size: 0.34rem; letter-spacing: 0.16em; }.studio-site-links { display: flex; gap: 9px; }.studio-site-links i { width: 28px; height: 3px; background: rgba(255,255,255,.38); border-radius: 99px; }.studio-site-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(130px, 0.72fr);
  align-items: center;
  gap: 22px;
  min-height: 250px;
  padding: 44px 0 32px;
}.studio-site-copy { display: grid; align-content: center; }.studio-site-copy small { color: #7ee9de; font-size: 0.44rem; font-weight: 900; letter-spacing: 0.18em; }.studio-site-copy strong { max-width: 360px; margin-top: 12px; font-size: clamp(1.55rem, 2.8vw, 2.5rem); line-height: 1.03; letter-spacing: -0.055em; }.studio-site-copy p { max-width: 340px; margin-top: 12px; color: #cad5e3; font-size: 0.68rem; line-height: 1.55; }.studio-site-buttons { display: flex; gap: 9px; margin-top: 19px; }.studio-site-buttons b, .studio-site-buttons i { display: block; height: 22px; border-radius: 5px; }.studio-site-buttons b { width: 92px; background: var(--teal); }.studio-site-buttons i { width: 68px; border: 1px solid rgba(255,255,255,.38); }.studio-site-art { position: relative; min-height: 190px; }.studio-site-art span, .studio-site-art i, .studio-site-art b { position: absolute; display: block; }.studio-site-art span { inset: 5px 0 0 8px; background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(32,211,194,.28)); border: 1px solid rgba(255,255,255,.18); border-radius: 48% 52% 38% 62% / 40% 36% 64% 60%; transform: rotate(8deg); }.studio-site-art i { top: 24px; left: 28px; width: 76%; height: 76%; border: 2px solid rgba(255,255,255,.38); border-radius: 50%; }.studio-site-art b { right: 14%; bottom: 17%; width: 54%; height: 54%; background: linear-gradient(145deg, var(--teal-bright), #187d86); clip-path: polygon(50% 0%, 100% 36%, 82% 100%, 18% 100%, 0 36%); transform: rotate(-10deg); }.studio-site-trust { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }.studio-site-trust > div { display: grid; gap: 3px; min-height: 53px; padding: 10px 11px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; backdrop-filter: blur(10px); }.studio-site-trust span { color: var(--teal-bright); font-size: 0.42rem; font-weight: 900; }.studio-site-trust b { font-size: 0.57rem; }.studio-phone {
  position: absolute;
  right: 22px;
  bottom: 34px;
  z-index: 5;
  width: 150px;
  height: 296px;
  padding: 8px;
  background: #050b14;
  border: 2px solid #2b3a4f;
  border-radius: 27px;
  box-shadow: 0 24px 48px rgba(0,0,0,.36);
}.studio-phone-notch { position: absolute; top: 13px; left: 50%; z-index: 2; width: 54px; height: 13px; background: #050b14; border-radius: 999px; transform: translateX(-50%); }.studio-phone-screen { height: 100%; padding: 37px 15px 16px; overflow: hidden; color: #fff; background: radial-gradient(circle at 70% 28%, rgba(32,211,194,.22), transparent 29%), linear-gradient(160deg, #12213a, #0d1728 68%, #0b4648 140%); border-radius: 20px; }.studio-phone-screen > small { display: block; margin-top: 43px; color: var(--teal-bright); font-size: .44rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }.studio-phone-screen > strong { display: block; margin-top: 8px; font-size: 1.13rem; line-height: 1.08; letter-spacing: -.04em; }.studio-phone-screen > p { margin-top: 8px; color: #cbd5e1; font-size: .53rem; }.studio-phone-screen > b { display: block; width: 100%; height: 27px; margin-top: 18px; background: var(--teal); border-radius: 6px; }.studio-phone-lines { display: grid; gap: 7px; margin-top: 16px; }.studio-phone-lines i { height: 5px; background: rgba(255,255,255,.14); border-radius: 99px; }.studio-phone-lines i:nth-child(2) { width: 82%; }.studio-phone-lines i:nth-child(3) { width: 64%; }.studio-process {
  position: absolute;
  left: 32px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.58);
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}.studio-process i { width: 14px; height: 1px; background: var(--teal-bright); }@media (max-width: 1080px){.studio-canvas { min-height: 560px; }.studio-browser { width: calc(100% - 70px); }}@media (max-width: 900px){.hero-studio { width: min(100%, 760px); margin-inline: auto; }.studio-canvas { min-height: 600px; }}@media (max-width: 640px){.studio-canvas { min-height: 470px; border-radius: 22px; }.studio-browser { top: 28px; left: 14px; width: calc(100% - 28px); border-radius: 12px; }.studio-browser-bar { grid-template-columns: auto 1fr 13px; gap: 8px; height: 31px; padding: 0 9px; }.studio-dots { gap: 4px; }.studio-dots i { width: 5px; height: 5px; }.studio-browser-bar > span { width: 72%; padding: 3px 8px; font-size: .43rem; }.studio-site { min-height: 290px; padding: 16px 15px 15px; }.studio-site-logo { font-size: .65rem; }.studio-site-links { gap: 6px; }.studio-site-links i { width: 19px; }.studio-site-hero { grid-template-columns: minmax(0,1fr) 82px; gap: 10px; min-height: 178px; padding: 27px 0 20px; }.studio-site-copy small { font-size: .34rem; }.studio-site-copy strong { margin-top: 8px; font-size: clamp(1.15rem, 6.2vw, 1.7rem); }.studio-site-copy p { max-width: 220px; margin-top: 8px; font-size: .52rem; }.studio-site-buttons { margin-top: 13px; }.studio-site-buttons b, .studio-site-buttons i { height: 16px; }.studio-site-buttons b { width: 67px; }.studio-site-buttons i { width: 46px; }.studio-site-art { min-height: 115px; }.studio-site-art i { top: 18px; left: 16px; }.studio-site-trust { gap: 5px; }.studio-site-trust > div { min-height: 42px; padding: 7px 6px; }.studio-site-trust span { font-size: .33rem; }.studio-site-trust b { font-size: .43rem; line-height: 1.2; }.studio-phone { right: 12px; bottom: 28px; width: 108px; height: 216px; padding: 6px; border-radius: 21px; }.studio-phone-notch { top: 10px; width: 41px; height: 10px; }.studio-phone-screen { padding: 29px 11px 11px; border-radius: 15px; }.studio-phone-brand { font-size: .58rem; }.studio-phone-screen > small { margin-top: 27px; font-size: .34rem; }.studio-phone-screen > strong { margin-top: 6px; font-size: .79rem; }.studio-phone-screen > p { font-size: .41rem; }.studio-phone-screen > b { height: 20px; margin-top: 12px; }.studio-phone-lines { gap: 5px; margin-top: 10px; }.studio-phone-lines i { height: 4px; }.studio-process { left: 14px; bottom: 8px; gap: 5px; font-size: .36rem; }.studio-process i { width: 8px; }}@media (max-width: 390px){.studio-canvas { min-height: 450px; }.studio-site-hero { grid-template-columns: minmax(0,1fr) 68px; }.studio-site-copy p { display: none; }.studio-site-art { min-height: 96px; }.studio-phone { width: 100px; height: 202px; }}@media (max-width: 600px){.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }.hero-proof .proof-line {
    display: none;
  }.hero-proof .proof-item,
  .hero-proof .proof-item-wide {
    display: flex;
    grid-column: auto;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 2px;
    text-align: center;
  }.hero-proof .proof-item strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
    white-space: nowrap;
  }.hero-proof .proof-item span {
    display: block;
    width: 100%;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: anywhere;
    hyphens: auto;
  }}@media (max-width: 380px){.hero-proof {
    gap: 8px;
  }.hero-proof .proof-item strong {
    font-size: 1.4rem;
  }.hero-proof .proof-item span {
    font-size: 0.6rem;
  }}/* Große Webseiten-Vorschau auf Handys ausblenden */
@media (max-width: 640px) {
  .hero-studio {
    display: none;
  }

  .hero-grid-v2 {
    gap: 0;
  }
}