/* J.H Concept Webdesign — Justin Henken
   Shopify · Custom WordPress · E-Commerce
   Legacy stylesheet (primary styles now live in index.html Tailwind)
   Apple-smooth · Dark · Green glow · Soft gradients */

:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --surface: rgba(15, 15, 15, 0.6);
  --surface-hover: rgba(20, 20, 20, 0.85);
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(78, 208, 20, 0.3);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --green: #4ed014;
  --green-soft: rgba(78, 208, 20, 0.14);
  --green-glow: rgba(78, 208, 20, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --header-h: 76px;
  --font: "Inter", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-accent: "Plus Jakarta Sans", "Inter", sans-serif;
  --mono: "Inter", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1600px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
  font-weight: 300;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.accent {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--green);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; border: none; background: none; }
button { cursor: pointer; }
::selection { background: var(--green); color: #000; }

.container {
  width: min(100% - (var(--pad-x) * 2), var(--max));
  margin-inline: auto;
}

.glass {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero — 12-column desktop grid */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3.5rem) 0 5rem;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--pad-x) * 2), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-col-text {
  grid-column: 1 / span 7;
  min-width: 0;
}

.hero-col-visual {
  grid-column: 8 / span 5;
  min-width: 0;
  display: grid;
  place-items: center;
}

.hero-content {
  min-width: 0;
  max-width: none;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 1.35rem;
  max-width: none;
}

.hero-lead {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 2rem;
  font-weight: 300;
}
.mono {
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75em;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  opacity: 0.03;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-gradient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 15% 10%, rgba(78, 208, 20, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(78, 208, 20, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(78, 208, 20, 0.04), transparent 55%);
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 208, 20, 0.12), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.4s;
}
body.has-pointer .cursor-glow { opacity: 1; }

/* Soft section blend */
.soft-divider {
  height: 120px;
  margin: -40px 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(78, 208, 20, 0.06), transparent 70%);
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  width: min(100% - (var(--pad-x) * 2), var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: filter 0.3s, transform 0.3s var(--ease);
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 0 14px rgba(78, 208, 20, 0.5));
  transform: scale(1.02);
}

.nav { display: flex; align-items: center; gap: 1.45rem; }
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  border-radius: 99px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--text); }
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 0.6rem 1.15rem !important;
  border-radius: 999px !important;
  background: var(--green) !important;
  color: #000 !important;
  font-weight: 650 !important;
  box-shadow: 0 0 0 0 transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--green-glow) !important;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  place-items: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 12px;
  background: var(--surface);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 1.1rem 1.75rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 8px 30px rgba(78, 208, 20, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--green-glow);
  background: #5ae61f;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: rgba(78, 208, 20, 0.55);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(78, 208, 20, 0.18);
}

/* Shine sweep on hover */
.btn-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: none;
}
.btn-shine:hover::before {
  animation: shineSweep 0.85s var(--ease);
}
@keyframes shineSweep {
  to { transform: translateX(120%); }
}

.btn-primary.btn-shine::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(78, 208, 20, 0.5);
  animation: softPulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78, 208, 20, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(78, 208, 20, 0); }
}

/* Cards */
.card-glow {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s ease-in-out, border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out, background 0.35s ease-in-out;
}
.card-glow:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 48px rgba(78, 208, 20, 0.12);
  transform: translateY(-6px);
}

/* Hero background & motion (layout above) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 40%, rgba(78, 208, 20, 0.1), transparent 55%),
    var(--bg);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black, transparent);
  animation: gridPulse 9s ease-in-out infinite;
}
@keyframes gridPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-a {
  width: 360px; height: 360px;
  background: rgba(78, 208, 20, 0.18);
  top: 12%; right: 8%;
}
.orb-b {
  width: 280px; height: 280px;
  background: rgba(78, 208, 20, 0.1);
  bottom: 8%; left: 6%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -28px) scale(1.08); }
}

.floating-diamonds span {
  position: absolute;
  width: var(--size, 12px);
  height: var(--size, 12px);
  background: var(--green);
  opacity: var(--op, 0.35);
  border-radius: 3px;
  transform: rotate(45deg);
  animation: diamondDrift var(--dur, 14s) linear infinite;
  animation-delay: var(--delay, 0s);
  top: var(--y, 50%);
  left: var(--x, 50%);
}
@keyframes diamondDrift {
  0% { transform: rotate(45deg) translateY(0); opacity: 0; }
  12% { opacity: var(--op, 0.35); }
  90% { opacity: var(--op, 0.35); }
  100% { transform: rotate(45deg) translateY(-110vh) scale(0.5); opacity: 0; }
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.85rem;
  margin-bottom: 1.15rem;
}
.hero-kicker .dot { color: var(--text-muted); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.proof-strip li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 118px;
  transition: all 0.3s ease-in-out;
}
.proof-strip li:hover {
  border-color: rgba(78, 208, 20, 0.3);
  box-shadow: 0 0 30px rgba(78, 208, 20, 0.15);
}
.proof-strip strong {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.proof-strip span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 380px;
}

.diamond-stage {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.diamond-core {
  width: 48%;
  aspect-ratio: 1;
  background: var(--green);
  transform: rotate(45deg);
  border-radius: 18px;
  box-shadow: 0 0 50px var(--green-glow), 0 0 120px rgba(78, 208, 20, 0.28);
  animation: corePulse 3.5s ease-in-out infinite;
  display: grid;
  place-items: center;
  z-index: 2;
  overflow: hidden;
}
.diamond-logo {
  width: 70%;
  transform: rotate(-45deg);
  object-fit: contain;
}
@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 40px var(--green-glow), 0 0 100px rgba(78, 208, 20, 0.25); }
  50% { box-shadow: 0 0 70px var(--green-glow), 0 0 150px rgba(78, 208, 20, 0.4); }
}

.diamond-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(78, 208, 20, 0.32);
  border-radius: 28px;
  transform: rotate(45deg);
  animation: ringSpin 20s linear infinite;
}
.diamond-ring.delay {
  inset: 0;
  border-color: rgba(78, 208, 20, 0.15);
  animation-duration: 32s;
  animation-direction: reverse;
}
.diamond-scan {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(78, 208, 20, 0.22);
  border-radius: 24px;
  transform: rotate(45deg);
  animation: scanPulse 4s ease-in-out infinite;
}
@keyframes ringSpin { to { transform: rotate(405deg); } }
@keyframes scanPulse {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) scale(1); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.04); }
}

/* Sections */
.section {
  padding: 6.5rem 0;
  position: relative;
  z-index: 2;
}
.section-alt {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(78, 208, 20, 0.05), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.section-head {
  max-width: 560px;
  margin-bottom: 3.25rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 3px;
  transform: rotate(45deg);
  box-shadow: 0 0 14px var(--green-glow);
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
  margin-bottom: 0.9rem;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 48ch;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service {
  padding: 1.85rem;
  perspective: 800px;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--green);
  margin-bottom: 1.2rem;
  transition: transform 0.4s var(--ease);
}
.service:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
}
.service > p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.service li {
  font-size: 0.9rem;
  padding: 0.35rem 0 0.35rem 1rem;
  position: relative;
}
.service li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* Mid CTA */
.mid-cta {
  margin-top: 3rem;
  padding: 1.85rem 2.25rem;
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(78, 208, 20, 0.25);
  box-shadow: 0 0 50px rgba(78, 208, 20, 0.06);
  transition: box-shadow 0.35s ease-in-out, border-color 0.35s ease-in-out;
}
.mid-cta p {
  font-size: 1.05rem;
  font-weight: 550;
  letter-spacing: -0.02em;
  max-width: 42ch;
}

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.package {
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  background: var(--bg-3);
}
.package-featured {
  background:
    linear-gradient(180deg, rgba(78, 208, 20, 0.12), transparent 42%),
    var(--bg-3);
  border-color: rgba(78, 208, 20, 0.4);
  box-shadow: 0 0 60px rgba(78, 208, 20, 0.12);
  transform: scale(1.03);
}
.package-featured:hover { transform: scale(1.03) translateY(-8px); }
.package-badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--green);
  color: #000;
  font-weight: 750;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.package h3 { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.04em; }
.package-tag { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.2rem; }
.package-price {
  font-size: 2.15rem;
  font-weight: 750;
  color: var(--green);
  letter-spacing: -0.03em;
}
.package-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 0.25rem;
}
.package ul { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.package li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.package .btn { margin-top: auto; }

/* Bento Portfolio */
.bento-portfolio {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.bento-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(78, 208, 20, 0.3);
  box-shadow: 0 0 30px rgba(78, 208, 20, 0.15);
}

.bento-featured { grid-column: span 3; }
.bento-small { grid-column: span 2; }

.bento-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--green);
  color: #000;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.bento-mock {
  padding: 1.35rem 1.35rem 0;
  min-height: 200px;
}

.bento-mock.mini {
  min-height: 110px;
  margin: 1.1rem 1.1rem 0;
  border-radius: var(--radius-sm);
  padding: 0;
}

.bento-browser {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0a;
  transform: translateY(6px);
  transition: transform 0.4s ease-in-out;
}

.bento-card:hover .bento-browser { transform: translateY(0); }

.bento-preview {
  min-height: 180px;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 2rem;
}

.pv-stalaxy .bento-preview {
  background:
    radial-gradient(circle at 50% 30%, rgba(78, 208, 20, 0.22), transparent 55%),
    linear-gradient(160deg, #0c0c0c, #1a1a1a);
}
.pv-roesthof .bento-preview {
  background:
    radial-gradient(circle at 40% 40%, rgba(139, 90, 43, 0.4), transparent 55%),
    linear-gradient(160deg, #1a120c, #0d0a08);
}
.pv-noir.mini {
  background: linear-gradient(135deg, rgba(78, 208, 20, 0.2), #141414 60%);
}
.pv-helix.mini {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), #121212 55%);
}
.pv-verde.mini {
  background: linear-gradient(135deg, rgba(78, 208, 20, 0.12), #101810 60%);
}

.preview-brand {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
}
.pv-roesthof .preview-brand { color: #e8d5b5; }
.preview-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bento-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.bento-body .mono {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.bento-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  transition: color 0.3s ease-in-out;
}

.bento-card:hover .bento-body h3 { color: var(--green); }

.bento-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.35rem;
  font-weight: 300;
}

.featured-link {
  font-weight: 650;
  color: var(--green);
  font-size: 0.92rem;
  margin-top: auto;
}

.mock-dots {
  display: flex; gap: 6px;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: #0e0e0e;
}
.mock-dots i { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.mock-dots i:nth-child(1) { background: #ff5f57; }
.mock-dots i:nth-child(2) { background: #febc2e; }
.mock-dots i:nth-child(3) { background: #28c840; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-visual { display: flex; flex-direction: column; gap: 1.25rem; }
.about-frame {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(78, 208, 20, 0.18), transparent 55%),
    linear-gradient(160deg, #0e0e0e, #070707);
}
.about-glow {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  background: var(--green);
  opacity: 0.18;
  transform: rotate(45deg);
  border-radius: 24px;
  filter: blur(2px);
  animation: corePulse 4s ease-in-out infinite;
}
.about-brand-mark {
  position: relative;
  z-index: 1;
  width: min(58%, 220px);
  filter: drop-shadow(0 0 28px rgba(78, 208, 20, 0.35));
}
.about-nameplate {
  position: absolute;
  left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  z-index: 2;
  padding: 1rem 1.15rem;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.about-nameplate .mono {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.about-nameplate strong {
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.about-nameplate em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.about-facts { display: grid; gap: 0.15rem; }
.about-facts li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.about-facts li span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.about-copy h2 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.about-lead {
  font-size: 1.12rem;
  margin-bottom: 1rem;
  max-width: 42ch;
  font-weight: 400;
  color: var(--text);
}
.about-copy > p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  max-width: 48ch;
  font-weight: 300;
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.about-highlights strong {
  display: block;
  color: var(--green);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.about-highlights span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Process */
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  transition: background 0.35s;
}
.process-step:last-child { border-bottom: 1px solid var(--border); }
.process-step::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 99px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.process-step:hover::after,
.process-step.in-view::after { transform: scaleY(1); }
.process-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  transition: transform 0.35s var(--ease);
}
.process-step:hover .process-num { transform: translateX(6px); }
.process-step h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.45rem;
}
.process-step p { color: var(--text-muted); max-width: 52ch; font-weight: 300; }

/* Stats */
.stats-band {
  padding: 3.5rem 0;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 100% at 50% 50%, rgba(78, 208, 20, 0.07), transparent 65%),
    var(--bg-2);
  position: relative;
  z-index: 2;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
}
.stat > span { color: var(--text-muted); font-size: 0.88rem; }

/* Testimonials Bento */
.testimonials-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  min-height: 100%;
  transition: transform 0.35s ease-in-out, border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(78, 208, 20, 0.1);
}

.testimonial-card p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.025em;
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card footer strong { color: var(--green); }
.testimonial-card footer span { color: var(--text-muted); font-size: 0.88rem; }

/* Finale CTA + Calendly */
.cta-finale { padding-bottom: 7rem; }
.finale-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  padding: 2.5rem;
  background:
    radial-gradient(ellipse at top left, rgba(78, 208, 20, 0.14), transparent 50%),
    var(--bg-3);
  overflow: hidden;
  position: relative;
}
.finale-copy h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.finale-copy > p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  max-width: 40ch;
}
.cta-points {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.cta-points li {
  font-size: 0.95rem;
  padding-left: 1.2rem;
  position: relative;
}
.cta-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 2px;
  transform: rotate(45deg);
}
.calendly-hint {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: #666;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calendly-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  min-height: 640px;
  border: 1px solid var(--border);
}
.calendly-fallback {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg);
  padding: 0.75rem 0;
}
.calendly-fallback a { color: var(--green); }
.calendly-fallback code {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: #ccc;
}

.contact-alt {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.contact-alt h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--mono);
}
.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1.05rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(78, 208, 20, 0.12);
}
.form-note { font-size: 0.85rem; color: var(--green); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: #030303;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-brand strong { color: #fff; font-weight: 600; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  justify-content: flex-end;
  align-items: start;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--green); }
.footer-copy {
  grid-column: 1 / -1;
  color: #555;
  font-size: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Float CTA */
.float-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 40px rgba(78, 208, 20, 0.35);
  display: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.float-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 48px var(--green-glow);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .bento-portfolio { grid-template-columns: repeat(2, 1fr); }
  .bento-featured,
  .bento-small { grid-column: span 1; }
  .testimonials-bento { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero { padding-bottom: 3rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-col-text,
  .hero-col-visual {
    grid-column: 1 / -1;
  }
  .hero h1 { max-width: none; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .proof-strip, .hero-kicker { justify-content: center; }
  .hero-visual,
  .hero-col-visual { order: -1; min-height: 260px; }
  .diamond-stage { width: min(220px, 55vw); }

  .services-grid, .packages, .stats-row,
  .about-grid, .finale-panel, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .package-featured { transform: none; }
  .package-featured:hover { transform: translateY(-6px); }
  .about-highlights { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 64px 1fr; }
  .mid-cta { flex-direction: column; text-align: center; }
  .float-cta { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.2rem; font-weight: 600; }
  .nav-toggle { display: flex; z-index: 2; }
  .footer-links { justify-content: flex-start; }
  .calendly-wrap { min-height: 560px; }
}

@media (max-width: 600px) {
  .section { padding: 4.5rem 0; }
  .finale-panel { padding: 1.5rem; }
  .proof-strip li { min-width: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
