/* ═══════════════════════════════════════════
   TrouveTaCom.be — Feuille de style globale
   Partagée par toutes les pages du site
   ═══════════════════════════════════════════ */

:root {
  --deep: #04000f;
  --dark: #080015;
  --purple-dark: #0d001e;
  --purple: #5500aa;
  --violet: #8800ee;
  --violet-bright: #aa00ff;
  --magenta: #cc0088;
  --pink: #ff00aa;
  --pink-light: #ff55cc;
  --cyan: #00ccff;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.03);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

body {
  background: var(--deep);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
#cur {
  position: fixed; width: 12px; height: 12px;
  background: var(--pink); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform .15s, background .2s;
  mix-blend-mode: screen;
}
#cur-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1.5px solid rgba(200,0,136,.45);
  border-radius: 50%; pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, border-color .25s;
}
@media (max-width: 960px) {
  #cur, #cur-ring { display: none !important; }
  body { cursor: auto; }
}



/* ─── STARS / MESH ─── */
canvas#stars {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none; z-index: 2;
  opacity: .85;
  mix-blend-mode: screen;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(4,0,15,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(136,0,238,0.1);
  transition: background .4s;
}
nav.scrolled {
  background: rgba(4,0,15,0.95);
  border-bottom-color: rgba(136,0,238,0.2);
}
.nav-logo {
  text-decoration: none; display: flex; align-items: center;
}
nav ul { display: flex; gap: 36px; list-style: none; }
nav a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: color .3s;
  letter-spacing: .02em;
}
nav a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--violet), var(--magenta)) !important;
  color: white !important;
  padding: 10px 26px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: opacity .3s, transform .3s !important;
  letter-spacing: .03em !important;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px) !important; }

/* ─── BOUTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  color: white; text-decoration: none; padding: 14px 32px;
  border-radius: 8px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 0 40px rgba(136,0,238,.35);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(200,0,136,.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.2);
  color: white; text-decoration: none; padding: 14px 32px;
  border-radius: 8px; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: .05em;
  text-transform: uppercase;
  transition: all .3s;
}
.btn-ghost:hover { border-color: var(--pink); background: rgba(200,0,136,.08); transform: translateY(-3px); }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding: 0;
}
.hero-top {
  position: relative; z-index: 5;
  padding: 160px 60px 0;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
}
.hero-tag-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(136,0,238,0.15);
  border: 1px solid rgba(136,0,238,0.3);
  padding: 6px 16px; border-radius: 20px;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s ease .1s forwards;
}
.hero-tag-line::before {
  content: ''; width: 6px; height: 6px;
  background: var(--violet-bright); border-radius: 50%;
  box-shadow: 0 0 8px var(--violet-bright);
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-title .l1 span,
.hero-title .l2 span {
  display: block; overflow: visible;
}
.hero-title .l1 span > span { display: block; transform: translateY(110%); animation: slideUp .9s cubic-bezier(.16,1,.3,1) .25s forwards; }
.hero-title .l2 span > span { display: block; transform: translateY(110%); animation: slideUp .9s cubic-bezier(.16,1,.3,1) .4s forwards; }
.hero-title .grad {
  background: linear-gradient(90deg, var(--pink-light), var(--violet-bright), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,.75); line-height: 1.75;
  max-width: 500px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .8s ease .55s forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s ease .7s forwards;
}
.hero-visual {
  position: relative; z-index: 3;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  height: 520px;
  overflow: hidden;
}
.hero-img-container {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-hands-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(136,0,238,.4) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 65% 30%, rgba(200,0,136,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 35% 70%, rgba(136,0,238,.3) 0%, transparent 60%);
  pointer-events: none;
}
.hand-left, .hand-right {
  position: absolute;
  width: 320px; height: 400px;
}
.hand-left { bottom: -30px; left: 50%; transform: translateX(-70%); }
.hand-right { top: 20px; right: 50%; transform: translateX(60%) rotate(20deg); }
.hero-fullbg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--deep); /* fallback si la vidéo ne charge pas */
}
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(rgba(136,0,238,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136,0,238,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(600px) rotateX(15deg);
  transform-origin: 50% 100%;
  opacity: .6;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(4,0,15,.35) 0%,
    rgba(4,0,15,.2) 40%,
    rgba(4,0,15,.75) 80%,
    var(--deep) 100%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.2s ease .3s forwards;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  position: relative; z-index: 5;
  padding: 16px 0; overflow: hidden;
  background: linear-gradient(90deg, var(--violet), var(--magenta), var(--violet-bright), var(--magenta));
  background-size: 300% 100%;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift { 0%{background-position:0% 50%} 100%{background-position:300% 50%} }
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: mq 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.mqi {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 11px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  flex-shrink: 0; display: flex; align-items: center; gap: 48px;
}
.mqi .sep { width: 4px; height: 4px; background: rgba(255,255,255,.5); border-radius: 50%; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SECTIONS COMMUNES ─── */
section { position: relative; z-index: 5; }
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.1;
}
.sec-title span {
  background: linear-gradient(90deg, var(--pink-light), var(--violet-bright), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-sub {
  margin-top: 14px; color: rgba(255,255,255,.7);
  font-size: 16px; max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.75; letter-spacing: .01em;
}
.sec-tag {
  display: inline-block;
  background: rgba(136,0,238,.15);
  border: 1px solid rgba(136,0,238,.3);
  padding: 5px 16px; border-radius: 20px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--pink-light); margin-bottom: 16px;
}

/* ─── SERVICES ─── */
#services {
  padding: 100px 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(136,0,238,.1) 0%, transparent 70%);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; max-width: 1200px; margin: 0 auto;
}
.scard {
  background: rgba(255,0,140,.07);
  border: 1px solid rgba(255,0,140,.25);
  border-radius: 16px; padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: transform .4s, border-color .4s, background .4s;
  cursor: none;
}
.scard:hover { transform: translateY(-8px); border-color: rgba(255,0,170,.55); background: rgba(255,0,140,.13); }
.scard-glow {
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--glow, rgba(255,0,140,.2));
  filter: blur(50px); pointer-events: none;
}
.scard-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 12px;
  letter-spacing: .3em; color: rgba(255,80,180,.8); margin-bottom: 24px;
  position: relative; z-index: 1;
}
.scard-icon { width: 60px; height: 60px; margin-bottom: 22px; display: block; position: relative; z-index: 1; }
.scard-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 21px; margin-bottom: 14px; position: relative; z-index: 1; color: #fff; }
.scard-desc { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.8; position: relative; z-index: 1; }
.scard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; position: relative; z-index: 1; }
.scard-tag { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; background: rgba(255,0,140,.1); color: rgba(255,180,220,.8); border: 1px solid rgba(255,0,140,.2); }

/* ─── PORTFOLIO ─── */
#portfolio { padding: 100px 60px; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; max-width: 1200px; margin: 64px auto 0;
}
.pcard {
  border-radius: 14px; overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: none;
}
.pcard-bg {
  position: absolute; inset: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.pcard:hover .pcard-bg { transform: scale(1.07); }
.pcard-bg-1 { background: linear-gradient(135deg, #0d001e 30%, #5500aa 70%, #cc0088 100%); }
.pcard-bg-2 { background: linear-gradient(135deg, #00100d 30%, #006680 70%, #00ccff 100%); }
.pcard-bg-3 { background: linear-gradient(135deg, #15000d 30%, #880066 70%, #ff55cc 100%); }
.pcard-pattern {
  position: absolute; inset: 0; opacity: .12;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.3) 0, rgba(255,255,255,.3) 1px, transparent 1px, transparent 50%);
  background-size: 16px 16px;
}
.pcard-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 48px; opacity: .35; }
.pcard-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 22px 18px; background: linear-gradient(to top, rgba(0,0,0,.85), transparent); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; }
.pcard-sub { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.5); margin-top: 3px; letter-spacing: .08em; }

/* ─── ABOUT / POURQUOI NOUS CHOISIR ─── */
#about {
  padding: 100px 60px;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(13,0,30,.4) 0%, transparent 70%);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-text .sec-title { text-align: left; margin-top: 16px; }
.about-text .sec-sub { text-align: left; margin: 16px 0 0; font-size: 16px; }
.about-list { margin-top: 28px; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,.85); }
.check { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--magenta)); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.about-cta { margin-top: 36px; }
.about-img {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 0 60px rgba(136,0,238,.2), 0 0 120px rgba(200,0,136,.1);
}
.about-img img { width: 100%; height: auto; display: block; border-radius: 20px; object-fit: contain; }
.about-img-glow {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(136,0,238,.12) 0%, rgba(200,0,136,.08) 100%);
  pointer-events: none;
}
.about-img-mobile { display: none; }
.about-tag { display: none; }
.about-tag-desktop { display: block; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: rgba(255,0,140,.08); border: 1px solid rgba(255,0,140,.25); border-radius: 14px; padding: 32px 24px; text-align: center; transition: border-color .3s, background .3s; }
.stat-card:hover { border-color: rgba(255,0,170,.5); background: rgba(255,0,140,.14); }
.stat-n { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 54px; line-height: 1; background: linear-gradient(90deg, var(--pink-light), var(--violet-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-l { font-size: 13px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ─── PROCESS ─── */
#process { padding: 80px 60px 120px; }
.process-steps { display: flex; gap: 0; max-width: 1200px; margin: 64px auto 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 40px; right: 40px; height: 1px; background: linear-gradient(90deg, var(--violet), var(--magenta), var(--violet-bright)); opacity: .2; }
.pstep { flex: 1; text-align: center; padding: 0 18px; position: relative; }
.pstep-dot { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--magenta)); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 22px; box-shadow: 0 0 30px rgba(136,0,238,.3); position: relative; z-index: 1; transition: transform .3s, box-shadow .3s; }
.pstep:hover .pstep-dot { transform: scale(1.1); box-shadow: 0 0 50px rgba(200,0,136,.5); }
.pstep-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px; margin-bottom: 10px; }
.pstep-desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ─── CONTACT ─── */
#contact {
  padding: 100px 60px;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(136,0,238,.12) 0%, transparent 70%);
}
.contact-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.contact-inner .sec-title { font-size: clamp(38px,6vw,72px); }
.contact-card { background: rgba(136,0,238,.06); border: 1px solid rgba(136,0,238,.18); border-radius: 24px; padding: 56px 48px; margin-top: 56px; backdrop-filter: blur(16px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); text-align: left; }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,.05); border: 1px solid rgba(136,0,238,.2); border-radius: 8px; color: var(--white); padding: 13px 16px; font-family: 'Inter', sans-serif; font-size: 13px; outline: none; transition: border-color .3s; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--magenta); background: rgba(200,0,136,.05); }
.form-group textarea { min-height: 100px; resize: none; }
.form-group select option { background: #0d001e; color: white; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.submit-full { width: 100%; background: linear-gradient(135deg, var(--violet), var(--magenta)); border: none; border-radius: 8px; color: white; padding: 16px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; cursor: none; box-shadow: 0 0 40px rgba(136,0,238,.3); transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden; margin-top: 8px; }
.submit-full:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(200,0,136,.5); }

/* ─── FOOTER ─── */
footer {
  position: relative; z-index: 5;
  padding: 36px 60px;
  border-top: 1px solid rgba(136,0,238,.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
footer .f-logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; text-decoration: none; color: white; }
footer .f-logo span { color: var(--pink); }
footer p { font-size: 11px; color: rgba(255,255,255,.25); }
.f-links { display: flex; gap: 22px; }
.f-links a { font-size: 12px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .3s; }
.f-links a:hover { color: var(--pink-light); }
.f-socials { display: flex; gap: 10px; }
.fsoc { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(136,0,238,.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); text-decoration: none; font-size: 12px; font-weight: 700; transition: all .3s; }
.fsoc:hover { border-color: var(--pink); color: var(--pink); background: rgba(200,0,136,.08); transform: translateY(-3px); }

/* ─── PAGES LÉGALES (conditions, politique, cookies…) ─── */
.legal-page {
  position: relative; z-index: 5;
  max-width: 860px; margin: 0 auto;
  padding: 140px 60px 100px;
}
.legal-page .legal-tag {
  display: inline-block;
  background: rgba(136,0,238,.15);
  border: 1px solid rgba(136,0,238,.3);
  padding: 5px 16px; border-radius: 20px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--pink-light); margin-bottom: 20px;
}
.legal-page h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1; margin-bottom: 12px;
}
.legal-page h1 span {
  background: linear-gradient(90deg, var(--pink-light), var(--violet-bright), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal-page .legal-date {
  font-size: 13px; color: rgba(255,255,255,.35);
  letter-spacing: .08em; margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(136,0,238,.15);
}
.legal-page h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--pink-light); margin: 48px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--violet);
}
.legal-page p {
  font-size: 15px; color: rgba(255,255,255,.75);
  line-height: 1.85; margin-bottom: 16px;
}
.legal-page ul {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.legal-page ul li {
  font-size: 15px; color: rgba(255,255,255,.75);
  line-height: 1.7; padding-left: 22px; position: relative;
}
.legal-page ul li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--pink-light); font-size: 10px; top: 5px;
}
.legal-page a {
  color: var(--pink-light); text-decoration: underline;
  text-underline-offset: 3px; transition: color .2s;
}
.legal-page a:hover { color: var(--violet-bright); }
.legal-page .legal-contact-box {
  margin-top: 56px; padding: 32px 36px;
  background: rgba(136,0,238,.06);
  border: 1px solid rgba(136,0,238,.2);
  border-radius: 16px;
}
.legal-page .legal-contact-box p { margin: 0; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ─── ANIMATIONS ─── */
@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1} 80%{transform:translateY(10px);opacity:0} }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav ul { display: none; }
  nav { padding: 14px 20px; }
  .hero-top { padding: 120px 20px 0; }
  .services-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .marquee-track { animation-duration: 10s; }
  .about-inner { grid-template-columns: 1fr; gap: 24px; }
  .about-tag { display: block; order: 1; }
  .about-img { order: 2; margin: 0; }
  .about-text { order: 3; }
  .about-tag-desktop { display: none; }
  .about-img-mobile { display: none; }
  .process-steps { flex-direction: column; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  #services, #portfolio, #about, #process, #contact { padding: 80px 20px; }
  footer { flex-direction: column; text-align: center; padding: 28px 20px; }
  .legal-page { padding: 120px 20px 80px; }
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.breadcrumb li {
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
}
.breadcrumb li::after {
  content: '›';
  margin: 0 6px;
  opacity: .4;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover {
  color: var(--pink);
}
