/* =========================================
   THIJS DESIGN — STYLESHEET v2
   Huisstijl: teal #2CC0B5 · wit achtergrond
   ========================================= */

@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@property --shimmer-pos {
  syntax: '<percentage>';
  inherits: false;
  initial-value: -50%;
}

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

:root {
  --accent:       #2CC0B5;
  --accent-dark:  #1FA89E;
  --accent-light: #E8F8F7;
  --accent-mid:   rgba(44,192,181,.12);
  --accent-glow:  rgba(44,192,181,.3);

  --bg:           #FFFFFF;
  --bg-alt:       #F5F9F9;
  --bg-dark:      #1A1C1C;

  --text:         #1A1C1C;
  --text2:        #4A5050;
  --text3:        #9AABAB;

  --border:       #E4ECEC;
  --border2:      #C8D8D8;

  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.12);
  --shadow-xl:    0 24px 80px rgba(0,0,0,.15);
  --shadow-glow:  0 8px 32px rgba(44,192,181,.28);

  --font:         'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --ease:         cubic-bezier(.22,1,.36,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
  --r:            16px;
  --r-lg:         24px;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3 { text-wrap: balance; }

/* --- CURSOR --- */
.cursor, .cursor-follower {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  transition: opacity .3s;
}
body.menu-open .cursor,
body.menu-open .cursor-follower,
body.menu-open .scroll-progress { opacity: 0; }
.cursor {
  width: 8px; height: 8px; background: var(--accent);
  transform: translate(-50%,-50%); top: 0; left: 0;
  mix-blend-mode: multiply;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(44,192,181,.45);
  transform: translate(-50%,-50%); top: 0; left: 0;
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
  backdrop-filter: blur(1px);
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 50px; height: 50px; border-color: var(--accent);
  background: rgba(44,192,181,.06);
}
@media (hover: none) { .cursor, .cursor-follower { display: none; } }

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 10000;
  height: 2.5px; width: 0%;
  background: linear-gradient(to right, #2CC0B5, #7DE8E3, #2CC0B5);
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  pointer-events: none;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(44,192,181,.5);
}
@keyframes progressShimmer {
  from { background-position: 100% 0; }
  to   { background-position: -100% 0; }
}

/* --- REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity .75s var(--ease), transform .75s var(--ease), filter .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.9rem; border-radius: 100px;
  font-weight: 700; font-size: .875rem; letter-spacing: .01em;
  transition: all .3s var(--ease); cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(44,192,181,.25);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(44,192,181,.4);
  background: linear-gradient(135deg, #32d4c9, var(--accent));
}
.btn--outline { background: transparent; color: var(--text); border: 2px solid var(--border2); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(44,192,181,.12); }
.btn--white { background: #fff; color: var(--accent); border: 2px solid #fff; font-weight: 700; }
.btn--white:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }
.btn--white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn--white-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* --- SECTION HEADERS --- */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .65rem;
}
.section-label::before {
  content: '';
  display: inline-block; width: 20px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16; font-weight: 400; color: var(--text);
  letter-spacing: -.02em;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(120deg, #2CC0B5 0%, #7DE8E3 45%, #2CC0B5 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShimmer 4s linear infinite;
}
@keyframes gradShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.section-sub { font-size: .95rem; color: var(--text2); max-width: 500px; margin: 1rem auto 0; line-height: 1.65; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header--left { text-align: left; margin-bottom: 2rem; }
.section-header--left .section-sub { margin-left: 0; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .7rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.04);
  transition: padding .4s;
}
.nav::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  z-index: -1;
}
.nav.scrolled {
  padding: .5rem 0;
}
.nav__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo-img { height: 32px; width: auto; max-width: 140px; object-fit: contain; }

.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__links a {
  font-size: .875rem; font-weight: 600; color: var(--text2);
  transition: color .2s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transition: transform .3s var(--ease);
  transform-origin: center;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--accent); }
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--accent) !important; color: #fff !important;
  padding: .55rem 1.4rem; border-radius: 100px;
  font-size: .8rem !important; font-weight: 700 !important;
  transition: all .25s var(--ease) !important;
  box-shadow: 0 4px 16px rgba(44,192,181,.3) !important;
}
.nav__cta:hover { background: var(--accent-dark) !important; transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(44,192,181,.4) !important; }
.nav__cta::after { display: none !important; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1002; position: relative; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }
.nav__burger.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:last-child  { transform: rotate(-45deg) translate(5px,-5px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 9rem 0 6rem; position: relative;
  background: url('../assets/hero-bg.svg') center/cover no-repeat #0B1918;
  overflow: hidden; text-align: center;
}

.hero__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); will-change: transform;
}
.hero__blob--a {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(44,192,181,.2) 0%, transparent 70%);
  top: -260px; right: -220px;
  animation: blobA 22s ease-in-out infinite;
}
.hero__blob--b {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(44,192,181,.14) 0%, transparent 70%);
  bottom: -220px; left: -200px;
  animation: blobB 28s ease-in-out infinite;
}
.hero__blob--c {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(125,232,227,.12) 0%, transparent 70%);
  top: 30%; left: 15%;
  animation: blobC 18s ease-in-out infinite 3s;
}
@keyframes blobA {
  0%,100% { transform: translate(0,0) scale(1); }
  30%     { transform: translate(-70px, 50px) scale(1.1); }
  65%     { transform: translate(50px,-60px) scale(.92); }
}
@keyframes blobB {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(80px,-60px) scale(1.12); }
  70%     { transform: translate(-50px, 70px) scale(.95); }
}
@keyframes blobC {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(90px,-40px) scale(1.18); }
}

/* Decorative ring in hero */
.hero__bg::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border: 1px solid rgba(44,192,181,.07);
  border-radius: 50%;
  animation: ringExpand 6s ease-in-out infinite;
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border: 1px solid rgba(44,192,181,.05);
  border-radius: 50%;
  animation: ringExpand 6s ease-in-out infinite 2s;
  pointer-events: none;
}
@keyframes ringExpand {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .6; }
  50%     { transform: translate(-50%,-50%) scale(1.05); opacity: 1; }
}

.hero__inner {
  display: flex; flex-direction: column; align-items: center;
  max-width: 860px; margin: 0 auto; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(44,192,181,.12); border: 1px solid rgba(44,192,181,.28);
  border-radius: 100px; padding: .45rem 1.1rem .45rem .7rem;
  font-size: .75rem; font-weight: 600; color: var(--accent);
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(44,192,181,.12);
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(44,192,181,.5); }
  50%     { box-shadow: 0 0 0 6px rgba(44,192,181,0); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -.025em;
  margin-bottom: 1.75rem; color: #fff;
  opacity: 0;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(120deg, #2CC0B5 0%, #7DE8E3 45%, #2CC0B5 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShimmer 3s linear 2.5s infinite;
}
.hero__sub {
  font-size: 1.1rem; color: rgba(255,255,255,.62); line-height: 1.8;
  max-width: 560px; margin-bottom: 2.75rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 4rem; }
.hero__stats { display: flex; align-items: center; gap: 2.5rem; justify-content: center; }
.stat { display: flex; flex-direction: column; gap: .1rem; align-items: center; }
.stat strong { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat__stars { font-size: .85rem; color: var(--accent); }
.stat span { font-size: .72rem; color: rgba(255,255,255,.45); font-weight: 500; }
.stat__div { width: 1px; height: 38px; background: rgba(255,255,255,.15); }

.hero__scroll {
  position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .25s;
}
.hero__scroll:hover { color: var(--accent); }
.hero__scroll-arrow { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(7px); }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1rem 0; background: var(--bg-alt);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee__track {
  display: flex; gap: 2rem; align-items: center;
  white-space: nowrap; animation: marqueeScroll 30s linear infinite; width: max-content;
}
.marquee__track span { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); }
.marquee__track em { color: var(--accent); font-style: normal; font-size: .9rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================
   SERVICES
   ========================================= */
.services { padding: 8rem 0; position: relative; overflow: hidden; }
/* ghost watermark */
.services::after {
  content: 'Diensten';
  position: absolute; top: 3rem; right: -2rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(6rem, 14vw, 15rem); font-weight: 400; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(44,192,181,.05);
  pointer-events: none; user-select: none;
  white-space: nowrap; z-index: 0;
}
.services .container { position: relative; z-index: 1; }

.services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-item {
  display: flex; flex-direction: column;
  padding: 1.75rem 2rem;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  background: var(--bg);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
  cursor: default; position: relative; overflow: hidden;
}

/* animated gradient border on hover */
.service-item::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: conic-gradient(from var(--angle), var(--accent), #7DE8E3, var(--accent));
  opacity: 0; transition: opacity .4s;
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
}
@keyframes rotateBorder {
  to { --angle: 360deg; }
}
.service-item:hover::before { opacity: 1; }

/* top accent line */
.service-item::after {
  content: attr(data-num);
  position: absolute; right: 1.75rem; bottom: 1rem;
  font-size: 7rem; font-weight: 900; line-height: 1;
  color: currentColor; opacity: .04; pointer-events: none;
  font-family: var(--font);
}

/* checkerboard dark cards */
.service-item:nth-child(2),
.service-item:nth-child(3) {
  background: linear-gradient(145deg, #192828 0%, #0e2020 100%);
  border-color: rgba(44,192,181,.22);
}
.service-item:nth-child(2) .service-item__num,
.service-item:nth-child(3) .service-item__num { color: var(--accent); }
.service-item:nth-child(2) .service-item__body h3,
.service-item:nth-child(3) .service-item__body h3 { color: #fff; }
.service-item:nth-child(2) .service-item__body p,
.service-item:nth-child(3) .service-item__body p { color: rgba(255,255,255,.55); }
.service-item:nth-child(2) .service-item__icon,
.service-item:nth-child(3) .service-item__icon { background: rgba(44,192,181,.18); color: var(--accent); }
.service-item:nth-child(2) .service-item__tags li,
.service-item:nth-child(3) .service-item__tags li { background: rgba(44,192,181,.14); color: #7DE8E3; }
.service-item:nth-child(2) .service-item__arrow,
.service-item:nth-child(3) .service-item__arrow { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.4); }
.service-item:nth-child(2)::after,
.service-item:nth-child(3)::after { opacity: .07; color: var(--accent); }

.service-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--accent); }

.service-item__left {
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.service-item__num {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.service-item__icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--accent-light); display: flex;
  align-items: center; justify-content: center; color: var(--accent);
  transition: background .3s var(--ease), color .3s, transform .35s var(--ease-spring);
}
.service-item:hover .service-item__icon {
  background: var(--accent); color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.service-item__icon svg { width: 26px; height: 26px; }

.service-item__body { flex: 1; display: flex; flex-direction: column; }
.service-item__body h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.service-item__body p { font-size: .875rem; color: var(--text2); line-height: 1.68; margin-bottom: .85rem; }
.service-item__tags {
  display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin-top: auto;
}
.service-item__tags li {
  font-size: .72rem; font-weight: 600; padding: .28rem .8rem;
  background: var(--accent-light); color: var(--accent);
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.service-item:hover .service-item__tags li { background: rgba(44,192,181,.15); }
.service-item__arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--border2); display: flex;
  align-items: center; justify-content: center; color: var(--text3);
  transition: all .3s var(--ease-spring); flex-shrink: 0; text-decoration: none;
  align-self: flex-start; margin-top: 1.25rem;
}
.service-item__arrow:hover, .service-item:hover .service-item__arrow {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: scale(1.1) translateX(2px);
}

/* =========================================
   PORTFOLIO
   ========================================= */
.portfolio { padding: 8rem 0; background: var(--bg-alt); position: relative; }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}


.pf-card {
  background: var(--bg); border-radius: var(--r-lg);
  overflow: hidden; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .3s;
  will-change: transform;
  position: relative;
}
.pf-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}
.pf-card__img {
  width: 100%; height: 220px; overflow: hidden; position: relative; flex-shrink: 0;
}
/* gradient overlay */
.pf-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,28,28,.8) 0%, rgba(26,28,28,.2) 40%, transparent 65%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 1;
}
.pf-card:hover .pf-card__img::after { opacity: 1; }

/* "Bekijk project" pill */
.pf-card__img::before {
  content: 'Bekijk project →';
  position: absolute; bottom: 1rem; left: 1.25rem; z-index: 3;
  background: #fff; color: var(--text);
  padding: .45rem 1rem; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  transform: translateY(12px);
  opacity: 0; transition: all .35s var(--ease);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.pf-card:hover .pf-card__img::before {
  transform: translateY(0);
  opacity: 1;
}

.pf-card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .6s var(--ease);
  display: block;
}
.pf-card:hover .pf-card__img img { transform: scale(1.08); }

.pf-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pf-card__cat {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-light); padding: .22rem .75rem; border-radius: 100px;
  margin-bottom: .65rem;
  transition: background .2s, color .2s;
}
.pf-card:hover .pf-card__cat { background: var(--accent); color: #fff; }
.pf-card__body h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  margin-bottom: .5rem;
}
.pf-card__body p {
  font-size: .85rem; color: var(--text2); line-height: 1.62; margin-bottom: 1rem;
}
.pf-card__tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; padding-top: .75rem; }
.pf-card__tags span {
  font-size: .68rem; font-weight: 600; color: var(--text3);
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: .2rem .65rem; border-radius: 100px;
}

/* Holographic shine */
.pf-card { --shine-x: 50%; --shine-y: 50%; }
.pf-card > .shine-layer {
  position: absolute; inset: 0; z-index: 4;
  border-radius: inherit; pointer-events: none;
  background: radial-gradient(
    circle at var(--shine-x) var(--shine-y),
    rgba(255,255,255,.3) 0%,
    rgba(255,255,255,.08) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity .4s ease;
}
.pf-card:hover > .shine-layer { opacity: 1; }

.portfolio__footer { text-align: center; margin-top: 3.5rem; }
.portfolio__footer p { font-size: .95rem; color: var(--text2); margin-bottom: 1.25rem; }

/* =========================================
   ABOUT
   ========================================= */
.about { padding: 8rem 0; position: relative; overflow: hidden; }

/* decorative circles */
.about::before {
  content: '';
  position: absolute; top: -100px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,192,181,.08) 0%, transparent 70%);
  pointer-events: none;
}
/* ghost watermark */
.about::after {
  content: 'Design';
  position: absolute; bottom: -3rem; left: -1rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(8rem, 18vw, 18rem); font-weight: 400; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(44,192,181,.06);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

.about__inner {
  display: grid; grid-template-columns: .6fr 1.4fr;
  gap: 5rem; align-items: center; position: relative;
}
.about__photo-wrap {
  position: relative;
  /* decorative ring */
}
.about__photo-wrap::before {
  content: '';
  position: absolute; inset: -16px;
  border-radius: calc(var(--r-lg) + 16px);
  background: linear-gradient(135deg, rgba(44,192,181,.15) 0%, rgba(44,192,181,.04) 50%, rgba(125,232,227,.1) 100%);
  z-index: 0;
}
.about__photo-wrap::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--r-lg) + 1px);
  border: 1px solid rgba(44,192,181,.2);
  z-index: 0;
}
.about__photo-inner {
  position: relative; z-index: 1;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__stat-card {
  position: absolute; background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: .9rem 1.35rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}
.about__stat-card:nth-child(3) { animation-delay: 2s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.about__stat-card strong { font-size: 1.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.about__stat-card span   { font-size: .72rem; color: var(--text2); margin-top: .15rem; }
.about__stat-card--1 { bottom: 1.5rem; left: -1rem; }
.about__stat-card--2 { top: 1.5rem; right: -1rem; }

.about__lead { font-size: 1.08rem; line-height: 1.75; color: var(--text); margin-bottom: 1rem; }
.about__body { font-size: .93rem; color: var(--text2); line-height: 1.78; margin-bottom: 2.25rem; }
.about__values { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.value-row {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .85rem 1rem; border-radius: var(--r);
  transition: background .25s;
}
.value-row:hover { background: var(--bg-alt); }
.value-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .25s, color .25s, transform .35s var(--ease-spring);
}
.value-row:hover .value-icon { background: var(--accent); color: #fff; transform: scale(1.1); }
.value-row strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .1rem; }
.value-row span   { font-size: .82rem; color: var(--text2); }

/* =========================================
   PROCESS
   ========================================= */
.process { padding: 8rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }

.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; position: relative;
}
.process-step {
  position: relative; border-radius: var(--r-lg); padding: 2rem 1.75rem;
  transition: transform .4s var(--ease), background .3s, box-shadow .4s;
  background: transparent;
}
.process-step:hover {
  transform: translateY(-8px); background: var(--bg);
  box-shadow: var(--shadow-lg);
}
.process-step__num {
  font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 1.25rem;
  background: linear-gradient(120deg, var(--accent), #7DE8E3);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: transform .35s var(--ease-spring);
}
.process-step:hover .process-step__num { transform: scale(1.1); }
.process-step h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: .6rem; }
.process-step p  { font-size: .875rem; color: var(--text2); line-height: 1.68; }

/* =========================================
   REVIEWS
   ========================================= */
.reviews { padding: 8rem 0; position: relative; }
.reviews__score {
  display: flex; align-items: center; gap: .6rem;
  justify-content: center; margin-top: .75rem;
}
.score__stars { color: var(--accent); font-size: 1.1rem; letter-spacing: .08em; }
.reviews__score strong { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.reviews__score span   { font-size: .82rem; color: var(--text2); }

.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 2.25rem;
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
/* giant quote mark */
.review-card::before {
  content: '\201C';
  position: absolute; top: .5rem; right: 1.5rem;
  font-family: var(--font-serif); font-size: 7rem; line-height: 1;
  color: var(--accent); opacity: .08;
  pointer-events: none;
}
.review-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-card--accent {
  background: linear-gradient(145deg, #2CC0B5, #1DA89E); border-color: var(--accent);
}
.review-card--accent:hover { box-shadow: var(--shadow-glow); }
.review-card--accent::before { color: rgba(255,255,255,.15); opacity: 1; }
.review-card__stars { font-size: .85rem; color: var(--accent); margin-bottom: 1.25rem; letter-spacing: .05em; }
.review-card--accent .review-card__stars { color: rgba(255,255,255,.75); }
.review-card blockquote {
  font-size: .93rem; line-height: 1.72; flex: 1;
  color: var(--text2); font-style: italic; margin-bottom: 1.75rem;
}
.review-card--accent blockquote { color: rgba(255,255,255,.92); }
.review-card cite { display: flex; flex-direction: column; font-style: normal; margin-top: auto; }
.review-card cite strong { font-size: .875rem; font-weight: 700; color: var(--text); }
.review-card cite span   { font-size: .78rem; color: var(--text3); }
.review-card--accent cite strong { color: #fff; }
.review-card--accent cite span   { color: rgba(255,255,255,.65); }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  padding: 7rem 0;
  background: linear-gradient(135deg, #1b9e95 0%, #2CC0B5 35%, #38d4c9 65%, #1b9e95 100%);
  background-size: 300% 300%;
  animation: ctaGrad 8s ease infinite;
  position: relative; overflow: hidden;
}
@keyframes ctaGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* animated circles */
.cta-band::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 65%);
  animation: ctaOrb 12s ease-in-out infinite;
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.08) 0%, transparent 65%);
  animation: ctaOrb 12s ease-in-out infinite 6s;
}
@keyframes ctaOrb {
  0%,100% { transform: scale(1) translate(0,0); }
  50%     { transform: scale(1.15) translate(20px,-20px); }
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-band__text h2 {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2; color: #fff; margin-bottom: .85rem;
}
.cta-band__text h2 em { font-style: italic; color: rgba(255,255,255,.8); }
.cta-band__text p { font-size: .97rem; color: rgba(255,255,255,.82); max-width: 440px; line-height: 1.68; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* =========================================
   CONTACT — dark, no form
   ========================================= */
.contact {
  padding: 9rem 0 8rem;
  background: #1A1C1C;
  position: relative; overflow: hidden;
  text-align: center;
}
.contact__bg { position: absolute; inset: 0; pointer-events: none; }
.contact__glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
}
.contact__glow--1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(44,192,181,.18) 0%, transparent 65%);
  top: -300px; left: 50%; transform: translateX(-50%);
}
.contact__glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(44,192,181,.08) 0%, transparent 65%);
  bottom: -150px; right: 5%;
}

/* ghost watermark */
.contact::before {
  content: 'Contact';
  position: absolute; bottom: -2rem; right: -2rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(7rem, 16vw, 17rem); font-weight: 400; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.04);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

.section-label--light { color: rgba(255,255,255,.45); }
.section-label--light::before { background: rgba(255,255,255,.25); }

.contact__header { margin-bottom: 4.5rem; position: relative; z-index: 1; }
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -.025em;
  color: #fff; margin-bottom: 1.25rem;
}
.contact__title em {
  font-style: italic;
  background: linear-gradient(120deg, #2CC0B5 0%, #7DE8E3 45%, #2CC0B5 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: gradShimmer 4s linear infinite;
}
.contact__sub {
  font-size: 1rem; color: rgba(255,255,255,.45);
  max-width: 480px; margin: 0 auto; line-height: 1.76;
}

/* Channel grid */
.contact__channels {
  display: grid !important; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; max-width: 900px; margin: 0 auto 4.5rem;
  position: relative; z-index: 1;
}
.contact-ch {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  padding: 2.75rem 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  color: #fff; text-decoration: none;
  transition: background .4s var(--ease), border-color .4s,
              transform .5s var(--ease-spring), box-shadow .4s;
  position: relative; overflow: hidden;
}
.contact-ch::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,192,181,.1) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.contact-ch:hover::after { opacity: 1; }
.contact-ch:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(44,192,181,.45);
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(44,192,181,.12);
}
.contact-ch--featured {
  background: rgba(44,192,181,.12);
  border-color: rgba(44,192,181,.3);
}
.contact-ch--featured:hover {
  background: rgba(44,192,181,.2);
  border-color: var(--accent);
  box-shadow: 0 30px 70px rgba(0,0,0,.5), var(--shadow-glow);
}
.contact-ch__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(44,192,181,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background .35s var(--ease-spring), color .25s, transform .45s var(--ease-spring);
  margin-bottom: .4rem;
  position: relative; z-index: 1;
}
.contact-ch:hover .contact-ch__icon {
  background: var(--accent); color: #fff; transform: scale(1.15);
}
.contact-ch span {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.38); position: relative; z-index: 1;
}
.contact-ch strong {
  font-size: 1rem; font-weight: 700; color: #fff;
  position: relative; z-index: 1;
}
.contact-ch__arrow {
  color: var(--accent); opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .35s var(--ease);
  position: relative; z-index: 1; margin-top: .2rem;
}
.contact-ch:hover .contact-ch__arrow { opacity: 1; transform: translateX(0); }

/* Footer */
.contact__footer {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  position: relative; z-index: 1;
}
.contact__social { display: flex; gap: .75rem; }
.contact__social a {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: all .35s var(--ease-spring);
}
.contact__social a:hover {
  background: var(--accent); border-color: var(--accent);
  color: #fff; transform: translateY(-4px) scale(1.06);
}
.contact__address {
  font-size: .8rem; color: rgba(255,255,255,.25); letter-spacing: .04em;
}

/* =========================================
   FOOTER
   ========================================= */
.footer { background: #111414; padding-top: 5rem; color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.footer__top {
  display: flex; justify-content: space-between;
  gap: 3rem; margin-bottom: 3.5rem; flex-wrap: wrap;
}
.footer__brand { max-width: 300px; }
.footer__brand p { font-size: .875rem; color: rgba(255,255,255,.42); line-height: 1.68; margin-top: 1.1rem; }
.footer__logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.footer__logo-img { height: 34px; width: auto; }
.footer .footer__logo-img { filter: brightness(0) invert(1); opacity: .82; }
.footer__nav { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: .6rem; }
.footer__col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .4rem; }
.footer__col a, .footer__col span, .footer__col address { font-size: .78rem; color: rgba(255,255,255,.5); transition: color .2s; line-height: 1.6; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 1.6rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer__bottom span { font-size: .75rem; color: rgba(255,255,255,.28); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: .75rem; color: rgba(255,255,255,.28); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.65); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { right: 1.5rem; }
  .about__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__visual { order: -1; max-width: 400px; margin: 0 auto; }
  .about__stat-card--1 { left: -.5rem; }
  .about__stat-card--2 { right: -.5rem; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .contact__channels { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #fff;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
    opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease); z-index: 1001;
  }
  .nav__links.open { opacity: 1; pointer-events: all; display: flex; }
  .nav__links a {
    font-family: var(--font); font-size: 1.1rem;
    font-weight: 600; color: var(--text);
    transition: color .2s;
  }
  .nav__links a:hover { color: var(--accent); }
  .nav__links .nav__cta {
    background: var(--accent) !important; color: #fff !important;
    padding: .7rem 2rem !important; border-radius: 100px;
    font-size: 1rem !important; margin-top: .5rem;
  }
  .nav__burger { display: flex; }
  .services__list { grid-template-columns: 1fr; }
  .service-item { padding: 1.25rem; }
  .service-item__body p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .service-item__arrow { display: none; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { display: none; }
  .reviews__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }
  .footer__top { flex-direction: column; }
  .footer__nav { gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 7rem 0 4rem; }
  .hero__stats { gap: 1.25rem; }
  .stat__div { display: none; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 200px !important; }
  .service-item__tags { display: none; }
}

/* =========================================
   CURSOR SPARKLE
   ========================================= */
.cursor-spark {
  position: fixed; pointer-events: none; z-index: 9996;
  border-radius: 50%; background: var(--accent);
  transform: translate(-50%, -50%) scale(0);
  animation: sparkPop .65s ease-out forwards;
}
@keyframes sparkPop {
  0%   { transform: translate(-50%,-50%) scale(0);    opacity: .9; }
  25%  { transform: translate(-50%,-50%) scale(1.4);  opacity: .7; }
  100% { transform: translate(-50%,-50%) scale(0);    opacity: 0; }
}


/* =========================================
   PAGE INTRO CURTAIN
   ========================================= */
.page-intro {
  position: fixed; inset: 0; z-index: 100000;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: introSweep 1s cubic-bezier(.77,0,.18,1) .45s forwards;
}
.page-intro__logo {
  width: 72px; height: 72px;
  filter: brightness(0) invert(1);
  animation: introLogoOut .25s ease .35s forwards;
  opacity: 1;
}
@keyframes introSweep { to { transform: translateY(-105%); } }
@keyframes introLogoOut { to { opacity: 0; transform: translateY(-16px); } }

/* =========================================
   HERO WORD ANIMATION
   ========================================= */
.hw {
  display: inline-block; overflow: hidden;
  vertical-align: bottom; padding-bottom: .06em;
}
.hw > span, .hw > em {
  display: inline-block;
  transform: translateY(108%);
  transition: transform .8s var(--ease);
}
.hw.hw--in > span, .hw.hw--in > em { transform: translateY(0); }

/* =========================================
   HERO STAGGER ANIMATIONS
   ========================================= */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}
.hero__badge   { animation: heroFadeUp .7s var(--ease) 1.25s both; }
.hero__sub     { animation: heroFadeUp .7s var(--ease) 1.55s both; }
.hero__actions { animation: heroFadeUp .7s var(--ease) 1.72s both; }
.hero__stats   { animation: heroFadeUp .7s var(--ease) 1.9s both; }

/* =========================================
   SCROLL STAGGER DELAYS
   ========================================= */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

.service-item.reveal:nth-child(1) { transition-delay: 0s; }
.service-item.reveal:nth-child(2) { transition-delay: .1s; }
.service-item.reveal:nth-child(3) { transition-delay: .2s; }
.service-item.reveal:nth-child(4) { transition-delay: .3s; }

.pf-card.reveal:nth-child(1) { transition-delay: 0s; }
.pf-card.reveal:nth-child(2) { transition-delay: .07s; }
.pf-card.reveal:nth-child(3) { transition-delay: .14s; }
.pf-card.reveal:nth-child(4) { transition-delay: .21s; }
.pf-card.reveal:nth-child(5) { transition-delay: .28s; }
.pf-card.reveal:nth-child(6) { transition-delay: .35s; }
.pf-card.reveal:nth-child(7) { transition-delay: .42s; }
.pf-card.reveal:nth-child(8) { transition-delay: .49s; }
.pf-card.reveal:nth-child(9) { transition-delay: .56s; }

.process-step.reveal:nth-child(1) { transition-delay: 0s; }
.process-step.reveal:nth-child(2) { transition-delay: .12s; }
.process-step.reveal:nth-child(3) { transition-delay: .24s; }
.process-step.reveal:nth-child(4) { transition-delay: .36s; }

.review-card.reveal:nth-child(1) { transition-delay: 0s; }
.review-card.reveal:nth-child(2) { transition-delay: .12s; }
.review-card.reveal:nth-child(3) { transition-delay: .24s; }
