/* ═══════════════════════════════════════════════════════════════
   SORKINA WEBDESIGN — style.css
   Design: Soft Pink Premium | Glassmorphism | Mobile-First
════════════════════════════════════════════════════════════════ */

/* ─── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* Pink Palette */
  --pink-50:  #fff5f8;
  --pink-100: #ffe4ef;
  --pink-200: #ffc9e0;
  --pink-300: #ffadd1;
  --pink-400: #f88ab9;
  --pink-500: #e87dab;
  --pink-600: #d4609a;
  --pink-700: #b04880;

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #fafafa;
  --gray-100: #f5f5f7;
  --gray-200: #ebebef;
  --gray-300: #d4d4dc;
  --gray-400: #9898a8;
  --gray-500: #6b6b7c;
  --gray-700: #38383f;
  --gray-900: #1a1a22;

  /* Semantic */
  --bg:            var(--white);
  --bg-alt:        var(--gray-50);
  --bg-pink:       var(--pink-50);
  --surface:       rgba(255,255,255,0.72);
  --surface-pink:  rgba(255,228,239,0.6);
  --border:        rgba(232,125,171,0.15);
  --border-m:      rgba(232,125,171,0.28);
  --text:          var(--gray-900);
  --text-m:        var(--gray-500);
  --text-d:        var(--gray-400);
  --accent:        var(--pink-500);
  --accent-hover:  var(--pink-600);
  --accent-light:  var(--pink-300);
  --accent-dark:   var(--pink-700);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Sizes */
  --nav-h: 72px;
  --container: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(232,125,171,0.1);
  --sh-md: 0 4px 20px rgba(232,125,171,0.15);
  --sh-lg: 0 8px 40px rgba(232,125,171,0.18);
  --sh-xl: 0 16px 60px rgba(232,125,171,0.22);
  --sh-glow: 0 0 30px rgba(232,125,171,0.35);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 280ms cubic-bezier(0.4,0,0.2,1);
  --t-slow: 480ms cubic-bezier(0.4,0,0.2,1);
}

/* ─── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--alt { background: var(--bg-alt); }
.section--pink { background: var(--bg-pink); }

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

/* ─── 3. TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
em { font-style: italic; color: var(--accent); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--pink-100);
  border: 1px solid var(--border-m);
  padding: .35rem .85rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-m);
  line-height: 1.7;
}

/* ─── 4. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--r-full);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), color var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: .08; }
.btn:active { transform: scale(.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: white;
  box-shadow: 0 4px 15px rgba(232,125,171,.4);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(232,125,171,.5);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--pink-50);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.btn--ghost {
  background: transparent;
  color: var(--text-m);
  border: 1px solid var(--gray-200);
}
.btn--ghost:hover { background: var(--gray-100); color: var(--text); }

.btn--wa {
  background: linear-gradient(135deg, #25D366, #1da851);
  color: white;
  box-shadow: 0 4px 15px rgba(37,211,102,.35);
}
.btn--wa:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37,211,102,.45);
}

.btn--email {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}
.btn--email:hover { background: var(--gray-200); transform: translateY(-2px); }

.btn--white {
  background: white;
  color: var(--gray-900);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn--sm { font-size: .85rem; padding: .55rem 1.1rem; }
.btn--lg { font-size: 1rem; padding: .9rem 1.8rem; }
.btn--block { width: 100%; }

/* ─── 5. GLASS CARD ──────────────────────────────────────────── */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-m);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}

/* ─── 6. REVEAL ANIMATIONS ───────────────────────────────────── */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: .1s; }
[data-delay="150"] { transition-delay: .15s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }

/* ─── 7. NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav--scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(232,125,171,0.12);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-900);
  flex-shrink: 0;
  transition: opacity var(--t-base);
}
.nav__logo:hover { opacity: .8; }
.nav__logo em { font-style: italic; color: var(--accent); }
.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: white;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 700;
}

/* ── LOGO IMAGE ── */
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer__logo .nav__logo-img {
  filter: brightness(0) invert(1);
  height: 38px;
}

/* ── BRAND LOGO (CSS fallback, unused) ── */
.brand-logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: .35rem .65rem .3rem .55rem;
}
.brand-logo::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 13px; height: 13px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}
.brand-logo::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 13px; height: 13px;
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.brand-logo__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .98rem;
  font-weight: 400;
  letter-spacing: .28em;
  line-height: 1.15;
  color: inherit;
}
.brand-logo__sub {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-top: 2px;
}
.brand-logo__line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .6;
  min-width: 8px;
}
.brand-logo__tag {
  font-family: 'Inter', Arial, sans-serif;
  font-size: .42rem;
  font-weight: 400;
  letter-spacing: .35em;
  line-height: 1;
  color: inherit;
  opacity: .8;
  white-space: nowrap;
}
.nav__links {
  display: none;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: .45rem .75rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--accent); background: var(--pink-50); }
.nav__link.is-active { color: var(--accent); }
.nav__cta {
  margin-left: .5rem;
  display: none;
}
@media (min-width: 900px) { .nav__cta { display: inline-flex; } }

/* Hamburger */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  margin-left: auto;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.nav__burger:hover { background: var(--pink-50); }
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
  width: 100%;
}
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 900px) { .nav__burger { display: none; } }

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 52px) 36px);
  transition: clip-path .5s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
  z-index: 99;
}
.nav__overlay.is-open {
  clip-path: circle(150% at calc(100% - 52px) 36px);
  pointer-events: all;
}
.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.nav__overlay-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--t-fast);
}
.nav__overlay-link:hover { color: var(--accent); }

/* ─── 8. HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--pink-50) 0%, var(--white) 60%, var(--pink-100) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #ffc9e0, transparent 70%);
  top: -20%; right: -10%;
  animation: blobFloat1 8s ease-in-out infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ffadd1, transparent 70%);
  bottom: -10%; left: -5%;
  animation: blobFloat2 11s ease-in-out infinite;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #ffe4ef, transparent 70%);
  top: 40%; left: 30%;
  animation: blobFloat3 14s ease-in-out infinite;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
}
.hero__content {
  max-width: 600px;
}
.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  margin-top: .75rem;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-m);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Urgency Badge */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--pink-700);
  background: var(--pink-100);
  border: 1px solid var(--border-m);
  padding: .4rem .9rem;
  border-radius: var(--r-full);
  margin-bottom: .75rem;
  animation: badgePulse 2.5s ease-in-out infinite;
}
.urgency-badge__dot {
  width: 7px; height: 7px;
  background: var(--pink-600);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.hero__scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* ─── 9. LIVE PREVIEW BOX ────────────────────────────────────── */
.live-preview {
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.live-preview__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.live-preview__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.live-preview__url {
  margin-left: .5rem;
  font-size: .75rem;
  color: var(--gray-500);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  padding: .2rem .75rem;
  flex: 1;
  text-align: center;
}
.live-preview__content {
  padding: 1.25rem;
  min-height: 260px;
}
.live-preview__nav-sim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.live-preview__nav-logo {
  width: 80px; height: 12px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-200));
  border-radius: 6px;
}
.live-preview__nav-links {
  display: flex;
  gap: .5rem;
}
.live-preview__nav-link {
  width: 40px; height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
}
.live-preview__hero-sim {
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  border-radius: var(--r-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  min-height: 100px;
}
.live-preview__typing {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-900);
  min-height: 1.2em;
}
.live-preview__cursor {
  display: inline;
  color: var(--accent);
  font-weight: 700;
  animation: cursorBlink .8s step-end infinite;
  font-size: 1rem;
}
.live-preview__hero-sub {
  width: 85%; height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  margin-top: .75rem;
}
.live-preview__cta-sim {
  width: 100px; height: 22px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  border-radius: var(--r-full);
  margin-top: .75rem;
}
.live-preview__cards-sim {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.live-preview__card-sim {
  background: var(--gray-100);
  border-radius: var(--r-sm);
  height: 50px;
  border: 1px solid var(--gray-200);
}
.live-preview__badge {
  position: absolute;
  bottom: 1rem; right: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: .3rem .7rem;
  border-radius: var(--r-full);
}
.live-preview__badge-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}

/* ─── 10. TRUST SECTION ──────────────────────────────────────── */
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

.trust-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-m);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  cursor: default;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent-light);
}
.trust-card__icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  background: var(--pink-100);
  color: var(--accent);
  border-radius: var(--r-lg);
  margin: 0 auto 1rem;
  transition: background var(--t-base), transform var(--t-base);
}
.trust-card:hover .trust-card__icon {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: white;
  transform: scale(1.08) rotate(-3deg);
}
.trust-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--gray-900);
}
.trust-card__text {
  font-size: .9rem;
  color: var(--text-m);
  line-height: 1.6;
}

/* ─── 11. SERVICES CARDS ─────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent-light);
}
.service-card--featured {
  border-color: var(--pink-400);
  box-shadow: var(--sh-lg), 0 0 0 4px var(--pink-100);
  position: relative;
}
.service-card--featured:hover {
  box-shadow: var(--sh-xl), 0 0 0 4px var(--pink-100);
}
.service-card__popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: white;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .3rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.service-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.service-card__badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--pink-50);
  padding: .25rem .7rem;
  border-radius: var(--r-full);
  border: 1px solid var(--border-m);
  margin-bottom: .75rem;
}
.service-card--featured .service-card__badge {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: white;
  border-color: transparent;
}
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: .3rem;
}
.service-card__price-from { font-size: .85rem; color: var(--text-m); }
.service-card__price-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}
.service-card__tagline {
  font-size: .85rem;
  color: var(--text-m);
}
.service-card__features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem;
}
.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-700);
}
.service-card__features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* ─── 12. PORTFOLIO ──────────────────────────────────────────── */
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-card--wide { grid-column: span 2; }
}
@media (min-width: 900px) {
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-card--wide { grid-column: span 2; }
}

.portfolio-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--gray-100);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.portfolio-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--sh-xl);
}
.portfolio-card__img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.portfolio-card--wide .portfolio-card__img { aspect-ratio: 16/7; }
.portfolio-card__mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transition: transform var(--t-slow);
}
.portfolio-card:hover .portfolio-card__mockup { transform: scale(1.04); }

/* Background gradients per card */
.portfolio-card__img--1 { background: linear-gradient(135deg, #fce4ec, #f8bbd0, #f48fb1); }
.portfolio-card__img--2 { background: linear-gradient(135deg, #fce4ec, #fff9c4, #ffe082); }
.portfolio-card__img--3 { background: linear-gradient(135deg, #fff3e0, #ffe0b2, #ffcc80); }
.portfolio-card__img--4 { background: linear-gradient(135deg, #ede7f6, #d1c4e9, #b39ddb); }
.portfolio-card__img--5 { background: linear-gradient(135deg, #e0f7fa, #b2ebf2, #80deea); }

/* Browser mockup inside portfolio card */
.portfolio-card__browser {
  width: 100%;
  max-width: 320px;
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.portfolio-card__browser-dots {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}
.portfolio-card__browser-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
}
.portfolio-card__browser-dots span:nth-child(1) { background: #ff5f57; }
.portfolio-card__browser-dots span:nth-child(2) { background: #febc2e; }
.portfolio-card__browser-dots span:nth-child(3) { background: #28c840; }

.portfolio-card__browser-content { padding: 10px; }
.pcb-nav { height: 10px; background: #eee; border-radius: 5px; margin-bottom: 8px; }
.pcb-hero { height: 45px; border-radius: var(--r-sm); margin-bottom: 8px; }
.pcb-hero--pink { background: linear-gradient(135deg, #e87dab, #f8a5c2); }
.pcb-hero--rose { background: linear-gradient(135deg, #fce4ec, #e91e63); }
.pcb-hero--amber { background: linear-gradient(135deg, #ff8f00, #ffc107); }
.pcb-hero--purple { background: linear-gradient(135deg, #7b1fa2, #ce93d8); }
.pcb-hero--teal { background: linear-gradient(135deg, #00695c, #80cbc4); }
.pcb-cards { display: flex; gap: 4px; }
.pcb-card { flex: 1; height: 28px; background: #f5f5f5; border-radius: 4px; border: 1px solid #eee; }
.pcb-text-block { height: 20px; background: #f0f0f0; border-radius: 4px; }
.pcb-menu-grid { display: flex; gap: 4px; margin-top: 8px; }
.pcb-menu-item { flex: 1; height: 24px; background: #fff3e0; border-radius: 4px; }
.pcb-services { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.pcb-service-item { height: 12px; background: #ede7f6; border-radius: 4px; }
.pcb-features { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 8px; }
.pcb-feature { height: 22px; background: #e0f7fa; border-radius: 4px; }

/* Portfolio overlay */
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,34,0.92) 40%, rgba(26,26,34,0.3) 70%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--t-base);
}
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }
.portfolio-card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(232,125,171,0.2);
  border: 1px solid rgba(232,125,171,0.3);
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: .5rem;
}
.portfolio-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: .35rem;
  font-style: normal;
}
.portfolio-card__desc {
  font-size: .82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: .75rem;
}

/* ─── 13. LIVE DEMO SECTION ──────────────────────────────────── */
.live-demo__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .live-demo__inner { grid-template-columns: 1fr 1fr; }
}
.live-demo__text { max-width: 520px; }

.live-demo__browser { position: relative; }
.live-demo__browser-frame {
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}
.live-demo__browser-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.live-demo__browser-btns {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.live-demo__browser-btns span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.live-demo__browser-btns span:nth-child(1) { background: #ff5f57; }
.live-demo__browser-btns span:nth-child(2) { background: #febc2e; }
.live-demo__browser-btns span:nth-child(3) { background: #28c840; }
.live-demo__browser-url {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex: 1;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  padding: .3rem .75rem;
  font-size: .75rem;
  color: var(--gray-500);
}

.live-demo__screen { padding: 1.25rem; background: white; min-height: 220px; }
.live-demo__screen-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.live-demo__screen-logo {
  width: 80px; height: 10px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-200));
  border-radius: 5px;
}
.live-demo__screen-menu { display: flex; gap: .4rem; }
.live-demo__screen-menu div {
  width: 32px; height: 7px;
  background: var(--gray-200);
  border-radius: 3px;
}
.live-demo__screen-hero {
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  border-radius: var(--r-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  min-height: 90px;
}
.live-demo__screen-headline {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-900);
  min-height: 1.2em;
  display: inline;
  font-style: normal;
}
.live-demo__screen-cursor {
  display: inline;
  color: var(--accent);
  font-weight: 700;
  animation: cursorBlink .8s step-end infinite;
}
.live-demo__screen-sub {
  width: 85%; height: 5px;
  background: var(--gray-200);
  border-radius: 3px;
  margin-top: .65rem;
}
.live-demo__screen-cta {
  width: 90px; height: 20px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  border-radius: var(--r-full);
  margin-top: .65rem;
}
.live-demo__screen-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.live-demo__screen-card {
  height: 50px;
  background: var(--gray-100);
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
}

/* ─── 14. INTERACTIVE ZONE ───────────────────────────────────── */
.interactive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .interactive__grid { grid-template-columns: 1fr 1fr; }
}

/* Calculator */
.calculator {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.calculator__header { display: flex; flex-direction: column; gap: .3rem; }
.calculator__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  background: var(--pink-100);
  color: var(--accent);
  border-radius: var(--r-md);
  margin-bottom: .25rem;
}
.calculator__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.calculator__sub { font-size: .9rem; color: var(--text-m); }
.calculator__label {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: .75rem;
}
.calculator__label strong { color: var(--accent); }
.calculator__field { display: flex; flex-direction: column; }
.calculator__slider-wrap { position: relative; }
.calculator__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: var(--r-full);
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232,125,171,0.5);
  border: 3px solid white;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--sh-glow);
}
.calculator__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232,125,171,0.5);
  border: 3px solid white;
}
.calculator__slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-d);
  margin-top: .4rem;
}
.calculator__toggle-wrap {
  display: flex;
  gap: .5rem;
  margin-top: .25rem;
}
.calculator__toggle-btn {
  flex: 1;
  padding: .6rem .5rem;
  border-radius: var(--r-md);
  font-size: .85rem;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--gray-500);
  border: 1.5px solid var(--gray-200);
  transition: all var(--t-base);
  white-space: nowrap;
}
.calculator__toggle-btn--active {
  background: var(--pink-100);
  color: var(--accent);
  border-color: var(--accent);
}
.calculator__toggle-btn:hover:not(.calculator__toggle-btn--active) {
  background: var(--gray-100);
  color: var(--gray-700);
}

.calculator__result {
  background: var(--pink-50);
  border: 1px solid var(--border-m);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
}
.calculator__result-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-m);
  margin-bottom: .5rem;
}
.calculator__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .35rem;
  animation-duration: .4s;
  animation-fill-mode: both;
}
.calculator__price--pop { animation-name: pricePop; }
.calculator__price-ab { font-size: .9rem; color: var(--text-m); }
.calculator__price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
  transition: color var(--t-base);
}
.calculator__price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-700);
}
.calculator__result-note {
  font-size: .82rem;
  color: var(--text-m);
  margin-top: .3rem;
}

/* Configurator */
.configurator {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.configurator__header { display: flex; flex-direction: column; gap: .3rem; }
.configurator__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  background: var(--pink-100);
  color: var(--accent);
  border-radius: var(--r-md);
  margin-bottom: .25rem;
}
.configurator__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.configurator__sub { font-size: .9rem; color: var(--text-m); }

.config-progress {
  position: relative;
  background: var(--gray-200);
  height: 6px;
  border-radius: var(--r-full);
  margin-bottom: .5rem;
}
.config-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
  border-radius: var(--r-full);
  transition: width var(--t-slow);
}
.config-progress__steps {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.config-progress__step {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 2px solid white;
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-400);
  transition: all var(--t-base);
}
.config-progress__step--active {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: white;
  box-shadow: 0 2px 8px rgba(232,125,171,0.5);
}
.config-step__label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-m);
  margin-bottom: .75rem;
}
.config-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.config-chip {
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  transition: all var(--t-base);
}
.config-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--pink-50);
  transform: translateY(-1px);
}
.config-chip.is-selected {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(232,125,171,0.4);
}

.config-styles {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .75rem;
  margin-bottom: .75rem;
}
.config-style-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .75rem .5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--white);
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--t-base);
  cursor: pointer;
}
.config-style-card:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.config-style-card.is-selected {
  border-color: var(--accent);
  background: var(--pink-50);
  color: var(--accent);
  box-shadow: var(--sh-sm);
}
.config-style-card__preview {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px;
  overflow: hidden;
}
.config-style-card__preview--modern {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.config-style-card__preview--modern div { background: rgba(255,255,255,0.5); border-radius: 2px; }
.config-style-card__preview--modern div:nth-child(1) { height: 8px; }
.config-style-card__preview--modern div:nth-child(2) { height: 5px; width: 70%; }
.config-style-card__preview--modern div:nth-child(3) { height: 14px; border-radius: var(--r-full); width: 40%; margin-top: auto; background: white; }
.config-style-card__preview--elegant {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
}
.config-style-card__preview--elegant div { background: rgba(255,255,255,0.6); border-radius: 2px; }
.config-style-card__preview--elegant div:nth-child(1) { height: 10px; }
.config-style-card__preview--elegant div:nth-child(2) { height: 5px; width: 60%; margin-top: 6px; }
.config-style-card__preview--minimal {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.config-style-card__preview--minimal div { background: var(--gray-300); border-radius: 2px; height: 6px; }

.config-step--hidden {
  display: none;
}
.config-result {
  text-align: center;
  padding: .5rem 0;
}
.config-result__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.config-result__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--gray-900);
  font-style: normal;
}
.config-result__text {
  font-size: .9rem;
  color: var(--text-m);
  margin-bottom: 1.25rem;
}

/* ─── 15. CONTACT SECTION ────────────────────────────────────── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .contact__inner { grid-template-columns: 1fr 1fr; }
}
.contact__text { max-width: 520px; }
.contact__quick-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}
@media (min-width: 480px) {
  .contact__quick-btns { flex-direction: row; flex-wrap: wrap; }
}

.contact__payment {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pink-100);
}
.contact__payment-label {
  font-size: .82rem;
  color: var(--gray-600);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.contact__paypal {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  background: #003087;
  color: #fff;
  border-radius: var(--r-full);
  font-size: .92rem;
  font-weight: 600;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.contact__paypal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,48,135,0.28);
}
.contact__paypal svg { flex-shrink: 0; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--pink-100);
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}
@media (min-width: 640px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }
}
.cookie-banner__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .25rem;
}
.cookie-banner__text p {
  font-size: .82rem;
  line-height: 1.5;
  color: var(--gray-600);
  margin: 0;
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner__ok {
  flex-shrink: 0;
  white-space: nowrap;
  align-self: flex-end;
}
@media (min-width: 640px) {
  .cookie-banner__ok { align-self: center; }
}

/* Contact Form */
.contact-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: -.25rem;
  font-style: normal;
}
.contact-form__label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: .4rem;
}
.contact-form__field { display: flex; flex-direction: column; }
.contact-form__input,
.contact-form__textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  width: 100%;
  resize: vertical;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--pink-100);
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: var(--gray-400); }
.contact-form__success {
  text-align: center;
  color: #16a34a;
  font-size: .9rem;
  font-weight: 500;
  padding: .75rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-md);
}

/* ─── 16. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; align-items: center; }
}
.footer__logo { color: white; }
.footer__logo .nav__logo-mark {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
}
.footer__tagline {
  font-size: .85rem;
  color: var(--gray-500);
  margin-top: .4rem;
}
.footer__contact,
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--gray-400);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--accent-light); }
.footer__legal-link {
  font-size: .85rem;
  color: var(--gray-500);
  transition: color var(--t-fast);
}
.footer__legal-link:hover { color: var(--gray-300); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .82rem;
  color: var(--gray-500);
}

/* ─── 17. WHATSAPP FAB ───────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-fab__ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: pulseRing 2.5s ease-out infinite;
  pointer-events: none;
}
.whatsapp-fab__btn {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.whatsapp-fab__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}
.whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  background: var(--gray-900);
  color: white;
  font-size: .78rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: var(--r-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.whatsapp-fab__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--gray-900);
}
.whatsapp-fab:hover .whatsapp-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ─── 18. SURPRISE POPUP ─────────────────────────────────────── */
.surprise-popup__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,26,34,.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 299;
  animation: fadeIn .3s ease;
}
.surprise-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  z-index: 300;
  width: min(420px, calc(100vw - 2rem));
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border-m);
  padding: 2rem;
  animation: popupSlideUp .4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.surprise-popup__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: grid;
  place-items: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.surprise-popup__close:hover { background: var(--gray-200); color: var(--gray-900); }
.surprise-popup__content { text-align: center; }
.surprise-popup__emoji { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.surprise-popup__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
}
.surprise-popup__text {
  font-size: .9rem;
  color: var(--text-m);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ─── 19. KEYFRAMES ──────────────────────────────────────────── */
@keyframes blobFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.03); }
  66% { transform: translate(20px,-30px) scale(.97); }
}
@keyframes blobFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(30px,-20px) scale(1.05); }
  80% { transform: translate(-20px, 30px) scale(.95); }
}
@keyframes blobFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(15px,15px) scale(1.08); }
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,125,171,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(232,125,171,0); }
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .8; }
  80%, 100% { transform: scale(1.65); opacity: 0; }
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30% { opacity: 1; }
  70% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes pricePop {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); color: var(--accent); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popupSlideUp {
  from { transform: translateX(-50%) translateY(40px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ─── 20. UTILITIES ──────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── 21. ÜBER MICH / ABOUT ──────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .about__inner { grid-template-columns: 420px 1fr; }
}

/* Photo frame */
.about__photo-wrap { position: relative; display: flex; justify-content: center; }
.about__photo-frame {
  position: relative;
  width: min(340px, 90vw);
  flex-shrink: 0;
}
.about__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-xl);
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-xl);
  border: 4px solid white;
  transition: transform var(--t-slow);
}
.about__photo-frame:hover .about__photo {
  transform: scale(1.02) translateY(-4px);
}

/* Decorative ring */
.about__photo-deco--ring {
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-xl) + 14px);
  border: 2px dashed var(--pink-300);
  z-index: 0;
  animation: spinSlow 25s linear infinite;
}
/* Pink blob behind photo */
.about__photo-deco--blob {
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--pink-200), var(--pink-400));
  border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
  bottom: -10%;
  right: -10%;
  z-index: 0;
  opacity: .45;
  animation: blobFloat1 9s ease-in-out infinite;
  filter: blur(20px);
}
/* Dot grid accent */
.about__photo-deco--dots {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--pink-400) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 0;
  opacity: .5;
}

/* Availability badge */
.about__photo-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  background: white;
  border: 1px solid var(--border-m);
  box-shadow: var(--sh-md);
  border-radius: var(--r-full);
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: #16a34a;
  z-index: 2;
}
.about__photo-badge svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* Text column */
.about__content { max-width: 560px; }
.about__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 1rem;
  margin-top: .5rem;
}
.about__text {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.about__text strong { color: var(--gray-900); font-weight: 600; }

/* Stats row */
.about__stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.75rem 0;
  padding: 1.5rem;
  background: var(--pink-50);
  border: 1px solid var(--border-m);
  border-radius: var(--r-lg);
}
.about__stat { display: flex; flex-direction: column; gap: .15rem; }
.about__stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}
.about__stat-label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── 22. PRICE COMPARISON TABLE ─────────────────────────────── */
.pkg-compare {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
  margin-bottom: 2.5rem;
}

.pkg-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: .9rem;
  color: var(--gray-700);
  background: white;
}

/* Header row */
.pkg-table thead tr {
  border-bottom: 2px solid var(--gray-200);
}
.pkg-table thead th {
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  background: var(--gray-50);
  position: relative;
  vertical-align: bottom;
}
.pkg-table thead th.pkg-table__feature-col {
  text-align: left;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-d);
  font-weight: 600;
  width: 36%;
}

/* Featured column header */
.pkg-table__col--featured {
  background: var(--pink-50) !important;
}
.pkg-table thead th.pkg-table__col--featured {
  border-top: 3px solid var(--accent);
}

/* Plan name / price in header */
.pkg-table__plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .15rem;
}
.pkg-table__plan-price {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
}

/* Popular badge inside header */
.pkg-table__popular-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  padding: .2rem .55rem;
  border-radius: var(--r-full);
  margin-bottom: .5rem;
}

/* Body rows */
.pkg-table tbody td {
  padding: .85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.pkg-table tbody td.pkg-table__row-label {
  text-align: left;
  font-weight: 500;
  color: var(--gray-900);
  font-size: .875rem;
}
.pkg-table__row--alt td { background: var(--gray-50); }
.pkg-table__row--alt td.pkg-table__col--featured { background: var(--pink-50); }
.pkg-table tbody tr:last-child td { border-bottom: none; }

/* Hover row highlight */
.pkg-table tbody tr:hover td { background: var(--pink-50); }
.pkg-table tbody tr:hover td.pkg-table__col--featured { background: var(--pink-100); }

/* Check / cross symbols */
.chk {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}
.crs {
  font-size: 1rem;
  color: var(--gray-300);
  font-weight: 400;
}

/* Small qualifier note after ✓ */
.pkg-table__note {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-m);
  display: block;
  margin-top: .1rem;
}

/* ─── 22b. PACKAGE PICKER ─────────────────────────────────────── */
.pkg-picks { }
.pkg-picks__hint {
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-m);
  margin-bottom: 1rem;
  letter-spacing: .02em;
}

.pkg-picks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .pkg-picks__grid { grid-template-columns: 1fr; max-width: 280px; }
}

.pkg-pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: 1.1rem .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: white;
  cursor: pointer;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base), background var(--t-base);
  position: relative;
  text-align: center;
}
.pkg-pick:hover {
  border-color: var(--accent);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.pkg-pick.is-selected {
  border-color: var(--accent);
  background: var(--pink-50);
  box-shadow: var(--sh-md);
}
.pkg-pick.is-selected .pkg-pick__select-label {
  color: var(--accent);
}

.pkg-pick--featured {
  border-color: var(--accent);
}
.pkg-pick--featured.is-selected {
  background: var(--pink-100);
  box-shadow: var(--sh-lg);
}

.pkg-pick__badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: white;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  padding: .18rem .5rem;
  border-radius: var(--r-full);
  margin-bottom: .15rem;
}
.pkg-pick__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}
.pkg-pick__price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
}
.pkg-pick__select-label {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-d);
  margin-top: .3rem;
  transition: color var(--t-fast);
}

/* Action bar — hidden until a pkg is selected */
/* Betreuung line inside each pkg-pick card */
.pkg-pick__betreuung {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: .35rem;
  line-height: 1.3;
}
.pkg-pick__betreuung svg { flex-shrink: 0; }

.pkg-pick__betreuung-note {
  font-size: .65rem;
  font-weight: 500;
  color: var(--text-d);
  letter-spacing: .02em;
}

/* Mandatory info note below the grid */
.pkg-picks__mandatory-note {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: .8rem;
  color: var(--text-m);
  line-height: 1.6;
  background: var(--pink-50);
  border: 1px solid var(--border-m);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
}
.pkg-picks__mandatory-note svg {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--accent);
}

.pkg-action-bar {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid var(--border-m);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  animation: fadeIn .3s ease both;
}
.pkg-action-bar.is-visible {
  display: flex;
}
.pkg-action-bar__text {
  font-size: .95rem;
  color: var(--text-m);
  text-align: center;
}
.pkg-action-bar__text strong {
  color: var(--gray-900);
  font-weight: 700;
}
.pkg-action-bar__btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* ─── 23. BRANCHEN GRID (index.html #leistungen) ─────────────── */
.branchen__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .branchen__grid { grid-template-columns: repeat(3, 1fr); }
}

.branche-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid var(--border-m);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}
.branche-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-50), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.branche-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--accent); }
.branche-card:hover::before { opacity: 1; }

.branche-card__icon {
  font-size: 2.2rem;
  line-height: 1;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--pink-100);
  border-radius: var(--r-md);
  transition: background var(--t-base);
}
.branche-card:hover .branche-card__icon { background: var(--pink-200); }

.branche-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}
.branche-card__desc {
  font-size: .875rem;
  color: var(--text-m);
  line-height: 1.55;
  flex: 1;
}
.branche-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: .48rem .95rem;
  border-radius: var(--r-full);
  margin-top: .2rem;
  transition: gap var(--t-base), background var(--t-base), color var(--t-base);
}
.branche-card:hover .branche-card__arrow {
  gap: .7rem;
  background: var(--accent);
  color: #fff;
}
.branche-card__arrow svg { flex-shrink: 0; }

/* Disabled / coming-soon branche cards */
.branche-card--disabled {
  opacity: .52;
  cursor: default;
  pointer-events: none;
  filter: grayscale(.35);
}
.branche-card--disabled:hover {
  transform: none;
  box-shadow: var(--sh-sm);
  border-color: var(--border-m);
}
.branche-card--disabled::before { display: none; }

.branche-card__soon {
  position: absolute;
  top: .75rem;
  right: .75rem;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-d);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: .18rem .5rem;
  border-radius: var(--r-full);
}

/* ─── 23. SUBPAGE HERO ────────────────────────────────────────── */
.subpage-hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, var(--pink-50) 0%, var(--white) 60%, var(--pink-100) 100%);
  position: relative;
  overflow: hidden;
}
.subpage-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.subpage-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}
.subpage-hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ffc9e0, transparent 70%);
  top: -20%; right: -5%;
  animation: blobFloat1 8s ease-in-out infinite;
}
.subpage-hero__blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #ffadd1, transparent 70%);
  bottom: -10%; left: -5%;
  animation: blobFloat2 11s ease-in-out infinite;
}
.subpage-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.subpage-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--gray-900);
  margin-top: .75rem;
  margin-bottom: 1rem;
}
.subpage-hero__sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--text-m);
  line-height: 1.72;
  margin-bottom: 2rem;
  max-width: 600px;
}
.subpage-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ─── 24. SUBPAGE TRUST ───────────────────────────────────────── */
.subpage-trust__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 660px;
  margin: 0 auto;
}
.subpage-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-m);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.subpage-trust__item:hover { transform: translateX(4px); box-shadow: var(--sh-md); }
.subpage-trust__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--pink-100);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.2rem;
}
.subpage-trust__body { display: flex; flex-direction: column; gap: .2rem; }
.subpage-trust__body strong { font-size: .95rem; font-weight: 600; color: var(--gray-900); }
.subpage-trust__body span { font-size: .88rem; color: var(--text-m); line-height: 1.55; }

/* ─── 25. SUBPAGE FEATURES ────────────────────────────────────── */
.subpage-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .subpage-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .subpage-features__grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  padding: 1.5rem;
  border-radius: var(--r-lg);
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border-m); }
.feature-item__icon { font-size: 2rem; margin-bottom: .75rem; line-height: 1; }
.feature-item__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .4rem;
}
.feature-item__desc { font-size: .875rem; color: var(--text-m); line-height: 1.6; }

/* ─── 26. SUBPAGE FINAL CTA ───────────────────────────────────── */
.subpage-cta { text-align: center; }
.subpage-cta__emoji { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.subpage-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .75rem;
}
.subpage-cta__sub { color: var(--text-m); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.65; max-width: 560px; margin-left: auto; margin-right: auto; }
.subpage-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ─── 27. SUBPAGE BACK LINK ───────────────────────────────────── */
.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-m);
  padding: .4rem 0;
  margin-bottom: 1rem;
  transition: color var(--t-fast), gap var(--t-fast);
}
.subpage-back:hover { color: var(--accent); gap: .6rem; }

/* ─── 28. SHOWCASE CARDS (browser mockup previews) ──────────── */
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 860px) {
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
}

.showcase-card {
  border-radius: var(--r-xl);
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

/* ── Browser chrome area ── */
.showcase-card__preview {
  background: var(--gray-100);
  padding: 0;
  overflow: hidden;
}
.showcase-card__preview--concept {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--pink-100) 100%);
}

.showcase-card__browser-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .85rem;
  background: var(--gray-200);
  border-bottom: 1px solid var(--gray-300);
}
.showcase-card__preview--concept .showcase-card__browser-bar {
  background: rgba(255,192,215,.35);
  border-bottom-color: rgba(255,160,200,.35);
}
.showcase-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.showcase-card__url {
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray-600);
  background: white;
  padding: .15rem .65rem;
  border-radius: 999px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .01em;
  max-width: 220px;
  margin-left: .3rem;
}
.showcase-card__preview--concept .showcase-card__url {
  background: rgba(255,255,255,.6);
  color: var(--gray-700);
}

/* ── Simulated screen ── */
.showcase-card__screen {
  height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: .5rem;
  position: relative;
}

/* Nav simulation */
.sc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .3rem .4rem;
  background: white;
  border-radius: var(--r-sm);
  margin-bottom: .4rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.sc-nav__logo {
  width: 48px;
  height: 8px;
  background: var(--gray-300);
  border-radius: 4px;
}
.sc-nav__logo--pink {
  background: linear-gradient(90deg, var(--pink-400), var(--pink-500));
}
.sc-nav__links {
  display: flex;
  gap: .35rem;
}
.sc-nav__links span {
  display: block;
  width: 20px;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
}

/* Hero simulation */
.sc-hero {
  flex: 1;
  border-radius: var(--r-sm);
  padding: .7rem .65rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  justify-content: center;
}
.sc-hero--blue {
  background: linear-gradient(135deg, #e8f4ff 0%, #dbeafe 100%);
}
.sc-hero--pink {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--pink-100) 100%);
}
.sc-hero__line {
  border-radius: 4px;
  flex-shrink: 0;
}
.sc-hero__line--h {
  height: 9px;
  width: 70%;
  background: var(--gray-700);
  opacity: .7;
}
.sc-hero__line--sub {
  height: 6px;
  width: 52%;
  background: var(--gray-400);
  opacity: .6;
}
.sc-hero__btn {
  width: 55px;
  height: 16px;
  background: #3b82f6;
  border-radius: 8px;
  margin-top: .2rem;
}
.sc-hero--pink .sc-hero__btn {
  background: linear-gradient(90deg, var(--pink-500), var(--pink-600));
}
.sc-hero__btn--outline {
  background: transparent;
  border: 1.5px solid var(--pink-400);
}

/* Trust / stars row */
.sc-trust {
  display: flex;
  gap: .35rem;
  margin-top: .35rem;
}
.sc-trust__item {
  flex: 1;
  background: white;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
.sc-trust__star {
  font-size: .5rem;
  color: #f59e0b;
  letter-spacing: -.5px;
  line-height: 1;
}

/* Cards row */
.sc-cards {
  display: flex;
  gap: .35rem;
  margin-top: .35rem;
}
.sc-card {
  flex: 1;
  height: 32px;
  background: white;
  border-radius: var(--r-sm);
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}

/* Features row (concept card) */
.sc-features {
  display: flex;
  gap: .35rem;
  margin-top: .35rem;
}
.sc-feature {
  flex: 1;
  background: white;
  border-radius: var(--r-sm);
  padding: .4rem .35rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
.sc-feature__icon {
  width: 12px;
  height: 12px;
  background: var(--pink-200);
  border-radius: 3px;
}
.sc-feature__line {
  height: 5px;
  background: var(--gray-200);
  border-radius: 3px;
  width: 80%;
}

/* "Dein Projekt" overlay label */
.sc-concept-label {
  position: absolute;
  bottom: .85rem;
  right: .85rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: white;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  padding: .2rem .55rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
}

/* ── Card body ── */
.showcase-card__body {
  padding: 1.5rem;
}

.showcase-card__ref-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: .25rem .6rem;
  border-radius: var(--r-full);
  margin-bottom: .75rem;
}
.showcase-card__ref-badge--concept {
  color: var(--accent);
  background: var(--pink-50);
  border-color: var(--pink-200);
}

.showcase-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.showcase-card__text {
  font-size: .88rem;
  color: var(--text-m);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.showcase-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.showcase-card__tag {
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

/* ─── 29. PORTFOLIO 3-SQUARE GRID ────────────────────────────── */
.portfolio__grid--3sq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 860px) {
  .portfolio__grid--3sq { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .portfolio__grid--3sq { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* Square image area */
.portfolio-card--sq .portfolio-card__img {
  aspect-ratio: 1 / 1;
}

/* Real screenshot inside browser content */
.portfolio-card__img--ss {
  background: #e8ecf0;
}
.portfolio-card__browser-content--screenshot {
  padding: 0;
  overflow: hidden;
  height: 100%;
  background: white;
}
.portfolio-card__browser-content--screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ─── 30. LEGAL PAGES (Impressum / Datenschutz) ──────────────── */
.legal-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2rem;
  background: linear-gradient(160deg, var(--pink-50) 0%, white 100%);
}
.legal-hero__label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.legal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
}

.legal-body {
  padding: 3rem 0 5rem;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  padding-bottom: .4rem;
  border-bottom: 1.5px solid var(--gray-100);
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: 1.25rem;
  margin-bottom: .35rem;
}
.legal-content p {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin: .5rem 0 .75rem 0;
}
.legal-content ul li {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.legal-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.legal-content address {
  font-style: normal;
  font-size: .95rem;
  color: var(--text-m);
  line-height: 1.9;
  background: var(--pink-50);
  border: 1px solid var(--border-m);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { text-decoration: none; }

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