/* =====================================================
   SYRROHUB — styles.css — Gold Premium Edition v2
   ===================================================== */

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Design Tokens ──────────────────────────────────── */
:root {
  --bg:      #03030A;
  --bg2:     #06060F;
  --bg3:     #0A0A18;
  --bg4:     #0E0E20;
  --accent:  #C9A84C;
  --accent2: #E8C77D;
  --accent3: #A07830;
  --accentd: rgba(201,168,76,.07);
  --accentd2:rgba(201,168,76,.14);
  --grad:    linear-gradient(135deg,#C9A84C 0%,#E8C77D 100%);
  --text:    #F0EDF8;
  --text2:   #8A8698;
  --text3:   #4E4A58;
  --bdr:     rgba(201,168,76,.10);
  --bdr2:    rgba(201,168,76,.22);
  --surf:    rgba(8,8,18,.82);
  --r:       12px;
  --r-lg:    20px;
  --shadow:  0 24px 64px rgba(0,0,0,.65);
  --glow:    0 0 48px rgba(201,168,76,.18);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── Scroll Progress ────────────────────────────────── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--grad); z-index: 1000;
  transition: width .1s linear;
}

/* ── Container ──────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; }
p  { color: var(--text2); line-height: 1.75; }

.gold-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shimmer-text {
  background: linear-gradient(90deg,#C9A84C 0%,#F5E19A 30%,#C9A84C 60%,#A07830 80%,#E8C77D 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 250% center; } }

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--grad);
  color: #0A0600;
  box-shadow: 0 4px 20px rgba(201,168,76,.28);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.45);
  filter: brightness(1.08);
}
.btn--ghost {
  border: 1px solid var(--bdr2);
  color: var(--text);
  background: rgba(201,168,76,.04);
}
.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--accentd);
  color: var(--accent2);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ── NAV — Floating ──────────────────────────────────── */
nav {
  position: fixed;
  top: 14px; left: 14px; right: 14px;
  z-index: 900;
  background: rgba(6,6,15,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
nav.scrolled {
  background: rgba(3,3,10,.92);
  border-color: var(--bdr2);
  box-shadow: 0 8px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.08);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 60px;
  padding: 0 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; margin: 0 auto;
}
.nav-links a {
  font-size: .875rem; font-weight: 400; color: var(--text2);
  transition: color .2s; position: relative;
  cursor: pointer;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-end { display: flex; align-items: center; gap: 14px; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; font-weight: 500; color: var(--text2);
  padding: 6px 12px; border-radius: 6px;
  border: 1px solid var(--bdr);
  transition: all .2s;
  cursor: pointer;
}
.lang-btn:hover { color: var(--accent); border-color: var(--accent); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text2); border-radius: 2px; transition: all .3s;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 88px;
}
#particles {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 40%, transparent 100%);
}
.hero-body {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px 100px;
  width: 100%;
}
.hero-content { display: flex; flex-direction: column; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accentd2);
  border: 1px solid var(--bdr2);
  padding: 8px 18px; border-radius: 100px;
  font-size: .82rem; font-weight: 500; color: var(--accent2);
  margin-bottom: 32px;
  width: fit-content;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}
.hero-title { margin-bottom: 24px; }
.hero-title-plain { color: var(--text); font-style: normal; }
.hero-title-gold { display: block; }
.hero-desc {
  font-size: 1.05rem; color: var(--text2);
  max-width: 520px; margin-bottom: 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0;
  background: rgba(201,168,76,.04);
  border: 1px solid var(--bdr);
  border-radius: 14px; padding: 14px 24px;
  max-width: 560px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 18px; font-size: .82rem; color: var(--text2);
  white-space: nowrap;
}
.trust-gem { color: var(--accent); font-size: .5rem; }
.trust-sep { width: 1px; height: 24px; background: var(--bdr); flex-shrink: 0; }

/* Hero Visual (right column) */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-float-card {
  width: 100%; max-width: 420px;
  background: rgba(10,10,24,.85);
  border: 1px solid var(--bdr2);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.06), var(--glow);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
.hfc-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.hfc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text3);
}
.hfc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 8px rgba(40,200,64,.6);
}
.hfc-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin-bottom: 20px;
}
.hfc-stat {
  background: var(--accentd);
  border: 1px solid var(--bdr);
  border-radius: 12px; padding: 14px 12px;
  text-align: center;
}
.hfc-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; line-height: 1.2;
}
.hfc-stat-label {
  font-size: .68rem; color: var(--text3);
  letter-spacing: .06em; margin-top: 4px; display: block;
}
.hfc-chart {
  background: var(--accentd);
  border: 1px solid var(--bdr);
  border-radius: 12px; padding: 14px;
  margin-bottom: 16px;
  position: relative; overflow: hidden; height: 64px;
}
.hfc-chart-label {
  font-size: .68rem; color: var(--text3);
  letter-spacing: .06em; margin-bottom: 8px; display: block;
}
.hfc-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 32px;
}
.hfc-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, #C9A84C, rgba(201,168,76,.3));
  transition: height .3s ease;
}
.hfc-items { display: flex; flex-direction: column; gap: 8px; }
.hfc-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 8px; padding: 9px 12px;
}
.hfc-item-dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
}
.hfc-item-text {
  font-size: .75rem; color: var(--text2); flex: 1; margin: 0 10px;
}
.hfc-item-val {
  font-size: .75rem; font-weight: 600; color: var(--accent2);
}

/* Floating badge near card */
.hero-badge-float {
  position: absolute;
  bottom: -16px; left: -16px;
  background: rgba(10,10,24,.95);
  border: 1px solid var(--bdr2);
  border-radius: 12px; padding: 12px 16px;
  backdrop-filter: blur(16px);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: -3s;
}
.hbf-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hbf-icon svg { color: #0A0600; }
.hbf-text { display: flex; flex-direction: column; gap: 2px; }
.hbf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; color: var(--text);
  line-height: 1;
}
.hbf-label { font-size: .65rem; color: var(--text3); letter-spacing: .06em; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  overflow: hidden; padding: 14px 0;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-inner span {
  font-size: .82rem; font-weight: 500;
  color: var(--text2); letter-spacing: .04em;
}
.mq-gem { color: var(--accent); font-size: .55rem; flex-shrink: 0; }

/* ── STATS ───────────────────────────────────────────── */
.stats-section {
  padding: 72px 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--bdr);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 24px; text-align: center;
  position: relative;
  cursor: default;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--bdr);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px; display: block;
}
.stat-label {
  font-size: .82rem; color: var(--text3);
  letter-spacing: .06em; line-height: 1.4;
}

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--alt { background: var(--bg2); }
.sec-head {
  text-align: center; max-width: 640px; margin: 0 auto 64px;
}
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { font-size: .975rem; }

/* ── REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.on { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* ── SERVICES ─────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.svc-card {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  position: relative; overflow: hidden;
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4), transparent);
  opacity: 0; transition: opacity .25s;
}
.svc-card:hover {
  border-color: var(--bdr2);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}
.svc-card:hover::before { opacity: 1; }
.svc-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #0A0A18 0%, #0E0A04 100%);
}
.svc-feat-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.svc-feat-text { display: flex; flex-direction: column; gap: 16px; }
.svc-top { display: flex; align-items: center; gap: 14px; }
.svc-badge {
  background: var(--accentd2);
  border: 1px solid var(--bdr2);
  color: var(--accent); font-size: .72rem;
  font-weight: 600; letter-spacing: .1em;
  padding: 5px 12px; border-radius: 100px;
  text-transform: uppercase;
}
.svc-icon {
  color: var(--accent);
  background: var(--accentd);
  border: 1px solid var(--bdr);
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.svc-card:not(.svc-featured) .svc-icon { margin-bottom: 20px; }
.svc-list {
  display: flex; flex-direction: column; gap: 10px; margin-top: 8px;
}
.svc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--text2);
}
.chk { color: var(--accent); font-size: .55rem; flex-shrink: 0; margin-top: 5px; }
.gold-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .875rem; font-weight: 500; color: var(--accent);
  margin-top: 8px; transition: gap .2s;
  cursor: pointer;
}
.gold-link:hover { gap: 12px; }

/* SaaS mockup */
.svc-mockup { display: flex; align-items: center; justify-content: center; }
.mock-browser {
  width: 100%; max-width: 320px;
  background: var(--bg3); border: 1px solid var(--bdr);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.mock-bar {
  background: var(--bg4); padding: 8px 12px;
  display: flex; gap: 6px; align-items: center;
}
.mock-bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,168,76,.25);
}
.mock-bar span:nth-child(1) { background: #ff5f57; }
.mock-bar span:nth-child(2) { background: #febc2e; }
.mock-bar span:nth-child(3) { background: #28c840; }
.mock-page { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.mock-hero-block {
  height: 70px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
}
.mock-btn-row { display: flex; }
.mock-btn-el {
  height: 22px; width: 80px; border-radius: 4px;
  background: linear-gradient(90deg,#C9A84C,#E8C77D);
}
.mock-cards-row { display: flex; gap: 6px; }
.mock-card-el {
  flex: 1; height: 40px; border-radius: 6px;
  background: rgba(201,168,76,.06); border: 1px solid var(--bdr);
}

/* ── PORTFOLIO ────────────────────────────────────────── */
.port-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px; justify-content: center;
}
.tab {
  padding: 8px 20px; border-radius: 100px;
  font-size: .82rem; font-weight: 500; color: var(--text2);
  border: 1px solid var(--bdr);
  background: transparent; transition: all .2s;
  cursor: pointer;
}
.tab:hover, .tab.active {
  background: var(--accentd2); color: var(--accent);
  border-color: var(--bdr2);
}
.port-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.port-card {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.port-card:hover {
  border-color: var(--bdr2); transform: translateY(-4px);
  box-shadow: var(--glow);
}
.port-mock {
  height: 180px; overflow: hidden; position: relative;
  background: var(--bg3);
}
.port-info { padding: 20px 22px; }
.port-tag {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.port-info h3 {
  font-size: 1.1rem; margin-bottom: 8px;
  color: var(--text);
}
.port-info p { font-size: .82rem; line-height: 1.6; margin-bottom: 14px; }
.port-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 500; color: var(--accent);
  transition: gap .2s;
  cursor: pointer;
}
.port-link:hover { gap: 10px; }

/* Portfolio mockups */
.pm-saas {
  display: flex; gap: 0;
  background: linear-gradient(135deg, #0A0A20, #050514);
}
.pm-sidebar {
  width: 36px; background: rgba(201,168,76,.05);
  border-right: 1px solid var(--bdr);
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 0; gap: 12px;
}
.pm-s-logo {
  width: 18px; height: 18px; border-radius: 4px;
  background: linear-gradient(135deg,#C9A84C,#E8C77D);
}
.pm-s-dot {
  width: 10px; height: 10px; border-radius: 2px;
  background: rgba(201,168,76,.15);
}
.pm-main { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.pm-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2px;
}
.pm-search {
  height: 12px; width: 80px; border-radius: 3px;
  background: rgba(255,255,255,.05);
}
.pm-avatar {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg,#C9A84C,#E8C77D);
}
.pm-row3 { display: flex; gap: 6px; }
.pm-stat {
  flex: 1; height: 36px; border-radius: 5px;
  background: rgba(201,168,76,.07);
  border: 1px solid var(--bdr);
}
.pm-chart {
  flex: 1; border-radius: 5px;
  background: linear-gradient(135deg,rgba(201,168,76,.1),rgba(201,168,76,.03));
  border: 1px solid var(--bdr);
}

.pm-lp { padding: 12px; display: flex; flex-direction: column; gap: 7px; }
.pm-hero-band {
  height: 55px; border-radius: 6px; margin: -12px -12px 0;
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(201,168,76,.05));
}
.pm-hero-travel {
  background: linear-gradient(135deg, rgba(0,140,200,.25), rgba(0,80,160,.15));
}
.pm-hero-imovel {
  background: linear-gradient(135deg, rgba(60,40,20,.6), rgba(201,168,76,.15));
}
.pm-lp-title  { height: 10px; width: 70%; background: rgba(201,168,76,.3); border-radius: 3px; }
.pm-lp-sub    { height: 7px; width: 90%; background: rgba(255,255,255,.07); border-radius: 3px; }
.pm-lp-btn    { height: 14px; width: 40%; background: linear-gradient(90deg,#C9A84C,#E8C77D); border-radius: 3px; }
.pm-lp-cards  { display: flex; gap: 5px; }
.pm-lp-cards > div {
  flex: 1; height: 28px; border-radius: 4px;
  background: rgba(201,168,76,.06); border: 1px solid var(--bdr);
}
.pm-lp-dest   { display: flex; gap: 5px; }
.pm-lp-dest > div {
  flex: 1; height: 30px; border-radius: 4px;
  background: rgba(0,140,200,.12);
}
.pm-lp-dest > div.wide { flex: 2; }
.pm-lp-badge  { height: 10px; width: 40%; background: rgba(201,168,76,.4); border-radius: 100px; margin-top: 4px; }
.pm-lp-price  { height: 12px; width: 50%; background: linear-gradient(90deg,#C9A84C,#E8C77D); border-radius: 3px; }
.pm-lp-ams    { display: flex; gap: 5px; }
.pm-lp-ams > div {
  flex: 1; height: 20px; border-radius: 4px;
  background: rgba(201,168,76,.08);
}
.pm-navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 0 6px; border-bottom: 1px solid var(--bdr); margin-bottom: 8px;
}
.pm-nb-logo { width: 30px; height: 10px; background: linear-gradient(90deg,#C9A84C,#E8C77D); border-radius: 2px; }
.pm-nb-links { display: flex; gap: 6px; }
.pm-nb-links::before, .pm-nb-links::after {
  content: ''; width: 20px; height: 6px; border-radius: 2px;
  background: rgba(255,255,255,.07);
}
.pm-hero-corp { display: flex; flex-direction: column; gap: 6px; padding: 8px 0; }
.pm-lp-row2 { display: flex; gap: 8px; }
.pm-lp-row2 > div {
  flex: 1; height: 32px; border-radius: 4px;
  background: rgba(201,168,76,.06); border: 1px solid var(--bdr);
}

.pm-data {
  padding: 12px; display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(135deg, #050520, #0A050A);
}
.pm-d-head { display: flex; justify-content: space-between; align-items: center; }
.pm-d-title { height: 9px; width: 50%; background: rgba(201,168,76,.3); border-radius: 3px; }
.pm-d-filter { height: 9px; width: 24%; background: rgba(255,255,255,.06); border-radius: 3px; }
.pm-d-metrics { display: flex; gap: 5px; }
.pm-d-metrics > div {
  flex: 1; height: 30px; border-radius: 5px;
  background: rgba(201,168,76,.07); border: 1px solid var(--bdr);
}
.pm-d-charts { display: flex; gap: 6px; flex: 1; }
.pm-d-big {
  flex: 2; min-height: 50px; border-radius: 5px;
  background: linear-gradient(135deg,rgba(201,168,76,.12),rgba(201,168,76,.03));
  border: 1px solid var(--bdr);
}
.pm-d-small {
  flex: 1; border-radius: 5px;
  background: rgba(201,168,76,.05);
  border: 1px solid var(--bdr);
}

/* ── PROCESS ──────────────────────────────────────────── */
.proc-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0; align-items: start; margin-top: 20px;
}
.proc-step {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: border-color .25s ease, box-shadow .25s ease;
  cursor: default;
}
.proc-step:hover { border-color: var(--bdr2); box-shadow: var(--glow); }
.proc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px; opacity: .6;
}
.proc-step h3 { margin-bottom: 10px; font-size: 1.2rem; }
.proc-step p { font-size: .875rem; line-height: 1.7; margin-bottom: 14px; }
.proc-tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  color: var(--accent); letter-spacing: .08em;
  background: var(--accentd); border: 1px solid var(--bdr);
  padding: 4px 12px; border-radius: 100px;
}
.proc-connector {
  display: flex; align-items: center; justify-content: center;
  padding-top: 56px;
}
.proc-connector::after {
  content: ''; display: block;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(201,168,76,.2));
}

/* ── RESULTS ──────────────────────────────────────────── */
.results-section { position: relative; }
.results-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 70%);
}
.diff-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 56px;
}
.diff-card {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 32px 24px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  cursor: default;
}
.diff-card:hover { border-color: var(--bdr2); box-shadow: var(--glow); transform: translateY(-3px); }
.diff-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accentd); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 18px;
}
.diff-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.diff-card p  { font-size: .85rem; line-height: 1.7; }
.integrations { text-align: center; }
.int-label { font-size: .82rem; color: var(--text3); margin-bottom: 18px; letter-spacing: .05em; }
.int-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.int-chip {
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid var(--bdr); font-size: .78rem;
  color: var(--text2); background: var(--accentd);
  transition: all .2s;
  cursor: default;
}
.int-chip:hover { color: var(--accent); border-color: var(--bdr2); }

/* ── ABOUT ────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.about-left h2 { margin-bottom: 20px; }
.about-lead {
  font-size: 1.05rem; color: var(--text);
  margin-bottom: 16px; line-height: 1.75;
}
.about-left p { margin-bottom: 14px; font-size: .925rem; }
.about-values {
  display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
}
.av {
  display: flex; align-items: center; gap: 12px;
  font-size: .875rem; color: var(--text2);
  padding: 10px 16px; border-radius: 8px;
  border: 1px solid var(--bdr);
  background: var(--accentd);
  transition: border-color .2s, color .2s;
  cursor: default;
}
.av:hover { border-color: var(--bdr2); color: var(--text); }
.av-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
}
.about-right { display: flex; flex-direction: column; gap: 20px; }
.about-card {
  background: var(--bg3); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color .25s ease;
  cursor: default;
}
.about-card:hover { border-color: var(--bdr2); }
.ac-gem {
  color: var(--accent); font-size: .65rem;
  margin-bottom: 12px;
}
.about-card h4 { color: var(--text); margin-bottom: 8px; }
.about-card p { font-size: .875rem; }
.about-stat {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.02));
  border: 1px solid var(--bdr2);
  border-radius: var(--r-lg); padding: 28px; text-align: center;
}
.about-flag { font-size: 2.8rem; margin-bottom: 12px; }
.about-stat p { font-size: .9rem; line-height: 1.7; color: var(--text2); }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; align-items: start;
}
.testi-grid--two {
  grid-template-columns: 1fr 1fr;
}
.testi-feat {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.02));
  border: 1px solid var(--bdr2);
  border-radius: var(--r-lg); padding: 40px;
  position: relative;
  cursor: default;
}
.testi-feat::before {
  content: '\201C';
  position: absolute; top: 16px; left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 1; color: var(--accent); opacity: .25;
}
.testi-card {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color .25s ease;
  cursor: default;
}
.testi-card:hover { border-color: var(--bdr2); }
.testi-col { display: flex; flex-direction: column; gap: 16px; }
.testi-stars { color: var(--accent); font-size: .85rem; margin-bottom: 14px; }
.testi-feat p, .testi-card p {
  font-size: .95rem; color: var(--text); line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testi-feat footer, .testi-card footer {
  display: flex; flex-direction: column; gap: 3px;
}
.testi-feat footer strong, .testi-card footer strong {
  font-size: .9rem; color: var(--text); font-weight: 500;
}
.testi-feat footer span, .testi-card footer span {
  font-size: .78rem; color: var(--text3);
}

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #06040A, #0A0800);
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  padding: 100px 0;
  text-align: center; overflow: hidden;
}
.cta-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 350px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(201,168,76,.10) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-inner .eyebrow { display: block; margin-bottom: 14px; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { margin-bottom: 36px; font-size: 1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 20px; }
.cta-note { font-size: .78rem; color: var(--text3); }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.contact-left h2 { margin-bottom: 16px; }
.contact-left p { margin-bottom: 28px; }
.cnt-info { display: flex; flex-direction: column; gap: 14px; }
.cnt-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .875rem; color: var(--text2);
}
.cnt-item svg { color: var(--accent); flex-shrink: 0; }
.cnt-item a { transition: color .2s; cursor: pointer; }
.cnt-item a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp { display: flex; flex-direction: column; gap: 6px; }
.form-grp label {
  font-size: .8rem; font-weight: 500; color: var(--text2);
  letter-spacing: .04em;
}
.form-grp input, .form-grp select, .form-grp textarea {
  background: var(--bg3); border: 1px solid var(--bdr);
  border-radius: 8px; padding: 12px 14px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  cursor: text;
}
.form-grp select { cursor: pointer; }
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-grp textarea { resize: vertical; min-height: 110px; }
::placeholder { color: var(--text3); }
.form-ok {
  display: none;
  align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 8px;
  background: rgba(40,200,64,.08); border: 1px solid rgba(40,200,64,.2);
  color: #5de87a; font-size: .875rem;
}
.form-ok.show {
  display: flex;
}
.form-ok svg { flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--bdr);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--bdr); margin-bottom: 28px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .875rem; color: var(--text2); transition: color .2s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .78rem; color: var(--text3);
}

/* ── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-float-card,
  .hero-badge-float { animation: none !important; }
  .scroll-line { animation: none !important; }
  .marquee-inner { animation: none !important; }
}

/* ── MOBILE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    top: 8px; left: 8px; right: 8px;
    border-radius: 12px;
  }
  .nav-links { display: none; }
  .nav-end .btn { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: rgba(3,3,10,.97); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 24px; gap: 24px; z-index: 800;
  }
  .nav-links.open a { font-size: 1.4rem; color: var(--text); }

  .hero-body {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
  }
  .hero-visual { display: none; }
  .hero-trust { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-featured { grid-column: 1; }
  .svc-feat-inner { grid-template-columns: 1fr; }
  .svc-mockup { display: none; }

  .port-grid { grid-template-columns: 1fr 1fr; }

  .proc-grid { grid-template-columns: 1fr; }
  .proc-connector { display: none; }

  .diff-grid { grid-template-columns: 1fr 1fr; }

  .testi-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .port-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 2.4rem; }
}
