/* ─── RESET (scoped) ─────────────────────────────────────────── */
#wpp *, #wpp *::before, #wpp *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

/* ─── TOKENS ─────────────────────────────────────────────────── */
#wpp {
  --bg:        #F5F0E8;
  --ink:       #1A1410;
  --accent:    #C84B2F;
  --accent2:   #3D6B4F;
  --muted:     #8A8070;
  --card:      #FFFFFF;
  --border:    #DDD5C8;
  --gold:      #C8A87A;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* noise texture */
#wpp::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .5; pointer-events: none;
}

/* ─── NAV ────────────────────────────────────────────────────── */
#wpp-nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #DDD5C8;
}
#wpp-nav .logo-img { height: 38px; width: auto; display: block; }
#wpp .footer-logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); display: block; }
#wpp-nav .logo {
  font-family: var(--font-head); font-weight: 900; font-size: 1.4rem;
  color: #1A1410; text-decoration: none; letter-spacing: -0.02em;
}
#wpp-nav .logo span { color: #C84B2F; }
#wpp-nav ul { list-style: none; display: flex; gap: 2rem; }
#wpp-nav ul a {
  text-decoration: none; color: #8A8070; font-size: .9rem;
  font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
#wpp-nav ul a:hover { color: #1A1410; }
#wpp-nav .nav-cta {
  background: #1A1410; color: #F5F0E8 !important;
  padding: .5rem 1.2rem; border-radius: 2px;
}
#wpp-nav .nav-cta:hover { background: #C84B2F; color: #fff !important; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
#wpp h1 {
  font-family: var(--font-head); font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900; line-height: 1.06; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 1.5rem; text-wrap: balance;
}
#wpp h1 em { font-style: italic; color: var(--accent); }
#wpp h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 1rem; text-wrap: balance;
}
#wpp h2 em { font-style: italic; color: var(--accent); }
#wpp h3 { font-family: var(--font-head); }

/* ─── HERO ───────────────────────────────────────────────────── */
#wpp .hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 10rem 5vw 6rem; gap: 4rem; position: relative;
}
#wpp .hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1.5rem;
}
#wpp .hero-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--accent); }
#wpp .hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 460px; margin-bottom: 2.5rem; line-height: 1.7; }
#wpp .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
#wpp .btn {
  display: inline-block; padding: .85rem 2rem;
  font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  text-decoration: none; border-radius: 2px; transition: all .2s;
  cursor: pointer; border: none;
}
#wpp .btn-primary { background: var(--accent); color: #fff; }
#wpp .btn-primary:hover { background: #a83a22; transform: translateY(-2px); }
#wpp .btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
#wpp .btn-ghost:hover { border-color: var(--ink); }

/* Hero visual */
#wpp .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
#wpp .browser-mock {
  width: 100%; max-width: 500px; background: #fff; border-radius: 8px;
  box-shadow: 0 24px 80px rgba(26,20,16,.15), 0 4px 12px rgba(26,20,16,.08);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); transition: transform .4s;
}
#wpp .browser-mock:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0); }
#wpp .browser-bar {
  background: #F0EBE3; padding: .7rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid #E0D8CE;
}
#wpp .dot { width: 10px; height: 10px; border-radius: 50%; }
#wpp .dot-r { background: #FF6057; }
#wpp .dot-y { background: #FEBC2E; }
#wpp .dot-g { background: #29C840; }
#wpp .browser-url {
  flex: 1; background: #fff; border-radius: 3px;
  padding: .25rem .75rem; font-size: .72rem; color: var(--muted);
  margin-left: .5rem; border: 1px solid var(--border);
}
#wpp .browser-content { padding: 1.5rem; }
#wpp .mock-hero-bar { height: 12px; background: #C84B2F; border-radius: 2px; margin-bottom: .8rem; width: 55%; }
#wpp .mock-line { height: 8px; background: var(--border); border-radius: 2px; margin-bottom: .5rem; }
#wpp .mock-line:nth-child(3) { width: 80%; }
#wpp .mock-line:nth-child(4) { width: 65%; }
#wpp .mock-line:nth-child(5) { width: 72%; }
#wpp .mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem; margin-top: 1rem; }
#wpp .mock-card { background: var(--bg); border-radius: 4px; padding: .6rem; height: 60px; }
#wpp .mock-card-dot { width: 18px; height: 18px; background: var(--accent); border-radius: 3px; margin-bottom: .4rem; opacity: .6; }
#wpp .mock-card-line { height: 5px; background: var(--border); border-radius: 2px; width: 70%; }

/* Floating badges */
#wpp .badge {
  position: absolute; background: var(--ink); color: var(--bg);
  padding: .6rem 1rem; border-radius: 4px; font-size: .78rem;
  font-weight: 500; box-shadow: 0 8px 24px rgba(26,20,16,.2); white-space: nowrap;
}
#wpp .badge-1 { top: 10%; left: -8%; animation: wpp-float 4s ease-in-out infinite; }
#wpp .badge-2 { bottom: 15%; right: -5%; background: #3D6B4F; color: #fff; animation: wpp-float 4s ease-in-out infinite 1.5s; }
@keyframes wpp-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
#wpp .hero::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  pointer-events: none;
}

/* ─── TRUST BAR ──────────────────────────────────────────────── */
#wpp .trust-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.4rem 5vw; display: flex; align-items: center; gap: 3rem;
  flex-wrap: wrap; background: rgba(255,255,255,.5);
}
#wpp .trust-bar p { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 500; white-space: nowrap; }
#wpp .trust-items { display: flex; gap: 2.5rem; flex-wrap: wrap; }
#wpp .trust-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 500; color: var(--muted); }
#wpp .trust-item svg { color: #3D6B4F; flex-shrink: 0; }

/* ─── SECTION COMMON ─────────────────────────────────────────── */
#wpp .wpp-section { padding: 7rem 5vw; }
#wpp .section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1.2rem;
}
#wpp .section-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--accent); }
#wpp .section-intro { font-size: 1.05rem; color: var(--muted); max-width: 520px; line-height: 1.8; margin-bottom: 3.5rem; }

/* ─── LEISTUNGEN ─────────────────────────────────────────────── */
#wpp .leistungen { background: var(--ink); color: var(--bg); }
#wpp .leistungen .section-tag { color: var(--gold); }
#wpp .leistungen .section-tag::before { background: var(--gold); }
#wpp .leistungen h2 { color: var(--bg); }
#wpp .leistungen h2 em { color: var(--gold); }
#wpp .leistungen .section-intro { color: rgba(245,240,232,.6); }
#wpp .services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.5px; border: 1.5px solid rgba(255,255,255,.08); }
#wpp .service-card {
  background: rgba(255,255,255,.04); padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,.06); transition: background .2s;
  position: relative; overflow: hidden;
}
#wpp .service-card:hover { background: rgba(255,255,255,.08); }
#wpp .service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
#wpp .service-card:hover::before { transform: scaleX(1); }
#wpp .service-icon {
  width: 44px; height: 44px; background: rgba(200,75,47,.15); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem; font-size: 1.3rem;
}
#wpp .service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--bg); margin-bottom: .7rem; }
#wpp .service-card p { font-size: .9rem; color: rgba(245,240,232,.55); line-height: 1.7; }
#wpp .service-badge {
  display: inline-block; margin-top: .8rem; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(61,107,79,.3); color: #7EC89A;
  padding: .2rem .6rem; border-radius: 2px; font-weight: 500;
}

/* ─── PORTFOLIO ──────────────────────────────────────────────── */
#wpp .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
#wpp .portfolio-card {
  border: 1.5px solid var(--border); border-radius: 6px;
  overflow: hidden; background: var(--card);
  transition: all .25s; position: relative;
}
#wpp .portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,20,16,.12); }
#wpp .portfolio-card:hover .pf-overlay { opacity: 1; }

#wpp .pf-browser {
  background: var(--bg); border-bottom: 1.5px solid var(--border);
}
#wpp .pf-browser-bar {
  display: flex; align-items: center; gap: .4rem;
  padding: .55rem .8rem; background: #ede8e0;
  border-bottom: 1px solid var(--border);
}
#wpp .pf-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
#wpp .pf-url {
  flex: 1; background: #fff; border-radius: 3px;
  padding: .2rem .6rem; font-size: .68rem; color: var(--muted);
  border: 1px solid var(--border); font-family: var(--font-body);
}
#wpp .pf-screen {
  height: 160px; position: relative; overflow: hidden;
}
#wpp .pf-screen img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block; transition: transform .4s;
}
#wpp .portfolio-card:hover .pf-screen img { transform: scale(1.03); }

#wpp .pf-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
}
#wpp .pf-placeholder-icon { font-size: 2rem; opacity: .35; }
#wpp .pf-placeholder-url { font-size: .75rem; color: var(--muted); letter-spacing: .04em; }

#wpp .pf-overlay {
  position: absolute; inset: 0;
  background: rgba(26,20,16,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
#wpp .pf-overlay a {
  background: #fff; color: var(--ink);
  padding: .55rem 1.3rem; border-radius: 2px;
  font-size: .82rem; font-weight: 500; text-decoration: none;
  transition: background .15s;
}
#wpp .pf-overlay a:hover { background: var(--accent); color: #fff; }

#wpp .pf-body { padding: 1.2rem 1.4rem 1.4rem; }
#wpp .pf-tag {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: .4rem;
}
#wpp .pf-title {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .35rem;
}
#wpp .pf-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

#wpp .portfolio-card.pf-more {
  border-style: dashed; background: transparent;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 3rem 2rem; gap: .8rem;
  min-height: 270px;
}
#wpp .portfolio-card.pf-more:hover { background: rgba(200,75,47,.04); border-color: var(--accent); }
#wpp .pf-more-icon { font-size: 2.2rem; opacity: .3; }
#wpp .pf-more-text { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ─── PROZESS ────────────────────────────────────────────────── */
#wpp .process-steps { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 2rem; }
#wpp .step-number { font-family: var(--font-head); font-size: 4rem; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: .5rem; user-select: none; }
#wpp .process-step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
#wpp .process-step p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ─── PREISE ─────────────────────────────────────────────────── */
#wpp .preise { background: #fff; }
#wpp .pricing-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 2rem; }
#wpp .pricing-card {
  border: 1.5px solid var(--border); border-radius: 4px; padding: 2.5rem 2rem;
  position: relative; transition: all .25s; background: var(--card);
}
#wpp .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,20,16,.1); }
#wpp .pricing-card.featured { border-color: var(--accent); background: var(--ink); color: var(--bg); }
#wpp .feat-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; padding: .25rem .8rem; border-radius: 2px;
  font-weight: 500; white-space: nowrap;
}
#wpp .pricing-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; }
#wpp .pricing-card.featured h3 { color: var(--bg); }
#wpp .price { font-family: var(--font-head); font-size: 3rem; font-weight: 900; line-height: 1; margin: 1rem 0 .3rem; }
#wpp .price span { font-size: 1.2rem; font-weight: 300; }
#wpp .price-note { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; }
#wpp .pricing-card.featured .price-note { color: rgba(245,240,232,.5); }
#wpp .feature-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
#wpp .feature-list li { font-size: .88rem; display: flex; gap: .6rem; align-items: flex-start; }
#wpp .feature-list li::before { content: '✓'; color: var(--accent2); font-weight: 700; flex-shrink: 0; margin-top: .05em; }
#wpp .pricing-card.featured .feature-list li { color: rgba(245,240,232,.8); }

/* ─── FAQ ────────────────────────────────────────────────────── */
#wpp .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#wpp .faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: 4px; overflow: hidden; }
#wpp .faq-question {
  padding: 1.3rem 1.5rem; font-weight: 500; font-size: .95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; user-select: none;
}
#wpp .faq-question:hover { background: var(--bg); }
#wpp .faq-icon {
  width: 22px; height: 22px; flex-shrink: 0; background: var(--ink); color: var(--bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: transform .25s, background .2s;
}
#wpp .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); }
#wpp .faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s;
  font-size: .9rem; color: var(--muted); line-height: 1.7; padding: 0 1.5rem;
}
#wpp .faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.3rem; }

/* ─── ÜBER MICH ──────────────────────────────────────────────── */
#wpp .ueber-mich { background: var(--ink); color: var(--bg); }
#wpp .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
#wpp .ueber-mich .section-tag { color: var(--gold); }
#wpp .ueber-mich .section-tag::before { background: var(--gold); }
#wpp .ueber-mich h2 { color: var(--bg); }
#wpp .ueber-mich h2 em { color: var(--gold); }
#wpp .ueber-mich .section-intro { color: rgba(245,240,232,.6); margin-bottom: 2rem; }
#wpp .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
#wpp .stat-box { border: 1px solid rgba(255,255,255,.1); padding: 1.5rem; border-radius: 4px; }
#wpp .stat-number { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: .3rem; }
#wpp .stat-label { font-size: .82rem; color: rgba(245,240,232,.5); }
#wpp .about-avatar {
  aspect-ratio: 1; background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1); border-radius: 4px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 3rem; position: relative; overflow: hidden;
}
#wpp .about-avatar::before {
  content: ''; position: absolute; top: -40%; left: -40%; width: 80%; height: 80%;
  background: radial-gradient(circle,rgba(200,75,47,.15),transparent 70%); pointer-events: none;
}
#wpp .avatar-initials { font-family: var(--font-head); font-size: 5rem; font-weight: 900; color: rgba(200,168,122,.3); line-height: 1; }
#wpp .avatar-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--bg); }
#wpp .avatar-title { font-size: .82rem; color: rgba(245,240,232,.4); letter-spacing: .08em; text-transform: uppercase; }

/* ─── KONTAKT ────────────────────────────────────────────────── */
#wpp .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
#wpp .contact-points { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
#wpp .contact-point { display: flex; gap: 1rem; align-items: flex-start; }
#wpp .cp-icon {
  width: 38px; height: 38px; background: var(--ink); color: var(--bg);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
#wpp .cp-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 500; }
#wpp .cp-value { font-size: .95rem; font-weight: 500; }
#wpp .cp-value a { color: inherit; text-decoration: none; }
#wpp .cp-value a:hover { color: var(--accent); }

#wpp .wa-qr-toggle {
  margin-top: .6rem; font-size: .78rem; color: var(--accent2);
  cursor: pointer; text-decoration: underline; display: inline-block;
  font-weight: 500;
}
#wpp .wa-qr-box {
  display: none; margin-top: .8rem;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 6px; padding: .8rem;
  width: 140px;
}
#wpp .wa-qr-box.visible { display: block; }
#wpp .wa-qr-box img { width: 120px; height: 120px; image-rendering: pixelated; display: block; }
#wpp .wa-qr-box p { font-size: .68rem; color: var(--muted); margin-top: .4rem; line-height: 1.4; }

#wpp .contact-form { display: flex; flex-direction: column; gap: 1rem; }
#wpp .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#wpp .field label {
  display: block; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); font-weight: 500; margin-bottom: .4rem;
}
#wpp .field input, #wpp .field textarea, #wpp .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border);
  border-radius: 2px; background: #fff; font-family: var(--font-body);
  font-size: .95rem; color: var(--ink); outline: none; transition: border-color .2s;
}
#wpp .field input:focus, #wpp .field textarea:focus, #wpp .field select:focus { border-color: var(--ink); }
#wpp .field textarea { resize: vertical; min-height: 120px; }
#wpp .field-hidden { display: none !important; }
#wpp .form-msg { font-size: .88rem; padding: .7rem 1rem; border-radius: 2px; display: none; }
#wpp .form-msg.success { background: #e8f5ed; color: #2d6a4a; border: 1px solid #b7dfca; display: block; }
#wpp .form-msg.error   { background: #fdecea; color: #8b2416; border: 1px solid #f5c0bb; display: block; }
#wpp .form-submit .btn { width: 100%; text-align: center; padding: 1rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#wpp .wpp-footer {
  background: var(--ink); color: rgba(245,240,232,.4);
  padding: 3rem 5vw; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
#wpp .footer-logo { font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; color: var(--bg); text-decoration: none; }
#wpp .footer-logo span { color: var(--accent); }
#wpp .wpp-footer p { font-size: .82rem; }
#wpp .wpp-footer a { color: rgba(245,240,232,.4); text-decoration: none; }
#wpp .wpp-footer a:hover { color: var(--bg); }
#wpp .footer-links { display: flex; gap: 1.5rem; }

/* ─── REVEAL ANIMATION ───────────────────────────────────────── */
#wpp .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
#wpp .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { #wpp .reveal, #wpp .reveal.visible { opacity:1; transform:none; transition:none; } }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  #wpp .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  #wpp .hero-visual { display: none; }
  #wpp .hero::after { display: none; }
  #wpp .faq-grid { grid-template-columns: 1fr; }
  #wpp .about-grid, #wpp .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  #wpp-nav ul { display: none; }
  #wpp .form-row { grid-template-columns: 1fr; }
}
