/* ═══════════════════════════════════════════════════════
   PIERRE REDON — Portfolio 2025 · Premium · SEO-first
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;600;700;800&display=swap');

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

/* ── TOKENS ── */
:root {
  --bg:         #080c15;
  --bg-2:       #0d1424;
  --bg-3:       #121929;
  --surface:    rgba(255,255,255,.04);
  --surface-2:  rgba(255,255,255,.07);
  --blue:       #4f8ef7;
  --blue-b:     #7aaeff;
  --blue-glow:  rgba(79,142,247,.2);
  --blue-dim:   rgba(79,142,247,.1);
  --orange:     #ff6b35;
  --orange-dim: rgba(255,107,53,.1);
  --green:      #22d07a;
  --text:       rgba(255,255,255,.78);
  --muted:      rgba(255,255,255,.42);
  --border:     rgba(255,255,255,.08);
  --border-b:   rgba(79,142,247,.25);
  --r:          14px;
  --r-lg:       22px;
  --tr:         .22s ease;
  --shadow:     0 8px 40px rgba(0,0,0,.45);
  --shadow-b:   0 0 50px rgba(79,142,247,.2);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(79,142,247,.2); border-radius: 2px; }
::selection { background: rgba(79,142,247,.3); color: #fff; }

/* ── CURSOR ── */
.cursor, .cursor-ring {
  position: fixed; pointer-events: none; border-radius: 50%;
  transform: translate(-50%,-50%); z-index: 9999;
}
.cursor { width: 10px; height: 10px; background: var(--blue); mix-blend-mode: screen; transition: width .15s, height .15s, background .15s; }
.cursor-ring { width: 38px; height: 38px; border: 1.5px solid rgba(79,142,247,.5); z-index: 9998; transition: width .3s, height .3s; }
.cursor.hov { width: 16px; height: 16px; background: var(--orange); }
.cursor-ring.hov { width: 64px; height: 64px; border-color: rgba(255,107,53,.35); }
@media (max-width: 768px) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ── UTILS ── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 36px; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; color: #fff; line-height: 1.08; }
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--blue); }

.s-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1.2px; margin-bottom: 18px; }
.s-desc  { font-size: 16px; color: var(--muted); line-height: 1.85; max-width: 580px; }
.grad    { background: linear-gradient(135deg, var(--blue-b), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── BUTTONS ── */
.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px;
  padding: 15px 30px; border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-p::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,.16),transparent); opacity: 0; transition: opacity .25s; }
.btn-p:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,107,53,.45); }
.btn-p:hover::after { opacity: 1; }

.btn-o {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,.75);
  font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 15px;
  padding: 14px 26px; border-radius: 10px; border: 1.5px solid var(--border);
  cursor: pointer; text-decoration: none; transition: all .25s;
}
.btn-o:hover { border-color: var(--blue); color: var(--blue-b); background: var(--blue-dim); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 74px; transition: background .3s, border-bottom .3s;
}
nav.scrolled {
  background: rgba(8,12,21,.94); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-i {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px; margin: 0 auto; padding: 0 36px; height: 100%;
}
.logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: #fff; text-decoration: none; }
.logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  transition: color var(--tr); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--blue); transform: scaleX(0);
  transition: transform .25s; transform-origin: right;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer;
}
.burger span { display: block; width: 18px; height: 1.5px; background: rgba(255,255,255,.7); transition: all .28s; transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--orange); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--orange); }

.mob-nav {
  position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
  background: rgba(8,12,21,.97); backdrop-filter: blur(24px);
  z-index: 499; opacity: 0; transform: translateY(-10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none; visibility: hidden;
  display: flex; flex-direction: column; padding: 40px 36px;
}
.mob-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; visibility: visible; }
.mob-nav a {
  font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700;
  color: rgba(255,255,255,.7); padding: 18px 0;
  border-bottom: 1px solid var(--border); display: block; transition: all .2s;
}
.mob-nav a:hover { color: var(--orange); padding-left: 10px; }
.mob-nav .btn-p { margin-top: 32px; justify-content: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.orb-1 { width: 700px; height: 700px; top: -200px; right: -150px; background: radial-gradient(circle,rgba(79,142,247,.2),transparent 70%); }
.orb-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: radial-gradient(circle,rgba(255,107,53,.12),transparent 70%); }
.orb-3 { width: 300px; height: 300px; top: 45%; left: 42%; background: radial-gradient(circle,rgba(34,208,122,.06),transparent 70%); }

.hero-i { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: center; }

.badge-avail {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(34,208,122,.3); background: rgba(34,208,122,.07);
  padding: 8px 18px; border-radius: 40px; margin-bottom: 28px;
  font-size: 13px; font-weight: 600; color: rgba(34,208,122,.95); width: fit-content;
}
.b-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.8s ease infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;box-shadow:0 0 0 3px rgba(34,208,122,.25)} 50%{opacity:.5;box-shadow:0 0 0 8px rgba(34,208,122,.05)} }

.hero h1 { font-size: clamp(46px,5.5vw,76px); font-weight: 800; letter-spacing: -2px; margin-bottom: 14px; }
.hero h1 .hl { color: var(--blue-b); }

.typo { font-size: clamp(20px,2.5vw,28px); color: var(--muted); margin-bottom: 30px; min-height: 1.5em; }
.typed { color: var(--orange); font-weight: 600; border-right: 2px solid var(--orange); padding-right: 3px; animation: blink .75s step-end infinite; }
@keyframes blink { 50% { border-color: transparent; } }

.hero-desc { font-size: 17px; color: var(--muted); line-height: 1.85; max-width: 500px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stat-n { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: #fff; line-height: 1; }
.stat-u { color: var(--orange); }
.stat-l { font-size: 12px; color: var(--muted); margin-top: 6px; letter-spacing: .5px; }

/* Profile card */
.pcard {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  backdrop-filter: blur(20px); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.pcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.pcard:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,.6), var(--shadow-b); }
.avatar { width: 92px; height: 92px; border-radius: 50%; border: 2.5px solid var(--border-b); overflow: hidden; margin-bottom: 20px; box-shadow: 0 0 0 8px rgba(79,142,247,.06); }
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cname { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.crole { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); color: var(--muted); background: var(--surface); }
.chip-b { border-color: var(--border-b); color: var(--blue-b); background: var(--blue-dim); }
.chip-o { border-color: rgba(255,107,53,.25); color: #ff9a6c; background: var(--orange-dim); }
.chip-g { border-color: rgba(34,208,122,.25); color: #6ee7b7; background: rgba(34,208,122,.08); }
.cstatus { display: flex; align-items: center; gap: 10px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }

.fbadge {
  position: absolute; background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 12px; padding: 11px 16px; font-size: 13px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.45); white-space: nowrap; z-index: 3;
  animation: floatbadge 3.5s ease-in-out infinite;
}
.fb-1 { top: -18px; right: -24px; }
.fb-2 { bottom: 40px; left: -32px; font-size: 12px; animation-delay: -1.5s; }
@keyframes floatbadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── MARQUEE ── */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; overflow: hidden; background: var(--surface); }
.mq-track { display: flex; gap: 60px; width: max-content; animation: mq 32s linear infinite; }
.mq-item { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.mq-item .ico { color: var(--blue); font-size: 15px; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTIONS ── */
.section { padding: 112px 0; }
.bg-2 { background: var(--bg-2); }
.s-head { margin-bottom: 72px; }
.s-head.ctr { text-align: center; }
.s-head.ctr .s-desc { margin: 0 auto; }
.s-head.ctr .eyebrow { display: inline-flex; }

/* ── PROBLEMS ── */
.prb-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.prb-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  transition: all .3s; position: relative; overflow: hidden;
}
.prb-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(180deg,var(--blue),transparent); opacity: 0; transition: opacity .3s; }
.prb-card:hover { border-color: var(--border-b); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.prb-card:hover::before { opacity: 1; }
.prb-emoji { font-size: 40px; margin-bottom: 20px; display: block; line-height: 1; }
.prb-title { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.prb-text { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.prb-fix { font-size: 13px; font-weight: 600; color: var(--blue); }
.prb-fix::before { content: '↳ '; color: var(--orange); }

/* ── OFFERS ── */
.off-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.off-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px 34px; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.off-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,.45); }
.off-card.feat {
  border-color: var(--blue); background: linear-gradient(160deg,rgba(79,142,247,.1),var(--surface));
  transform: scale(1.04); box-shadow: var(--shadow-b);
}
.off-card.feat:hover { transform: scale(1.04) translateY(-6px); }
.off-pill { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 18px; border-radius: 20px; letter-spacing: 1px; white-space: nowrap; }
.off-tier { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.off-price { font-family: 'Syne', sans-serif; font-size: 56px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.off-price sup { font-size: 24px; vertical-align: top; margin-top: 12px; color: var(--muted); }
.off-price sub { font-size: 18px; color: var(--muted); font-weight: 400; }
.off-delay { font-size: 13px; color: var(--muted); margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.off-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.off-list li { font-size: 14px; color: rgba(255,255,255,.75); display: flex; align-items: flex-start; gap: 11px; line-height: 1.5; }
.off-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 13px; }
.off-cta { display: block; text-align: center; justify-content: center; width: 100%; font-size: 15px; padding: 14px; }
.off-promo { font-size: 12px; color: var(--green); margin-bottom: 20px; font-weight: 600; }

.promo-banner {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(34,208,122,.08), rgba(79,142,247,.06));
  border: 1px solid rgba(34,208,122,.25); border-radius: 12px;
  padding: 14px 22px; margin-top: 28px; font-size: 14px; color: rgba(255,255,255,.8);
}
.promo-spots {
  background: var(--green); color: #000; font-weight: 700; font-size: 12px;
  padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}

/* ── PROJECTS ── */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.proj-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: all .35s;
}
.proj-card:hover { border-color: rgba(79,142,247,.3); transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.proj-thumb {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#0d1220,#111827); font-size: 52px; opacity: .3;
}
.proj-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.proj-ov {
  position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 30%,rgba(8,12,21,.92));
  opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 20px;
}
.proj-card:hover .proj-ov { opacity: 1; }
.proj-ov a { color: #fff; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,.3); padding: 8px 18px; border-radius: 8px; transition: all .2s; }
.proj-ov a:hover { background: #fff; color: var(--bg); }
.proj-body { padding: 24px 26px 28px; }
.proj-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: var(--blue-dim); padding: 3px 10px; border-radius: 5px; margin-bottom: 10px; }
.proj-name { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.proj-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── BROWSER MOCKUP IN CARDS ── */
.proj-thumb { flex-direction: column; align-items: stretch; justify-content: flex-start; opacity: 1; font-size: unset; aspect-ratio: unset; }
.proj-thumb-shot .thumb-content { min-height: 180px; background: #0a0a0a; }
.proj-screenshot { width: 100%; height: 180px; object-fit: cover; object-position: top; display: block; transition: transform 4s ease; }
.proj-card:hover .proj-screenshot { transform: translateY(-30%); }
.proj-thumb-mock .thumb-content { min-height: 160px; }
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px; background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
  position: relative; z-index: 2;
}
.browser-bar span {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.browser-bar span:nth-child(1) { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #ffbd2e; }
.browser-bar span:nth-child(3) { background: #28ca41; }
.browser-url {
  flex: 1; font-size: 10px; color: rgba(255,255,255,.3);
  text-align: center; letter-spacing: .3px; font-family: 'Space Grotesk', monospace;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  margin: 0 8px;
}
.thumb-content { flex: 1; position: relative; overflow: hidden; min-height: 140px; }
.thumb-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  transition: opacity .4s ease;
}
.proj-card:hover .thumb-glow { opacity: 1.3; }
.thumb-mockup { position: absolute; inset: 0; padding: 16px; z-index: 2; display: flex; flex-direction: column; gap: 10px; }
.tm-hero { height: 54px; border-radius: 8px; border: 1px solid rgba(255,255,255,.07); }
.tm-cards { display: flex; gap: 7px; flex: 1; }
.tm-cards div { flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 6px; }
/* Light sweep on hover */
.proj-thumb::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.07) 50%, transparent 60%);
  transition: left .6s ease; z-index: 3; pointer-events: none;
}
.proj-card:hover .proj-thumb::after { left: 140%; }

/* ── PROCESS ── */
.proc-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; margin-top: 72px; }
.proc-step { text-align: center; position: relative; }
.proc-step:not(:last-child)::after { content: ''; position: absolute; top: 36px; left: calc(50% + 44px); right: calc(-50% + 44px); height: 1px; background: linear-gradient(90deg,var(--border-b),transparent); }
.proc-num { width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid var(--border-b); background: var(--blue-dim); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--blue-b); position: relative; z-index: 1; box-shadow: 0 0 0 10px rgba(79,142,247,.04), var(--shadow-b); }
.proc-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.proc-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.about-img-w { position: relative; }
.about-img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: grayscale(15%); position: relative; z-index: 1; }
.about-frame { position: absolute; inset: -14px; border: 1px solid var(--border-b); border-radius: 26px; pointer-events: none; z-index: 0; }
.about-ctr { position: absolute; bottom: -18px; right: -18px; z-index: 2; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r); padding: 20px 24px; box-shadow: var(--shadow); }
.about-ctr::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--blue),var(--orange)); border-radius: 14px 14px 0 0; }
.ctr-n { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--orange); line-height: 1; }
.ctr-l { font-size: 12px; color: var(--muted); margin-top: 5px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 40px; }
.about-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; transition: all .3s; }
.testi-card:hover { border-color: var(--border-b); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-txt { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.testi-auth { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--blue-dim),var(--blue-glow)); border: 1px solid var(--border-b); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; color: var(--blue-b); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: #fff; }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: var(--border-b); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; background: none; border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: #fff; text-align: left; transition: color .2s; }
.faq-q:hover { color: var(--blue-b); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform .3s, border-color .25s, color .25s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--blue); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 28px; font-size: 14px; color: var(--muted); line-height: 1.85; }
.faq-a.open { max-height: 300px; padding: 0 28px 22px; }
.faq-a strong { color: rgba(255,255,255,.85); }

/* ── CONTACT ── */
.contact-i { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.c-lead h2 { font-size: clamp(36px,4.5vw,56px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; }
.c-lead p { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 40px; }
.c-items { display: flex; flex-direction: column; gap: 20px; }
.c-item { display: flex; align-items: center; gap: 18px; }
.c-ico { width: 52px; height: 52px; flex-shrink: 0; background: var(--blue-dim); border: 1px solid var(--border-b); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.c-label { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.c-val { font-size: 15px; font-weight: 600; color: #fff; }
.c-val a { color: #fff; transition: color var(--tr); }
.c-val a:hover { color: var(--blue-b); }

.fcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 44px; position: relative; overflow: hidden; }
.fcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--orange), var(--blue)); }
.fcard h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 32px; }
.fg { margin-bottom: 22px; }
.fl { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }
.fi, .ft { width: 100%; background: rgba(255,255,255,.04); border: 1.5px solid var(--border); color: #fff; border-radius: 10px; padding: 14px 18px; font-size: 14px; font-family: 'Space Grotesk', sans-serif; transition: border-color .22s, box-shadow .22s; outline: none; }
.fi:focus, .ft:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); background: rgba(79,142,247,.03); }
.fi::placeholder, .ft::placeholder { color: var(--muted); }
.ft { min-height: 150px; resize: vertical; }
.fsub { width: 100%; background: var(--orange); color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; padding: 16px; border-radius: 10px; border: none; cursor: pointer; transition: all .25s; margin-top: 10px; }
.fsub:hover { background: #e85c26; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,107,53,.4); }
#fmsg { margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-size: 14px; display: none; }
#fmsg.ok { background: rgba(34,208,122,.08); border: 1px solid rgba(34,208,122,.25); color: #6ee7b7; display: block; }
#fmsg.err { background: rgba(255,107,53,.08); border: 1px solid rgba(255,107,53,.25); color: #ff9a6c; display: block; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 30px 0; }
.foot-i { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-copy { font-size: 13px; color: var(--muted); }
.foot-links { display: flex; gap: 28px; }
.foot-links a { font-size: 13px; color: var(--muted); transition: color var(--tr); }
.foot-links a:hover { color: var(--blue-b); }

/* ── ANIMATIONS ── */
/* Strategy: elements start VISIBLE. JS adds anim class that makes them animated.
   If JS fails → everything still visible. */
.js-on .anim {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-on .anim.in { opacity: 1; transform: translateY(0); }

/* ── SCROLL PROGRESS ── */
#scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  width: 0%; transition: width .1s linear;
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .off-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .off-card.feat { transform: scale(1); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 900px) {
  .proj-grid { grid-template-columns: repeat(2,1fr); }
  .proc-steps { grid-template-columns: repeat(2,1fr); }
  .proc-step::after { display: none; }
}
@media (max-width: 768px) {
  .nav-i .nav-links, .nav-i .btn-p { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero-i { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .fb-1, .fb-2 { display: none; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); letter-spacing: -1px; }
  .typo { font-size: clamp(17px, 5vw, 22px); }
  .hero-desc { font-size: 15px; }
  .hero-stats { gap: 28px; padding-top: 28px; }
  .stat-n { font-size: 32px; }

  /* Sections */
  .s-title { font-size: clamp(26px, 7vw, 36px); }
  .prb-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-i { grid-template-columns: 1fr; gap: 48px; }
  .about-ctr { position: static; margin-top: 20px; display: inline-block; }
  .section { padding: 72px 0; }
  .wrap { padding: 0 20px; }
  .fcard { padding: 28px 22px; }

}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(28px, 8.5vw, 38px); }
  .proc-steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-p, .hero-btns .btn-o { justify-content: center; }
  .hero-stats { gap: 22px; }
  .foot-i { flex-direction: column; text-align: center; }
  .off-grid { max-width: 100%; }
  .c-lead h2 { font-size: 32px; }
}
