/* ════════════════════════════════════════════════
   +PAZIENTI — Premium CSS  v3
════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --navy:     #0d1f3c;
  --navy-d:   #05091a;
  --navy-m:   #0e1f40;
  --orange:   #E8920A;
  --orange-l: #F5AB3A;
  --accent:   #E8920A;
  --blue-l:   #5B8DB8;
  --cream:    #f8f6f2;
  --white:    #ffffff;
  --text:     #1d2737;
  --text-m:   #3d4758;
  --text-s:   #6b7690;
  --border:   rgba(13,31,60,0.09);
  --card-bg:  #ffffff;
  --r-card:   24px;
  --r-sm:     14px;
  --shadow:   0 4px 28px rgba(13,31,60,0.08);
  --shadow-h: 0 20px 60px rgba(13,31,60,0.16);
  /* JS-driven mesh */
  --ox1: 70%; --oy1: 20%;
  --ox2: 20%; --oy2: 70%;
  --ox3: 60%; --oy3: 80%;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: radial-gradient(circle at top center, rgba(14,25,50,.18) 0%, rgba(232,146,10,.05) 16%, rgba(255,255,255,.95) 48%, var(--cream) 100%); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
p     { margin: 0; }

/* ── Layout ── */
.wrap      { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap-main {
  padding: 40px 0 60px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-radius: 36px;
  box-shadow: 0 40px 120px rgba(13,31,60,.13);
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════
   PRELOADER
════════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--navy-d);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .55s ease, visibility .55s ease;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  animation: loader-pulse 1s ease-in-out infinite alternate;
}
@keyframes loader-pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
.loader-logo {
  width: 96px; height: 96px;
  border-radius: 24px; object-fit: cover;
  box-shadow: 0 0 60px rgba(232,146,10,.5), 0 0 0 1px rgba(232,146,10,.25);
}
.loader-bar {
  width: 120px; height: 2px; background: rgba(255,255,255,.12);
  border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-l));
  border-radius: 2px;
  animation: loader-fill .9s cubic-bezier(.16,1,.3,1) .1s forwards;
}
@keyframes loader-fill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ════════════════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════════════════ */
#scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-l));
  box-shadow: 0 0 10px rgba(232,146,10,.55);
  z-index: 9999; pointer-events: none;
  transition: width .08s linear;
}

/* ════════════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════════════ */
#cur-dot, #cur-ring { display: none; }

@media (pointer: fine) {
  body           { cursor: none; }
  a, button, .tc { cursor: none; }

  #cur-dot {
    display: block; position: fixed;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange);
    pointer-events: none; z-index: 10000;
    left: 0; top: 0; transform: translate(-50%,-50%);
    transition: width .25s, height .25s, background .25s;
  }
  #cur-ring {
    display: block; position: fixed;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid rgba(232,146,10,.55);
    pointer-events: none; z-index: 9999;
    left: 0; top: 0; transform: translate(-50%,-50%);
    transition: width .4s cubic-bezier(.16,1,.3,1),
                height .4s cubic-bezier(.16,1,.3,1),
                border-color .3s;
  }
  body.cur-hover #cur-dot  { width: 12px; height: 12px; background: var(--orange-l); }
  body.cur-hover #cur-ring { width: 52px; height: 52px; border-color: rgba(232,146,10,.32); }
}

/* ════════════════════════════════════════════════
   SIDE NAVIGATION DOTS
════════════════════════════════════════════════ */
#side-nav {
  position: fixed; right: 22px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 1000;
}
.sn-dot {
  display: block; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.4);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.sn-dot::after {
  content: attr(data-label);
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: rgba(5,9,26,.82); backdrop-filter: blur(8px);
  color: #fff; font-size: .72rem; padding: 4px 9px;
  border-radius: 7px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid rgba(255,255,255,.1);
}
.sn-dot:hover::after,
.sn-dot.sn-active::after { opacity: 1; }
.sn-dot.sn-active {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 0 8px rgba(232,146,10,.55);
  transform: scale(1.4);
}
@media (max-width: 768px) { #side-nav { display: none; } }

/* ════════════════════════════════════════════════
   HERO ZONE — dark full-width stage
════════════════════════════════════════════════ */
.hz {
  position: relative;
  background-color: var(--navy-d);
  background-image:
    radial-gradient(ellipse at var(--ox1) var(--oy1), rgba(232,146,10,.22) 0%, transparent 52%),
    radial-gradient(ellipse at var(--ox2) var(--oy2), rgba(80,70,200,.13)  0%, transparent 50%),
    radial-gradient(ellipse at var(--ox3) var(--oy3), rgba(13,60,120,.28)  0%, transparent 52%);
  overflow: hidden;
}

/* Canvas particles */
#hz-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Dot grid */
.hz-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
}

/* Background orbs (CSS-only, complement the JS mesh) */
.hz-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hz-orbs::before {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,146,10,.1) 0%, transparent 65%);
  top: -180px; right: -80px;
  animation: orb-drift 14s ease-in-out infinite;
}
.hz-orbs::after {
  content: '';
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,141,184,.1) 0%, transparent 65%);
  bottom: -80px; left: -60px;
  animation: orb-drift 18s ease-in-out infinite reverse 4s;
}
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(40px,-50px) scale(1.1); }
  70%     { transform: translate(-30px,25px) scale(.92); }
}

/* Glow separator line */
.hz-glow {
  position: absolute; bottom: 0; left: 8%; right: 8%; height: 1px; z-index: 3;
  background: linear-gradient(90deg,
    transparent,
    rgba(232,146,10,.5)  25%,
    rgba(245,171,58,.85) 50%,
    rgba(232,146,10,.5)  75%,
    transparent);
  box-shadow: 0 0 18px rgba(232,146,10,.4), 0 0 50px rgba(232,146,10,.12);
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.hdr {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0;
  transition: background .35s, backdrop-filter .35s;
}
.hdr-scrolled {
  background: rgba(5,9,26,.75);
  backdrop-filter: blur(16px);
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 64px; height: 64px; border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(232,146,10,.5), 0 0 0 1px rgba(232,146,10,.2);
  transition: transform .3s, box-shadow .3s;
  background: linear-gradient(135deg, var(--orange), var(--orange-l));
  flex-shrink: 0;
}
.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.07);
  box-shadow: 0 8px 32px rgba(232,146,10,.65), 0 0 0 1px rgba(232,146,10,.3);
}
.brand-mark.small {
  width: 38px; height: 38px; border-radius: 12px; box-shadow: none;
}
.brand-logo { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; line-height: 1.2; }
.brand-sub  { font-size: .8rem; color: rgba(255,255,255,.42); margin-top: 3px; }

.nav { display: flex; flex-wrap: wrap; gap: 4px; }
.nav a {
  position: relative;
  color: rgba(255,255,255,.65); font-weight: 500; font-size: .92rem;
  padding: 6px 13px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav a::after {
  content: '';
  position: absolute; bottom: 4px; left: 13px; right: 13px; height: 1px;
  background: var(--orange-l);
  transform: scaleX(0); transition: transform .3s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav a:hover::after { transform: scaleX(1); }

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.hero {
  position: relative; z-index: 2;
  display: grid; gap: 48px;
  padding: 64px 0 88px;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
  color: var(--orange-l); font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; font-size: .76rem;
}
.eyebrow-dash {
  display: inline-block; width: 22px; height: 2px;
  background: var(--orange-l); border-radius: 2px; flex-shrink: 0;
}
.eyebrow-rotate {
  display: inline-block;
  transition: opacity .28s ease, transform .28s ease;
}
.eyebrow-rotate.rotate-out {
  opacity: 0; transform: translateY(-8px);
}
.eyebrow-rotate.rotate-in {
  animation: rotate-in .3s ease;
}
@keyframes rotate-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* H1 line-by-line reveal */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 1.02; color: #fff; margin-bottom: 28px;
}
.hl { display: block; overflow: hidden; }
.hl > span, .hl > em {
  display: block; transform: translateY(105%);
  transition: transform .85s cubic-bezier(.16,1,.3,1);
}
.hl-accent > em {
  font-style: italic;
  background: linear-gradient(110deg, var(--orange-l) 0%, #fff 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  transition-delay: .12s;
}
.hl.hl-vis > span,
.hl.hl-vis > em { transform: translateY(0); }

.hero-sub {
  color: rgba(255,255,255,.58); font-size: 1.05rem;
  max-width: 520px; line-height: 1.72;
}
.hero-btns  { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 20px; }
.hero-note  { color: rgba(255,255,255,.28); font-size: .87rem; }

/* Reveal animation base states */
[data-reveal="up"]    { opacity: 0; transform: translateY(32px);  transition: opacity .7s ease, transform .7s ease; }
[data-reveal="right"] { opacity: 0; transform: translateX(56px);  transition: opacity .75s ease, transform .75s ease; }
[data-reveal="pop"]   { opacity: 0; transform: scale(.72);        transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
[data-reveal].vis     { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 14px 30px;
  font-weight: 700; font-size: .97rem;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  will-change: transform;
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.25), transparent 36%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 6px 22px rgba(232,146,10,.4);
}
.btn-primary:hover { background: var(--orange-l); box-shadow: 0 10px 36px rgba(232,146,10,.52); }

.btn-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }

.btn-ghost-light {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

/* Adapt in light sections */
.sec .btn-ghost {
  background: rgba(232,146,10,.1); color: var(--orange);
  border-color: rgba(232,146,10,.22);
}
.sec .btn-ghost:hover { background: rgba(232,146,10,.18); }

/* ════════════════════════════════════════════════
   BROWSER MOCKUP
════════════════════════════════════════════════ */
.hero-stage {
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.hero-stage:hover .browser { transform: translateY(-4px) rotate(-.2deg); }
.hero-stage:hover .browser::before { animation-duration: 4.8s; }

.browser { z-index: 1; }

@keyframes sectionGlow {
  0%, 100% { transform: scale(1.04); opacity: 0; }
  50% { transform: scale(1.02); opacity: .85; }
}
@keyframes btnPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.browser {
  width: 100%; max-width: 450px;
  background: var(--white); border-radius: 18px;
  overflow: hidden; position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 40px 90px rgba(0,0,0,.55),
    0 0 70px rgba(232,146,10,.1);
  animation: b-float 6s ease-in-out infinite;
}
@keyframes b-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-10px) rotate(.3deg); }
}

/* Shine sweep */
.browser::before {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%; z-index: 10;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.06) 50%, transparent 60%);
  transform: skewX(-8deg);
  animation: b-shine 7s ease-in-out infinite 2.5s;
  pointer-events: none;
}
@keyframes b-shine {
  0%,55%,100% { left: -80%; opacity: 0; }
  10%         { opacity: 1; }
  50%         { left: 130%; opacity: 0; }
}

.b-bar {
  display: flex; align-items: center; gap: 10px;
  background: #efefef; padding: 9px 12px;
}
.b-dots { display: flex; gap: 5px; }
.b-dots span { width: 10px; height: 10px; border-radius: 50%; }
.d-r { background: #ff5f57; }
.d-y { background: #febc2e; }
.d-g { background: #28c840; }

.b-url {
  flex: 1; display: flex; align-items: center; gap: 6px;
  background: #fff; border-radius: 6px;
  padding: 4px 10px; font-size: .72rem; color: #777;
  min-height: 24px;
}
.b-cursor { opacity: 1; font-weight: 300; }

.b-body { padding: 12px 12px 16px; background: #f9f9f9; }

.sk-nav {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: 8px; padding: 8px 10px;
  border: 1px solid #eee; margin-bottom: 9px;
}
.sk-logo {
  width: 52px; height: 9px; border-radius: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-l));
}
.sk-links { display: flex; gap: 8px; }

.sk-hero {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #05091a 0%, #0e1f40 100%);
  border-radius: 10px; padding: 16px 12px; margin-bottom: 9px; gap: 8px;
}
.sk-copy { flex: 1; }
.sk-face { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }

.sk-l {
  height: 6px; border-radius: 4px;
  background: rgba(255,255,255,.22); margin-bottom: 5px;
}
.sk-l.fat  { height: 9px; background: rgba(255,255,255,.45); }
.sk-l.w28  { width: 28%; background: #ddd; }
.sk-l.w45  { width: 45%; }
.sk-l.w55  { width: 55%; }
.sk-l.w75  { width: 75%; }

.sk-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue-l));
  border: 2px solid rgba(255,255,255,.25);
}
.sk-badge-sm { width: 40px; height: 7px; border-radius: 4px; background: rgba(232,146,10,.6); }
.sk-cta { width: 60px; height: 18px; border-radius: 99px; background: var(--orange); margin-top: 4px; }
.sk-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.sk-card  { height: 42px; border-radius: 8px; background: linear-gradient(135deg,#fff,#f4f4f4); border: 1px solid #ebebeb; }

/* ════════════════════════════════════════════════
   FLOATING BADGES
════════════════════════════════════════════════ */
.fb {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(14,25,50,.8); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px; padding: 10px 14px; color: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.4), 0 0 0 1px rgba(232,146,10,.1);
  white-space: nowrap; z-index: 10;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.fb-ico {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--orange), var(--orange-l));
  display: grid; place-items: center; font-size: .85rem; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(232,146,10,.35);
}
.fb-num {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--orange-l); line-height: 1;
}
.fb > div:last-child { display: grid; line-height: 1.3; }
.fb strong { font-size: .82rem; font-weight: 700; }
.fb span   { font-size: .73rem; color: rgba(255,255,255,.5); }

.fb-tl { top: -18px; left: -20px; }
.fb-br { bottom: 30px; right: -20px; }

/* ════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════ */
.mq {
  position: relative; z-index: 20;
  background: var(--navy-m); padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mq-track {
  display: flex; width: max-content;
  animation: mq-scroll 30s linear infinite;
}
.mq-track:hover { animation-play-state: paused; }
@keyframes mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-row { display: flex; align-items: center; gap: 22px; padding-right: 22px; }
.mq-row span { color: rgba(255,255,255,.52); font-size: .87rem; font-weight: 500; white-space: nowrap; }
.mq-row b    { color: var(--orange); font-size: 1rem; font-weight: 400; }

/* ════════════════════════════════════════════════
   SECTION BASICS
════════════════════════════════════════════════ */
.lbl {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 16px; color: var(--orange);
  font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; font-size: .76rem;
}
.lbl::before {
  content: ''; width: 18px; height: 2px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}
.lbl-light { color: rgba(245,171,58,.82); }
.lbl-light::before { background: rgba(245,171,58,.82); }

.sec     { padding: 72px 0; position: relative; overflow: hidden; }
.sec-alt {
  background: rgba(255,255,255,.95); border-radius: var(--r-card);
  padding: 56px 44px; position: relative; overflow: hidden;
  border: 1px solid rgba(232,146,10,.14);
  box-shadow: 0 36px 95px rgba(22,38,74,.07);
}
.sec-cta {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(232,146,10,.14);
  box-shadow: 0 36px 95px rgba(22,38,74,.08);
}

.sec::before,
.sec-alt::before,
.sec-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,24%), rgba(232,146,10,.12), transparent 18%),
              radial-gradient(circle at calc(var(--mx,50%) + 26%) calc(var(--my,50%) + 16%), rgba(91,141,184,.08), transparent 14%);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity .85s ease, transform .85s ease;
  z-index: 0;
}
.sec-active::before,
.sec-alt.sec-active::before,
.sec-cta.sec-active::before {
  opacity: 1;
  transform: scale(1);
}

.portfolio-section {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fffdf9 0%, #fefbf4 42%, #ffffff 100%);
  border-radius: calc(var(--r-card) + 4px);
}
.portfolio-section .portfolio-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 0;
  pointer-events: none;
  opacity: .48;
}
.portfolio-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(232,146,10,.12), transparent 22%),
              radial-gradient(circle at 18% 78%, rgba(91,141,184,.08), transparent 15%);
  pointer-events: none; z-index: 1;
}
.portfolio-section .sec-intro {
  position: relative; z-index: 2;
}
.sec-intro::after {
  content: '';
  position: absolute; left: 0; bottom: -12px;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-l));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s ease;
}
.sec-active .sec-intro::after,
.sec-alt.sec-active .sec-intro::after,
.sec-cta.sec-active .sec-intro::after {
  transform: scaleX(1);
}

.sec-banner {
  margin-top: 10px; margin-bottom: 18px;
  max-width: 680px;
  font-weight: 700; font-size: 1rem;
  color: var(--navy-d);
  letter-spacing: .02em;
}

.sec-intro { max-width: 660px; margin-bottom: 48px; position: relative; z-index: 2; }
.sec-intro h2,
.sec-split h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  color: var(--navy-d); line-height: 1.14; margin-bottom: 16px;
}
.sec-intro p { color: var(--text-m); font-size: 1.02rem; }

/* ── Split-text words ── */
.sw {
  display: inline-block; overflow: hidden;
  vertical-align: bottom; padding-bottom: .06em;
}

.sec-intro h2 span,
.sec-split h2 span {
  display: inline-block; opacity: 0;
  transform: translateY(18px);
  transition: transform .75s cubic-bezier(.16,1,.3,1), opacity .75s ease;
}
.sec-active .sec-intro h2 span,
.sec-active .sec-split h2 span {
  opacity: 1;
  transform: translateY(0);
}

.sw > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .65s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--wi) * 55ms);
}
.sw-vis .sw > span { transform: translateY(0); }

/* ── Problema ── */
.sec-split { display: grid; gap: 40px; }
.prob-list {
  list-style: none; padding: 0; display: grid; gap: 12px; margin-top: 24px;
}
.prob-list li {
  padding: 18px 22px 18px 34px;
  position: relative; color: var(--text-m);
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(252,245,232,.95) 100%);
  border-radius: 22px;
  border: 1px solid rgba(232,146,10,.14);
  box-shadow: 0 26px 50px rgba(13,31,60,.05);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.prob-list li:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(255,247,236,.98) 100%);
  box-shadow: 0 32px 72px rgba(13,31,60,.09);
}
.prob-list li::before {
  content: '';
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-l));
}
.prob-aside { display: grid; gap: 22px; }

/* ── Stat card ── */
.stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  border: 1px solid rgba(232,146,10,.18);
  border-radius: calc(var(--r-card) + 4px);
  padding: 32px 36px;
  box-shadow: 0 28px 76px rgba(13,31,60,.08);
}
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
  color: var(--navy-d); line-height: 1; margin-bottom: 10px;
}
.stat-pct { font-size: 2rem; }
.stat-card p:last-child { color: var(--text-m); font-size: .95rem; }

.qbox {
  background: linear-gradient(180deg, #ffffff 0%, #fbf5ec 100%);
  border: 1px solid rgba(232,146,10,.12);
  border-radius: var(--r-card); padding: 26px 30px;
  box-shadow: 0 24px 70px rgba(13,31,60,.07);
}
.qbox p { font-style: italic; color: var(--text-m); font-size: .97rem; }

/* ════════════════════════════════════════════════
   CARDS — 3D tilt + gradient border + sheen
════════════════════════════════════════════════ */
.grid-4 { display: grid; gap: 18px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 18px; grid-template-columns: 1fr; }

.card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%);
  border: 1px solid rgba(232,146,10,.12);
  border-radius: var(--r-card); padding: 30px;
  box-shadow: 0 20px 60px rgba(31,46,97,.08);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
/* Gradient border via mask */
.card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg,
    rgba(232,146,10,0), rgba(232,146,10,.5), rgba(245,171,58,.3), rgba(232,146,10,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s;
}
.card:hover::before { opacity: 1; }
/* Sheen from JS --sx --sy */
.card::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at var(--sx,50%) var(--sy,50%),
    rgba(255,255,255,.09) 0%, transparent 55%);
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 32px 84px rgba(31,46,97,.12); border-color: rgba(232,146,10,.22); }
.card:hover::after { opacity: 1; }

.card-ico { font-size: 1.45rem; color: var(--orange); margin-bottom: 14px; }
.card h3  {
  font-family: 'Playfair Display', serif; font-size: 1.28rem;
  color: var(--navy-d); margin-bottom: 10px;
}
.card p   { color: var(--text-m); font-size: .96rem; }

/* Benefit — animated underline bar */
.card-benefit { padding-bottom: 26px; }
.card-benefit::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-l));
  border-radius: 0 0 0 var(--r-card);
  transition: width .45s ease, opacity .3s; opacity: 0;
}
.card-benefit:hover::after { width: 100%; opacity: 1; }

/* Step cards */
.step-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ef 100%);
  border: 1px solid rgba(232,146,10,.14);
  border-radius: var(--r-card); padding: 34px 36px;
  box-shadow: 0 22px 56px rgba(31,46,97,.08);
  position: relative; overflow: hidden; transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.step-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg,
    rgba(232,146,10,0), rgba(232,146,10,.42), rgba(232,146,10,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 30px 72px rgba(31,46,97,.12); border-color: rgba(232,146,10,.25); }
.step-card:hover::before { opacity: 1; }

.step-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(245,171,58,.12), transparent 24%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}
.step-card:hover::after { opacity: 1; }

.step-n {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px rgba(232,146,10,.35);
  margin-bottom: 14px;
  transition: color .3s, -webkit-text-stroke-color .3s;
}
.step-card:hover .step-n { color: rgba(232,146,10,.1); -webkit-text-stroke-color: var(--orange); }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy-d); margin-bottom: 10px; }
.step-card p  { color: var(--text-m); font-size: .96rem; }

/* ════════════════════════════════════════════════
   PORTFOLIO
════════════════════════════════════════════════ */
.portfolio-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  position: relative; z-index: 2; padding: 12px 0 8px;
  perspective: 1200px;
}
.portfolio-grid::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 14%, rgba(232,146,10,.08), transparent 26%),
              radial-gradient(circle at 20% 88%, rgba(91,141,184,.06), transparent 18%);
  pointer-events: none; z-index: 0;
}
.portfolio-grid > .pf-card {
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(26px) scale(0.98);
  transform-style: preserve-3d;
  transition: opacity .65s ease, transform .65s ease, box-shadow .35s ease, filter .35s ease;
}
.portfolio-grid > .pf-card.vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio-grid > .pf-card:hover {
  transform: translateY(-6px) scale(1.015);
}

/* ── Card base ── */
.pf-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow);
  position: relative; text-decoration: none; color: inherit; display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}
.pf-card::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(232,146,10,.75), rgba(245,171,58,.8), rgba(255,255,255,.9), rgba(232,146,10,.75));
  background-size: 220% 220%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  opacity: 0;
  transition: opacity .35s ease;
}
.pf-card::after {
  content: '';
  position: absolute; inset: -25% 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.32) 50%, transparent 70%);
  transform: translateX(-100%) rotate(6deg);
  opacity: 0;
  transition: opacity .3s ease, transform .8s ease;
}
.pf-link:hover {
  box-shadow: 0 28px 80px rgba(13,31,60,.18);
  border-color: rgba(232,146,10,.5);
  filter: saturate(1.06);
}
.pf-card:hover::before {
  opacity: 1;
  animation: borderShift 3.4s linear infinite;
}
.pf-card:hover::after {
  opacity: 1;
  transform: translateX(130%) rotate(6deg);
}

/* ── Featured Pro card ── */
.pf-featured {
  border-color: rgba(232,146,10,.35);
  box-shadow: 0 0 0 1px rgba(232,146,10,.15), var(--shadow);
}
.pf-featured:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 90px rgba(232,146,10,.22), 0 0 0 1px rgba(232,146,10,.45);
}
.pf-glow {
  position: absolute; inset: -1px; border-radius: inherit; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,146,10,.16), transparent 70%);
  opacity: 0; transition: opacity .4s ease, transform .4s ease;
}
.pf-featured:hover .pf-glow {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes borderShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

/* ── Badge ── */
.pf-badge {
  position: absolute; top: 12px; left: 12px; z-index: 20;
  padding: 4px 12px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.pf-badge-base { background: rgba(10,18,40,.75); color: #7fa8cc; border: 1px solid rgba(127,168,204,.25); }
.pf-badge-pro  {
  background: rgba(232,146,10,.24); color: #9b5400;
  border: 1px solid rgba(232,146,10,.6);
  box-shadow: 0 10px 24px rgba(232,146,10,.08);
}
.pf-badge-pro {
  position: relative;
  background: rgba(232,146,10,.24); color: #9b5400;
  border: 1px solid rgba(232,146,10,.6);
  box-shadow: 0 10px 24px rgba(232,146,10,.08);
}
.pf-badge-pro::after {
  content: '';
  position: absolute; top: 50%; right: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #5fdc7e;
  transform: translateY(-50%);
  box-shadow: 0 0 0 2px rgba(95,220,126,.2);
  animation: badgePulse 1.8s ease-out infinite;
}
.pf-featured:hover .pf-badge-pro {
  background: rgba(232,146,10,.4);
  color: #fff;
  box-shadow: 0 14px 32px rgba(232,146,10,.18);
}
.pf-badge-soon { background: rgba(100,100,120,.18); color: #888; border: 1px solid rgba(150,150,170,.2); }

/* ── Screen / browser mockup ── */
.pf-screen {
  position: relative; z-index: 1; flex-shrink: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.pf-screen-muted { filter: grayscale(.6); opacity: .55; }

.pfb-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; background: #f0f0f2; border-bottom: 1px solid #e0e0e4;
}
.pfb-bar-dark { background: #11192e; border-bottom-color: rgba(255,255,255,.07); }
.pfb-dots { display: flex; gap: 4px; }
.pfb-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ccc;
}
.pfb-dots span:nth-child(1) { background: #fc5f56; }
.pfb-dots span:nth-child(2) { background: #fdbc2d; }
.pfb-dots span:nth-child(3) { background: #27c840; }
.pfb-dots-muted span { background: #555 !important; }
.pfb-url {
  flex: 1; text-align: center; font-size: .65rem; color: #aaa;
  background: #fff; border-radius: 4px; padding: 2px 8px;
  border: 1px solid #e0e0e4; font-family: monospace;
  position: relative;
}
.pfb-url::after {
  content: '';
  position: absolute; right: 10px; top: 50%;
  width: 2px; height: 10px; background: rgba(51,51,51,.7);
  transform: translateY(-50%);
  animation: cursorBlink 1s steps(1) infinite;
}
.pfb-url-muted { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: #555; }
.pfb-bar-dark .pfb-url { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); color: #666; }

.pfb-dots span {
  animation: dotPulse 1.8s ease-in-out infinite;
}
.pfb-dots span:nth-child(1) { animation-delay: 0s; }
.pfb-dots span:nth-child(2) { animation-delay: 0.18s; }
.pfb-dots span:nth-child(3) { animation-delay: 0.36s; }

.pfb-line.fat-light,
.pfb-services div,
.pfb-btn-primary {
  animation: mockupGlow 2.4s ease-in-out infinite alternate;
}

@keyframes cursorBlink {
  0%, 40%, 100% { opacity: 1; }
  50%, 90% { opacity: 0; }
}
@keyframes dotPulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}
@keyframes mockupGlow {
  0% { opacity: .75; }
  100% { opacity: 1; }
}
@keyframes badgePulse {
  0% { transform: translateY(-50%) scale(1); box-shadow: 0 0 0 2px rgba(95,220,126,.2); }
  70% { transform: translateY(-50%) scale(1.22); box-shadow: 0 0 0 10px rgba(95,220,126,0); }
  100% { transform: translateY(-50%) scale(1); box-shadow: 0 0 0 2px rgba(95,220,126,.2); }
}

/* ── Light body (Base) ── */
.pfb-body { padding: 10px 12px 12px; background: #f9fafc; }
.pfb-base { min-height: 180px; }
.pfb-pro  { min-height: 200px; background: #0b1226; }
.pfb-blog { min-height: 160px; }

/* ── Nav skeleton ── */
.pfb-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.pfb-logo { width: 44px; height: 7px; border-radius: 4px; background: #d0d4e0; }
.pfb-logo-light { background: rgba(255,255,255,.3); }
.pfb-logo-muted  { background: rgba(100,100,120,.3); }
.pfb-navlinks { display: flex; gap: 6px; }
.pfb-navlinks div { width: 22px; height: 5px; border-radius: 3px; background: #ddd; }
.pfb-navlinks-dark div { background: rgba(255,255,255,.18); }
.pfb-navlinks-muted div { background: rgba(100,100,120,.25); }
.pfb-nav-dark { background: transparent; }
.pfb-nav-muted { opacity: .5; }

/* ── Hero row (Base light) ── */
.pfb-hero-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pfb-copy { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pfb-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #c8d8f0, #9ab4d4); flex-shrink: 0; }
.pfb-line { border-radius: 4px; background: #e0e4ee; }
.pfb-line.w70 { width: 70%; }
.pfb-line.w65 { width: 65%; }
.pfb-line.w55 { width: 55%; }
.pfb-line.w50 { width: 50%; }
.pfb-line.w40 { width: 40%; }
.pfb-line.w35 { width: 35%; }
.pfb-line.w80 { width: 80%; }
.pfb-line.fat  { height: 8px; background: #d0d5e5; }
.pfb-line.thin { height: 5px; }
.pfb-line.fat-light  { height: 8px; background: rgba(255,255,255,.35); }
.pfb-line.thin-light { height: 5px; background: rgba(255,255,255,.18); }
.pfb-btn { width: 52px; height: 14px; border-radius: 7px; background: #E8920A; margin-top: 4px; }

/* ── Contact row (Base) ── */
.pfb-contact-row { display: flex; gap: 6px; align-items: center; }
.pfb-field { flex: 1; height: 14px; border-radius: 5px; background: #fff; border: 1px solid #e0e4ee; }
.pfb-submit { width: 42px; height: 16px; border-radius: 6px; background: var(--accent); flex-shrink: 0; }

/* ── Pro dark hero ── */
.pfb-hero-dark {
  padding: 14px 4px 10px; display: flex; flex-direction: column; gap: 6px;
  background: linear-gradient(180deg, rgba(232,146,10,.06) 0%, transparent 100%);
  border-radius: 6px; margin-bottom: 8px;
}
.pfb-row-btns { display: flex; gap: 6px; margin-top: 4px; }
.pfb-btn-primary { width: 52px; height: 14px; border-radius: 7px; background: var(--accent); }
.pfb-btn-ghost   { width: 44px; height: 14px; border-radius: 7px; background: transparent; border: 1px solid rgba(255,255,255,.25); }

/* ── Services grid (Pro) ── */
.pfb-services { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin-bottom: 8px; }
.pfb-services div { height: 30px; border-radius: 5px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }

/* ── Testimonial bar (Pro) ── */
.pfb-testi { display: flex; flex-direction: column; gap: 4px; padding: 0 4px; }

/* ── Blog articles (Coming soon) ── */
.pfb-articles { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; }
.pfb-art { height: 50px; border-radius: 6px; background: linear-gradient(135deg, #e8eaf0, #d8dce8); border: 1px solid #dde0ec; }
.pfb-art-hide { display: none; }

/* ── Lock overlay ── */
.pfb-lock-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,12,28,.55); backdrop-filter: blur(2px);
}
.pfb-lock-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4);
}
.pfb-lock-inner span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }

/* ── Info panel ── */
.pf-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; position: relative; z-index: 1; }
.pf-info-top { display: flex; align-items: flex-start; gap: 12px; }
.pf-info strong { display: block; font-size: .98rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pf-info p { color: var(--text-m); font-size: .84rem; line-height: 1.5; margin: 0; }
.pf-info-muted strong, .pf-info-muted p { opacity: .5; }

/* ── CTA button ── */
.pf-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-m);
  border: 1px solid var(--border); border-radius: 99px;
  padding: 12px 20px; align-self: flex-start;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s, transform .25s ease;
  position: relative; z-index: 1;
}
.pf-link:hover .pf-cta-btn {
  background: var(--text); color: #fff; border-color: var(--text);
  box-shadow: 0 12px 28px rgba(13,31,60,.16);
  transform: translateY(-1px);
}
.pf-cta-accent {
  color: var(--accent); border-color: rgba(232,146,10,.4);
  background: rgba(232,146,10,.08);
}
.pf-featured:hover .pf-cta-accent {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(232,146,10,.2);
  transform: translateY(-1px);
}
.pf-featured:hover {
  border-color: var(--accent);
  box-shadow: 0 28px 80px rgba(232,146,10,.24), 0 0 0 1px rgba(232,146,10,.4);
}
.pf-featured:hover .pf-cta-accent {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 14px 28px rgba(232,146,10,.22);
  transform: translateY(-1px);
}
.pf-featured:hover .pf-cta-btn {
  color: #fff;
}

/* ── Coming Soon card ── */
.pf-soon { cursor: default; overflow: hidden; }

.pf-soon-stage {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #08101e 0%, #0d1a35 50%, #06121f 100%);
  min-height: 260px; display: flex; align-items: center; justify-content: center;
}

.pf-soon-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(40px); opacity: .55;
}
.pf-soon-orb1 {
  width: 160px; height: 160px; top: -30px; left: -30px;
  background: radial-gradient(circle, rgba(232,146,10,.5), transparent 70%);
  animation: soon-drift1 7s ease-in-out infinite alternate;
}
.pf-soon-orb2 {
  width: 130px; height: 130px; bottom: -20px; right: -20px;
  background: radial-gradient(circle, rgba(91,141,184,.45), transparent 70%);
  animation: soon-drift2 9s ease-in-out infinite alternate;
}
.pf-soon-orb3 {
  width: 80px; height: 80px; top: 50%; left: 55%;
  background: radial-gradient(circle, rgba(232,146,10,.3), transparent 70%);
  animation: soon-drift3 6s ease-in-out infinite alternate;
}
@keyframes soon-drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(30px, 25px) scale(1.2); } }
@keyframes soon-drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-25px,-20px) scale(1.15); } }
@keyframes soon-drift3 { from { transform: translate(0,0); } to { transform: translate(-20px, 15px); } }

.pf-soon-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pf-soon-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; padding: 32px 20px;
}

.pf-soon-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.12);
  padding: 4px 12px; border-radius: 99px; background: rgba(255,255,255,.05);
}
.pf-soon-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 8px var(--orange);
  animation: soon-pulse 1.5s ease-in-out infinite;
}
@keyframes soon-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.pf-soon-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: #fff;
  line-height: 1.15;
  text-shadow: 0 0 40px rgba(232,146,10,.3);
}

.pf-soon-sub {
  font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.55;
}

.pf-soon-pills {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 4px;
}
.pf-soon-pills span {
  font-size: .68rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 99px;
  background: rgba(232,146,10,.12); color: var(--orange-l); border: 1px solid rgba(232,146,10,.25);
}

.pf-soon-info {
  padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 14px;
}
.pf-soon-desc {
  font-size: .84rem; color: var(--text-m); line-height: 1.55;
}
.pf-cta-notify {
  color: var(--orange); border-color: rgba(232,146,10,.4);
  font-size: .82rem;
  transition: background .25s, color .25s;
}
.pf-cta-notify:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* ════════════════════════════════════════════════
   TESTIMONIAL
════════════════════════════════════════════════ */
.testi {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 44px 40px;
  max-width: 680px; position: relative; box-shadow: var(--shadow);
}
.testi-q {
  font-family: 'Playfair Display', serif; font-size: 6rem; line-height: .8;
  color: var(--orange); opacity: .18;
  position: absolute; top: 14px; left: 30px;
  pointer-events: none; user-select: none;
}
.testi p { font-style: italic; font-size: 1.1rem; color: var(--navy-d); margin-bottom: 24px; position: relative; z-index: 1; }
.testi footer { display: grid; gap: 4px; position: relative; z-index: 1; }
.testi strong { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy-d); }
.testi span   { font-size: .88rem; color: var(--text-s); }

/* ════════════════════════════════════════════════
   CTA
════════════════════════════════════════════════ */
.sec-cta {
  background: linear-gradient(135deg, var(--navy-m) 0%, var(--navy-d) 100%);
  border-radius: var(--r-card); padding: 68px 52px;
  position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,146,10,.18) 0%, transparent 65%);
  top: -100px; right: -60px; pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite;
}
.cta-inner { position: relative; z-index: 1; }
.sec-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem); color: #fff; line-height: 1.15;
  margin: 10px 0 32px;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-email { margin-top: 20px; font-size: .93rem; color: rgba(255,255,255,.42); }
.cta-email a { color: rgba(255,255,255,.72); text-decoration: underline; }
.cta-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cta-pills span {
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  font-size: .85rem; color: rgba(255,255,255,.58);
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.ftr { display: grid; gap: 18px; padding: 40px 0 16px; border-top: 1px solid var(--border); color: var(--text-m); }
.ftr-brand { display: flex; align-items: center; gap: 12px; }
.ftr-brand p  { font-weight: 700; color: var(--navy-d); }
.ftr-info p   { font-size: .93rem; }
.ftr-info a   { transition: color .2s; }
.ftr-info a:hover { color: var(--orange); }
.ftr-copy { font-size: .85rem; color: #9299ac; }

/* ════════════════════════════════════════════════
   RESPONSIVE — tablet / desktop
════════════════════════════════════════════════ */
@media (min-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) 0.95fr;
    align-items: center; gap: 64px; padding: 80px 0 100px;
  }
  .hero-stage    { justify-content: flex-end; }
  .sec-split     { grid-template-columns: 1.25fr 1fr; align-items: start; gap: 48px; }
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .grid-3        { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .pfb-art-hide { display: block; }
  .pfb-articles { grid-template-columns: repeat(3,1fr); }
  .fb-tl { top: -22px; left: -30px; }
  .fb-br { bottom: 44px; right: -30px; }
}
@media (min-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — mobile
════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .wrap      { padding: 0 16px; }
  .hdr       { flex-direction: column; align-items: flex-start; gap: 10px; }
  .nav       { width: 100%; gap: 2px; }
  .hero      { padding: 48px 0 64px; }
  .hero-btns { flex-direction: column; }
  .sec-alt, .sec-cta { border-radius: var(--r-sm); padding: 32px 20px; }
  .fb        { display: none; }
  .testi     { padding: 32px 24px; }
  .cta-btns  { flex-direction: column; }
}

/* ════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .browser, .hz-orbs::before, .hz-orbs::after,
  .browser::before, .mq-track, .cta-orb,
  .loader-inner { animation: none !important; }
  [data-reveal], .hl > span, .hl > em,
  .sw > span {
    transition: none !important;
    opacity: 1 !important; transform: none !important;
  }
  .loader-fill { animation: none !important; width: 100%; }
}
