/*
Theme Name: Lukas Webmodernisierung
Theme URI: https://lukasperic.de/
Author: Lukas Peric
Description: Modernes WordPress-Theme für Website-Modernisierung, Webdesign, Hosting und laufende Betreuung.
Version: 1.2.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: lukas-webmodernisierung
*/

:root {
  --ink: #080b10;
  --ink-soft: #121821;
  --paper: #f5f7fa;
  --white: #fff;
  --muted: #697485;
  --line: rgba(8, 18, 32, .12);
  --blue: #2667ff;
  --blue-dark: #174bd0;
  --blue-light: #91b6ff;
  --cyan: #57d7ff;
  --green: #38c989;
  --radius: 28px;
  --radius-small: 18px;
  --shadow: 0 28px 80px rgba(8, 18, 32, .11);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }
::selection { color: var(--white); background: var(--blue); }
.site-shell { overflow: clip; }
.container { width: min(1240px, calc(100% - 44px)); margin: 0 auto; }
.section { padding: 125px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}
.screen-reader-text:focus {
  z-index: 10000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--white);
  background: var(--blue);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font: 700 .76rem/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 2px; content: ""; background: currentColor; }
.section-dark .eyebrow { color: var(--blue-light); }
.section-title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 680;
  line-height: .98;
  letter-spacing: -.06em;
}
.section-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}
.section-copy p { margin: 0 0 18px; }
.section-copy p:last-child { margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.split-heading .section-copy { margin-bottom: 4px; }

/* Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  right: 0;
  left: 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 8px 9px 8px 18px;
  border: 1px solid rgba(8,18,32,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 50px rgba(8,18,32,.09);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: .75rem;
  font-weight: 800;
}
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: .9rem; }
.brand-copy small { color: var(--muted); font-size: .66rem; }
.nav-links, .nav-menu { display: flex; align-items: center; gap: 16px; }
.nav-links { margin-left: 20px; font-size: .76rem; font-weight: 650; }
.nav-menu { margin: 0; padding: 0; list-style: none; }
.nav-menu li { margin: 0; }
.nav-links a { transition: color .2s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--blue); }
.nav-cta,
.nav-menu > li:last-child > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--blue);
  font-weight: 750;
}
.nav-menu > .menu-item-has-children { position: relative; display: flex; align-items: center; gap: 4px; }
.submenu-toggle {
  display: grid;
  width: 27px;
  height: 27px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}
.submenu-toggle span { margin-top: -3px; transition: transform .2s ease; }
.submenu-open > .submenu-toggle span { transform: rotate(180deg); }
.sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: max-content;
  min-width: 220px;
  margin: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  visibility: hidden;
  opacity: 0;
  list-style: none;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  transform: translate(-50%, -8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.submenu-open > .sub-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.sub-menu a { display: block; padding: 10px 12px; border-radius: 9px; }
.sub-menu a:hover { background: var(--paper); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}
.mobile-sticky-cta { display: none; }

/* Buttons */
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 14px 35px rgba(38,103,255,.24); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.7); }
.button-dark { color: var(--white); background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); }
.center-action { display: flex; justify-content: center; margin-top: 48px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 155px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(38,103,255,.18), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f2f6ff 72%, var(--paper) 100%);
}
.hero-glow {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  opacity: .5;
  background: radial-gradient(circle, rgba(87,215,255,.23), transparent 66%);
  animation: hero-drift 9s ease-in-out infinite alternate;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(38,103,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,103,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.hero-sparkles {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: .2;
  background: var(--blue);
  box-shadow: 0 0 13px 3px rgba(38,103,255,.28);
  animation: sparkle-pulse 3.8s ease-in-out infinite;
}
.hero-sparkles span::before,
.hero-sparkles span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(38,103,255,.58), transparent);
  transform: translate(-50%, -50%);
}
.hero-sparkles span::before { width: 17px; height: 1px; }
.hero-sparkles span::after { width: 1px; height: 17px; }
.hero-sparkles span:nth-child(1) { top: 15%; left: 6%; animation-delay: -.5s; }
.hero-sparkles span:nth-child(2) { top: 29%; left: 18%; animation-delay: -2.4s; }
.hero-sparkles span:nth-child(3) { top: 11%; left: 35%; animation-delay: -1.1s; }
.hero-sparkles span:nth-child(4) { top: 37%; left: 48%; animation-delay: -3.1s; }
.hero-sparkles span:nth-child(5) { top: 18%; left: 61%; animation-delay: -1.8s; }
.hero-sparkles span:nth-child(6) { top: 9%; left: 82%; animation-delay: -.8s; }
.hero-sparkles span:nth-child(7) { top: 31%; left: 94%; animation-delay: -2.7s; }
.hero-sparkles span:nth-child(8) { top: 58%; left: 87%; animation-delay: -1.4s; }
.hero-sparkles span:nth-child(9) { top: 78%; left: 73%; animation-delay: -3.3s; }
.hero-sparkles span:nth-child(10) { top: 88%; left: 55%; animation-delay: -.3s; }
.hero-sparkles span:nth-child(11) { top: 72%; left: 39%; animation-delay: -2.1s; }
.hero-sparkles span:nth-child(12) { top: 89%; left: 20%; animation-delay: -1.2s; }
.hero-sparkles span:nth-child(13) { top: 60%; left: 7%; animation-delay: -2.9s; }
.hero-sparkles span:nth-child(14) { top: 48%; left: 29%; animation-delay: -.9s; }
@keyframes hero-drift { to { transform: translate(-45px, 35px) scale(1.08); } }
@keyframes sparkle-pulse {
  0%, 100% { opacity: .12; transform: scale(.6) rotate(0); }
  50% { opacity: .78; transform: scale(1.2) rotate(45deg); }
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 65px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  margin: 0 0 26px;
  padding: 10px 14px;
  border: 1px solid rgba(38,103,255,.17);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,.7);
  font: 700 .76rem/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.45rem, 6.2vw, 7rem);
  font-weight: 680;
  line-height: .91;
  letter-spacing: -.072em;
}
.hero h1 span { display: block; color: var(--blue); }
.hero-intro { max-width: 700px; margin: 30px 0 0; color: #536072; font-size: clamp(1.08rem, 1.65vw, 1.28rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { max-width: 690px; margin: 26px 0 0; color: var(--muted); font-size: .79rem; font-weight: 650; letter-spacing: .02em; line-height: 1.6; }
.hero-comparison {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(8,18,32,.1);
  border-radius: 32px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 35px 100px rgba(8,18,32,.15);
  backdrop-filter: blur(16px);
}
.comparison-labels { display: flex; justify-content: space-between; padding: 5px 9px 12px; color: var(--muted); font: 700 .7rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.comparison-stage { position: relative; aspect-ratio: 1.13; overflow: hidden; border-radius: 21px; background: #dfe4e9; }
.website-mockup { position: absolute; inset: 0; overflow: hidden; }
.website-mockup-new { clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0); background: #f7f9fc; }
.website-mockup-old { color: #4c4c4c; background: #ece8dc; }
.mock-browser { display: flex; gap: 6px; height: 30px; align-items: center; padding: 0 12px; background: rgba(8,18,32,.1); }
.mock-browser i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .3; }
.old-header { padding: 23px 26px 12px; color: #6c3328; font: 700 1.55rem Georgia, serif; text-align: center; }
.old-menu { padding: 10px; border-block: 1px solid #bdb3a2; font: .55rem Arial, sans-serif; text-align: center; }
.old-body { padding: 28px; }
.old-title { width: 76%; height: 20px; background: #9d8a72; }
.old-lines { width: 100%; height: 56px; margin-top: 20px; background: repeating-linear-gradient(#bdb3a2 0 5px, transparent 5px 13px); }
.old-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.old-columns i { height: 105px; border: 1px solid #bdb3a2; background: #d7d0c4; }
.new-nav { display: flex; gap: 13px; height: 52px; align-items: center; padding: 0 22px; background: #fff; }
.new-nav b { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: .45rem; }
.new-nav i { width: 38px; height: 5px; border-radius: 3px; background: #cfd5de; }
.new-nav span { width: 68px; height: 22px; margin-left: auto; border-radius: 12px; background: var(--blue); }
.new-body { position: relative; padding: 42px 34px 34px; overflow: hidden; color: #fff; background: #0c1118; }
.new-body::after { position: absolute; top: -80px; right: -50px; width: 240px; height: 240px; border-radius: 50%; content: ""; background: rgba(38,103,255,.34); }
.new-body small { position: relative; z-index: 1; color: var(--blue-light); font-size: .48rem; letter-spacing: .12em; }
.new-title { position: relative; z-index: 1; width: 72%; height: 35px; margin-top: 15px; background: linear-gradient(#fff 0 12px, transparent 12px 20px, #fff 20px 32px, transparent 32px); }
.new-copy { position: relative; z-index: 1; width: 62%; height: 25px; margin-top: 16px; background: repeating-linear-gradient(#7f8a99 0 4px, transparent 4px 10px); }
.new-button { position: relative; z-index: 1; width: 78px; height: 25px; margin-top: 20px; border-radius: 14px; background: var(--blue); }
.new-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 18px; }
.new-cards i { height: 82px; border: 1px solid #e1e5eb; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgba(8,18,32,.06); }
.comparison-divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(8,18,32,.12);
  transform: translateX(-1px);
}
.comparison-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  content: "↔";
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(8,18,32,.2);
  font-size: .8rem;
  transform: translate(-50%, -50%);
}
.comparison-range { position: absolute; z-index: 4; inset: 40px 14px 14px; width: calc(100% - 28px); height: calc(100% - 54px); opacity: 0; cursor: ew-resize; }
.hero-comparison:focus-within { outline: 3px solid rgba(38,103,255,.32); outline-offset: 4px; }

/* Problems */
.problems-section { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }
.problem-card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .3s ease, box-shadow .3s ease; }
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.line-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; color: var(--blue); background: #edf3ff; }
.line-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h3 { margin: 58px 0 13px; font-size: 1.35rem; letter-spacing: -.035em; }
.problem-card p { margin: 0; color: var(--muted); line-height: 1.7; }

/* Solution */
.solution-section { background: linear-gradient(135deg, #080b10, #111a28); }
.solution-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: start; }
.solution-copy { position: sticky; top: 125px; }
.solution-copy .section-title { font-size: clamp(2.5rem, 4.8vw, 5rem); }
.solution-copy .section-copy { color: #aeb8c6; }
.solution-copy .button { margin-top: 34px; }
.solution-list { border-top: 1px solid rgba(255,255,255,.15); }
.solution-item { display: grid; grid-template-columns: 55px 1fr; gap: 20px; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.solution-item span { color: var(--blue-light); font: 700 .75rem var(--mono); }
.solution-item p { margin: 0; color: #e5eaf1; font-size: 1.08rem; line-height: 1.45; }

/* Audiences */
.audiences-section { background: #fff; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 62px; }
.audience-card { position: relative; min-height: 255px; padding: 31px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.audience-card::after { position: absolute; right: -50px; bottom: -65px; width: 150px; height: 150px; border-radius: 50%; content: ""; background: rgba(38,103,255,.08); }
.audience-card > span { color: var(--blue); font: 700 .72rem var(--mono); }
.audience-card h3 { margin: 52px 0 12px; font-size: 1.45rem; letter-spacing: -.04em; }
.audience-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); line-height: 1.7; }

/* Process */
.process-section { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 65px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.process-card { min-height: 330px; padding: 32px; background: var(--white); }
.process-number { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); font: 700 .75rem var(--mono); }
.process-card h3 { margin: 70px 0 14px; font-size: 1.42rem; letter-spacing: -.04em; }
.process-card p { margin: 0; color: var(--muted); line-height: 1.7; }

/* Pricing */
.pricing-section { color: var(--white); background: var(--blue); }
.pricing-section .eyebrow { color: var(--white); }
.pricing-section .section-copy { color: #e1eaff; }
.net-price-note { display: inline-flex; margin: 24px 0 0; padding: 10px 13px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; color: #f1f5ff; font-size: .78rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-top: 58px; }
.price-card {
  display: flex;
  min-height: 930px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 75px rgba(0,28,105,.13);
}
.price-card-featured { color: var(--white); background: var(--ink); box-shadow: 0 35px 90px rgba(0,20,75,.28); }
.price-card-top { display: flex; min-height: 26px; align-items: center; justify-content: space-between; gap: 15px; }
.package-index { color: var(--blue); font: 700 .72rem var(--mono); letter-spacing: .08em; }
.price-card-featured .package-index { color: var(--blue-light); }
.recommended { padding: 7px 10px; border-radius: 999px; color: var(--ink); background: var(--cyan); font-size: .7rem; font-weight: 800; }
.price-card h3 { margin: 24px 0 30px; font-size: clamp(1.65rem, 2.1vw, 2.35rem); letter-spacing: -.055em; }
.price { display: flex; align-items: end; gap: 12px; }
.price strong { font-size: clamp(2.4rem, 3vw, 3.65rem); line-height: .85; letter-spacing: -.08em; white-space: nowrap; }
.price span { padding-bottom: 7px; color: var(--muted); }
.price-card-featured .price span { color: #aeb8c6; }
.price-description { min-height: 78px; margin: 26px 0 0; color: var(--muted); line-height: 1.7; }
.price-card-featured .price-description { color: #b6c0cd; }
.check-list { margin: 28px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 25px; border-top: 1px solid var(--line); line-height: 1.5; }
.check-list li::before { position: absolute; top: 12px; left: 0; content: "✓"; color: var(--blue); font-weight: 900; }
.price-card-featured .check-list li { border-color: rgba(255,255,255,.13); }
.price-card-featured .check-list li::before { color: var(--cyan); }
.package-note { margin: auto 0 25px; color: var(--muted); font-size: .78rem; line-height: 1.6; }
.price-card-featured .package-note { color: #98a5b5; }
.price-cta { width: 100%; }
.pricing-footer-note { max-width: 930px; margin: 30px auto 0; color: #e6edff; font-size: .88rem; line-height: 1.7; text-align: center; }
.swipe-hint { display: none; }

/* Modernization */
.modernization-section { background: var(--ink); color: var(--white); }
.modernization-section .eyebrow { color: var(--blue-light); }
.modernization-section .section-copy { color: #aeb8c6; }
.modernization-heading { max-width: 930px; }
.before-after-cards { display: grid; grid-template-columns: 1fr 70px 1fr; gap: 18px; align-items: center; margin-top: 65px; }
.comparison-card { min-height: 470px; padding: 40px; border-radius: var(--radius); }
.comparison-card-before { color: #272b31; background: #d8d4ca; }
.comparison-card-after { border: 1px solid rgba(255,255,255,.16); background: linear-gradient(145deg, #172235, #0d131d); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.comparison-card-label { display: inline-flex; padding: 8px 11px; border-radius: 999px; font: 700 .7rem var(--mono); letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.5); }
.comparison-card-after .comparison-card-label { color: var(--white); background: var(--blue); }
.comparison-card h3 { max-width: 430px; margin: 58px 0 25px; font-size: 2rem; letter-spacing: -.045em; }
.comparison-card ul { margin: 0; padding: 0; list-style: none; }
.comparison-card li { padding: 12px 0; border-top: 1px solid rgba(8,18,32,.14); }
.comparison-card-after li { border-color: rgba(255,255,255,.14); color: #c5ced9; }
.comparison-arrow { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 1.4rem; }

/* Projects */
.projects-section { background: var(--white); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 65px; }
.project-card { display: flex; flex-direction: column; padding: 16px 16px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.project-visual { position: relative; height: 220px; overflow: hidden; border-radius: 19px; background: #d7d2c9; }
.project-visual > img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-visual-fitness { background: linear-gradient(145deg, #132344, #5795ff); }
.project-visual-erp { background: linear-gradient(145deg, #111820, #e69433); }
.project-visual-cafe { background: linear-gradient(145deg, #193525, #77b890); }
.demo-badge { display: inline-flex; margin: 22px 14px 0; padding: 7px 10px; border-radius: 999px; color: var(--blue); background: #eaf1ff; font-size: .7rem; font-weight: 800; }
.project-industry { margin: 17px 14px 0; color: var(--muted); font: 700 .72rem var(--mono); text-transform: uppercase; }
.project-card h3 { margin: 12px 14px 14px; font-size: 1.5rem; line-height: 1.18; letter-spacing: -.04em; }
.project-card > p:not(.project-industry) { margin: 0 14px; color: var(--muted); line-height: 1.68; }
.project-card small { display: block; margin: 22px 14px 0; color: var(--blue); font-weight: 750; line-height: 1.5; }
.project-demo-button { align-self: flex-start; margin: auto 14px 0; transform: translateY(18px); }
.project-card .project-result { margin-top: 18px !important; padding-top: 17px; border-top: 1px solid var(--line); font-size: .88rem; }
.project-result strong { color: var(--ink); }

/* About / sticky-scroll */
.about-section { background: linear-gradient(145deg, #080b10, #111a26); }
.about-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 95px; align-items: start; }
.about-sticky { position: sticky; top: 120px; }
.about-portrait { position: relative; min-height: 680px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: #17202c; }
.about-portrait > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-portrait::after { position: absolute; inset: 40% 0 0; content: ""; background: linear-gradient(transparent, rgba(8,11,16,.74)); }
.about-card { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; padding: 22px; border: 1px solid rgba(255,255,255,.17); border-radius: 19px; background: rgba(8,11,16,.72); backdrop-filter: blur(15px); }
.about-card strong, .about-card span { display: block; }
.about-card strong { font-size: 1.2rem; }
.about-card span { margin-top: 5px; color: #aeb8c6; font-size: .82rem; }
.about-story { padding-top: 8px; }
.about-story .section-title { font-size: clamp(2.5rem, 4.8vw, 5rem); }
.about-text { margin-top: 38px; }
.about-text p { margin: 0 0 26px; color: #b6c0cc; font-size: 1.08rem; line-height: 1.82; }
.value-list { margin: 50px 0 38px; border-top: 1px solid rgba(255,255,255,.15); }
.value-item { display: grid; grid-template-columns: 70px 1fr; gap: 22px; align-items: center; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.value-item span { color: var(--blue-light); font: 700 .75rem var(--mono); }
.value-item h3 { margin: 0; font-size: 1.25rem; }

/* FAQ */
.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 125px; }
.faq-heading .section-title { font-size: clamp(2.4rem, 4.5vw, 4.6rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 26px 52px 26px 0; cursor: pointer; font-size: 1.08rem; font-weight: 760; line-height: 1.45; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 22px; right: 3px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; content: "+"; color: var(--blue); background: #e7efff; font-size: 1.15rem; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > div { padding: 0 55px 25px 0; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.75; }
.faq-layout > .center-action { grid-column: 2; justify-content: flex-start; margin-top: 8px; }

/* Contact */
.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 125px; }
.contact-copy .section-title { font-size: clamp(2.6rem, 4.7vw, 5rem); }
.contact-promise { display: flex; gap: 13px; margin-top: 35px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--paper); }
.contact-promise > span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-weight: 900; }
.contact-promise p { margin: 2px 0 0; color: var(--muted); line-height: 1.65; }
.plain-contact-link { display: flex; justify-content: space-between; margin-top: 22px; padding: 20px 0; border-bottom: 1px solid var(--line); color: var(--blue); font-weight: 750; }
.contact-form { padding: 38px; border-radius: 30px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin: 0 0 8px; color: #c9d1dc; font-size: .78rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  outline: 0;
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.field input, .field select { height: 51px; padding: 0 13px; }
.field select { color-scheme: dark; }
.field textarea { min-height: 145px; padding: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(138,180,255,.12); }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-consent { display: flex; gap: 10px; margin: 20px 0; color: #aeb8c6; font-size: .76rem; line-height: 1.55; }
.privacy-consent input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--blue); }
.privacy-consent a { color: var(--blue-light); text-decoration: underline; }
.submit-button { width: 100%; border: 0; cursor: pointer; }
.form-hint { margin: 13px 0 0; color: #8e9aaa; font-size: .74rem; text-align: center; }
.form-message { margin: 0 0 22px; padding: 13px 15px; border: 1px solid; border-radius: 12px; font-size: .84rem; line-height: 1.5; }
.form-message--success { border-color: rgba(80,220,150,.45); color: #baf4d6; background: rgba(45,160,105,.14); }
.form-message--error { border-color: rgba(255,125,125,.45); color: #ffd0d0; background: rgba(200,70,70,.14); }

/* Final CTA */
.final-cta-section { padding-top: 0; background: var(--white); }
.final-cta {
  padding: 75px;
  border-radius: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(87,215,255,.3), transparent 28%),
    var(--blue);
  box-shadow: 0 35px 90px rgba(38,103,255,.22);
}
.final-cta .eyebrow { color: var(--white); }
.final-cta h2 { max-width: 980px; margin: 0; font-size: clamp(2.7rem, 5.8vw, 6rem); line-height: .96; letter-spacing: -.065em; }
.final-cta p:not(.eyebrow) { max-width: 700px; margin: 28px 0 35px; color: #e7eeff; font-size: 1.14rem; line-height: 1.7; }

/* Footer */
.site-footer { padding: 75px 0 25px; color: #c5ced9; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 70px; padding-bottom: 55px; }
.site-footer .brand { color: var(--white); }
.site-footer .brand-copy small { color: #8f9baa; }
.footer-brand p { max-width: 410px; margin: 28px 0 0; color: #8f9baa; line-height: 1.75; }
.footer-column h2 { margin: 0 0 20px; color: var(--white); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-navigation, .footer-menu, .footer-column { display: grid; align-content: start; gap: 12px; }
.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-navigation a, .footer-column > a { color: #9ca8b7; transition: color .2s ease; }
.footer-navigation a:hover, .footer-column > a:hover { color: var(--white); }
.footer-check-link { display: flex; justify-content: space-between; margin-top: 10px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); color: var(--blue-light) !important; font-weight: 750; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #778393; font-size: .78rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 20px; }
.cookie-settings { padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.legal-links a:hover, .cookie-settings:hover { color: var(--white); }

/* Pages and blog */
.content-main { min-height: 70vh; background: var(--paper); }
.content-hero { padding: 185px 0 85px; color: var(--white); background: radial-gradient(circle at 82% 20%, rgba(38,103,255,.3), transparent 30%), var(--ink); }
.content-hero h1, .not-found h1 { max-width: 950px; margin: 0; font-size: clamp(2.8rem, 6vw, 6rem); line-height: .98; letter-spacing: -.06em; }
.content-hero-copy, .article-lead { max-width: 720px; margin: 25px 0 0; color: #b5bfcb; font-size: 1.15rem; line-height: 1.7; }
.content-section { padding: 85px 0 120px; }
.content-narrow { width: min(820px, calc(100% - 44px)); }
.breadcrumbs { margin-bottom: 24px; color: #9da9b7; font-size: .8rem; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .3s ease, box-shadow .3s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card-media { display: block; height: 235px; overflow: hidden; background: var(--ink); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card-placeholder { display: grid; height: 100%; place-items: center; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--cyan)); font-size: 2rem; font-weight: 800; }
.post-card-body { padding: 25px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: .74rem; }
.post-card h2 { margin: 16px 0 12px; font-size: 1.5rem; line-height: 1.15; letter-spacing: -.035em; }
.post-card-excerpt { color: var(--muted); line-height: 1.65; }
.text-link { display: inline-flex; gap: 8px; margin-top: 20px; color: var(--blue); font-weight: 750; }
.featured-image { margin: 0 0 40px; overflow: hidden; border-radius: var(--radius); }
.featured-image img { width: 100%; height: auto; }
.content-body { color: #293343; font-size: 1.07rem; line-height: 1.82; }
.content-body h2, .content-body h3 { margin: 2em 0 .7em; color: var(--ink); letter-spacing: -.035em; }
.content-body h2 { font-size: 2rem; }
.content-body h3 { font-size: 1.45rem; }
.content-body a { color: var(--blue); text-decoration: underline; }
.content-body img { height: auto; border-radius: var(--radius-small); }
.content-body blockquote { margin: 32px 0; padding: 5px 0 5px 25px; border-left: 4px solid var(--blue); color: var(--muted); font-size: 1.16rem; }
.content-body table { width: 100%; border-collapse: collapse; }
.content-body th, .content-body td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.article-footer { margin-top: 45px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a { padding: 7px 10px; border-radius: 999px; color: var(--blue); background: #eaf1ff; font-size: .76rem; }
.not-found { display: grid; min-height: 80vh; padding: 180px 0 90px; align-items: center; color: var(--white); background: var(--ink); }
.not-found p:not(.eyebrow) { margin: 24px 0 32px; color: #aeb8c6; font-size: 1.15rem; line-height: 1.7; }
.empty-state { padding: 40px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--white); }

/* Animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .price-card { min-height: 780px; padding: 36px; }
  .price-card h3 { font-size: clamp(2rem, 3vw, 3.2rem); }
  .price strong { font-size: clamp(3.2rem, 5.2vw, 5.6rem); }
}

@media (max-width: 1120px) {
  .nav-links { gap: 11px; font-size: .7rem; }
  .nav-links, .nav-menu { gap: 11px; }
  .brand-copy small { display: none; }
  .hero-layout { gap: 40px; }
  .problem-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { display: grid; grid-template-columns: .75fr 1.25fr; column-gap: 24px; }
  .project-visual { grid-row: 1 / span 6; height: 100%; min-height: 320px; }
  .demo-badge, .project-industry, .project-card h3, .project-card > p:not(.project-industry), .project-card small { margin-right: 10px; margin-left: 0; }
  .project-demo-button { margin: 18px 10px 0 0; transform: none; }
}

@media (max-width: 900px) {
  .section { padding: 95px 0; }
  .nav-wrap { backdrop-filter: none; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 410px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 5px;
    margin: 0;
    padding: 105px 40px 45px;
    overflow-y: auto;
    color: var(--white);
    background: var(--ink);
    box-shadow: -20px 0 70px rgba(0,0,0,.35);
    transform: translateX(105%);
    transition: transform .35s ease;
  }
  .nav-menu { width: 100%; flex-direction: column; align-items: stretch; gap: 5px; }
  .nav-links.is-open { transform: none; }
  .nav-links a { display: block; padding: 10px 0; font-size: 1.15rem; white-space: normal; }
  .nav-cta, .nav-menu > li:last-child > a { justify-content: center; margin-top: 12px; padding: 0 18px; font-size: .88rem; }
  .nav-menu > .menu-item-has-children { display: grid; grid-template-columns: 1fr auto; }
  .submenu-toggle { width: 36px; height: 36px; color: var(--white); border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.08); }
  .sub-menu { position: static; display: grid; grid-column: 1 / -1; width: 100%; min-width: 0; max-height: 0; gap: 2px; padding: 0 0 0 14px; overflow: hidden; border: 0; visibility: hidden; opacity: 0; background: transparent; box-shadow: none; transform: none; }
  .submenu-open > .sub-menu { max-height: 500px; padding-top: 6px; visibility: visible; opacity: 1; transform: none; }
  .menu-toggle { z-index: 2; display: grid; place-items: center; }
  .hero-layout, .solution-layout, .about-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 145px; }
  .hero-comparison { max-width: 680px; }
  .split-heading, .pricing-heading { grid-template-columns: 1fr; gap: 28px; }
  .solution-copy, .about-sticky, .faq-heading, .contact-copy { position: relative; top: auto; }
  .solution-layout { gap: 60px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card { min-height: 0; }
  .package-note { margin-top: 10px; }
  .before-after-cards { grid-template-columns: 1fr; }
  .comparison-arrow { margin: -4px auto; transform: rotate(90deg); }
  .about-portrait { min-height: 600px; }
  .about-layout { gap: 65px; }
  .faq-layout > .center-action { grid-column: 1; }
  .contact-layout { gap: 55px; }
  .footer-main { grid-template-columns: 1.2fr .8fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 26px, 1240px); }
  .site-header { top: 8px; }
  .nav-wrap { min-height: 60px; padding-left: 11px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: .82rem; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 14px 40px rgba(8,18,32,.28);
    font-size: .84rem;
    font-weight: 800;
  }
  .hero { min-height: auto; padding: 125px 0 75px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .hero-kicker { font-size: .64rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust { font-size: .73rem; }
  .hero-comparison { padding: 9px; border-radius: 24px; }
  .comparison-stage { border-radius: 16px; }
  .new-body { padding: 25px 20px; }
  .new-cards { padding: 10px; }
  .problem-grid, .audience-grid, .process-grid { grid-template-columns: 1fr; }
  .swipe-hint {
    display: block;
    margin: 36px 0 11px;
    color: var(--blue);
    font: 700 .7rem/1.4 var(--mono);
    letter-spacing: .08em;
    text-align: right;
    text-transform: uppercase;
  }
  .swipe-hint-light { color: var(--white); }
  .swipe-grid {
    display: flex;
    width: auto;
    margin-top: 0;
    margin-right: -13px;
    margin-left: -13px;
    padding: 4px 13px 20px;
    gap: 14px;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-padding-inline: 13px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }
  .swipe-grid::-webkit-scrollbar { display: none; }
  .swipe-grid > * {
    flex: 0 0 min(82vw, 350px);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
  .problem-card { min-height: 260px; }
  .process-card { min-height: 270px; }
  .process-card h3 { margin-top: 45px; }
  .price-card { padding: 27px; border-radius: 24px; }
  .pricing-grid .price-card { min-height: 0; }
  .price strong { font-size: clamp(3rem, 15vw, 4.4rem); }
  .price-description { min-height: 0; }
  .comparison-card { min-height: 0; padding: 28px; }
  .comparison-card h3 { margin-top: 40px; }
  .project-card { display: block; }
  .project-visual { height: 220px; min-height: 0; }
  .demo-badge, .project-industry { margin-left: 14px; }
  .project-card h3, .project-card > p:not(.project-industry), .project-card small { margin-right: 14px; margin-left: 14px; }
  .project-demo-button { margin: 24px 14px 0; transform: none; }
  .about-portrait { min-height: 500px; }
  .value-item { grid-template-columns: 50px 1fr; }
  .contact-form { padding: 25px; border-radius: 23px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .final-cta { padding: 45px 27px; border-radius: 27px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-links { flex-direction: column; gap: 10px; }
  .content-hero { padding: 145px 0 65px; }
  .content-section { padding: 60px 0 85px; }
  .content-narrow { width: min(100% - 26px, 820px); }
  .post-grid { grid-template-columns: 1fr; }
  .content-body { overflow-wrap: anywhere; }
  .content-body table { display: block; overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
