@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Syne:wght@700;800&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --gold:       #FFB900;
  --gold-dark:  #E8A500;
  --gold-light: #FFF3CC;
  --gold-pale:  #FFFBEF;
  --ink:        #0F0F1A;
  --ink-80:     #2D2D3F;
  --ink-50:     #7A7A95;
  --ink-20:     #D5D5E2;
  --white:      #FFFFFF;
  --cream:      #F9F8F3;
  --bg-section: #F4F3EE;
  --success:    #22C55E;
  --font-head:  'Syne', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-card: 0 4px 24px rgba(15,15,26,0.07);
  --shadow-hover: 0 20px 60px rgba(15,15,26,0.14);
  --shadow-gold: 0 8px 32px rgba(255,185,0,0.25);
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
body:hover #cursor { opacity: 1; }
a:hover ~ #cursor, button:hover ~ #cursor { width: 20px; height: 20px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 6%;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(15,15,26,0.06);
  transition: all 0.4s ease;
}
nav.scrolled {
  height: 64px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(15,15,26,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo img { height: 34px; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--ink-80); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  transition: all 0.25s !important;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(255,185,0,0.35) !important;
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 6% 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80vh) scale(1.2); }
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(255,185,0,0.12);
  top: -100px; right: -100px;
  animation: blobPulse 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: rgba(255,185,0,0.07);
  bottom: 80px; left: 8%;
  animation: blobPulse 10s 2s ease-in-out infinite;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0,0); }
  33% { transform: scale(1.15) translate(20px, -15px); }
  66% { transform: scale(0.9) translate(-10px, 20px); }
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1.5px solid rgba(255,185,0,0.4);
  color: var(--ink-80); padding: 7px 18px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 2rem;
  animation: badgeIn 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,185,0,0.4)} 50%{box-shadow:0 0 0 6px rgba(255,185,0,0)} }
@keyframes badgeIn { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.hero-headline .line {
  display: block;
  animation: lineReveal 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-headline .line:nth-child(2) { animation-delay: 0.1s; }
.hero-headline .line:nth-child(3) { animation-delay: 0.2s; }
@keyframes lineReveal { from{opacity:0;transform:translateY(110%)} to{opacity:1;transform:translateY(0)} }
.hero-headline .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.15rem; color: var(--ink-50); max-width: 540px;
  line-height: 1.75; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--ink);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s; box-shadow: var(--shadow-gold);
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(255,185,0,0.38); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--ink-20); color: var(--ink-80);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-scroll-hint {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--ink-50); letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeUp 1s 1.2s ease both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0.5) translateY(-10px)} 50%{opacity:1;transform:scaleY(1) translateY(0)} }

/* ── HERO VISUAL (right side) ── */
.hero-visual {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: min(480px, 45vw);
  z-index: 1;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-visual-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--ink-20);
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), #FFD966);
}

/* ── STATS TICKER ── */
.stats-bar {
  background: var(--ink);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}
.stats-bar::before, .stats-bar::after {
  content: ''; position: absolute; top: 0; width: 100px; height: 100%;
  z-index: 2;
}
.stats-bar::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.stats-bar::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.stats-ticker {
  display: flex; gap: 4rem; align-items: center;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.stats-ticker-clone { animation: ticker 30s linear infinite; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: flex; align-items: center; gap: 1rem;
  white-space: nowrap;
}
.ticker-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.ticker-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }
.ticker-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.4; }

/* ── SECTIONS ── */
.section { padding: 100px 6%; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--ink); }
.section-gold { background: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

h2.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
}
.section-desc {
  font-size: 1.05rem; color: var(--ink-50); max-width: 520px;
  line-height: 1.8; margin-top: 1rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--ink-20);
  transition: all 0.4s cubic-bezier(0.34,1.4,0.64,1);
  position: relative; overflow: hidden;
  cursor: none;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-pale), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(255,185,0,0.2);
}
.service-card:hover::before { opacity: 1; }
.service-card-num {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em;
  color: var(--ink-20); position: absolute; top: 1.5rem; right: 1.5rem;
}

/* SERVICE ANIMATION WRAPPER */
.service-anim {
  width: 100%; height: 160px;
  margin-bottom: 1.5rem;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.service-title {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.92rem; color: var(--ink-50); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 100px;
  background: var(--gold-light); color: var(--ink-80);
  border: 1px solid rgba(255,185,0,0.3);
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700; color: var(--ink);
  text-decoration: none; transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 12px; color: var(--gold); }
.service-link svg { transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(4px); }

/* ── ANIMATION: MEDIA / WAVEFORM ── */
.anim-wave { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; gap: 3px; padding: 0 1.5rem; }
.wave-bar {
  flex: 1; max-width: 10px; border-radius: 4px;
  background: var(--gold);
  animation: waveAnim var(--dur, 0.8s) var(--d, 0s) ease-in-out infinite alternate;
}
@keyframes waveAnim { from{height:12px;opacity:0.3} to{height:var(--h,60px);opacity:1} }
.anim-scan {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(255,185,0,0.08) 50%, transparent 60%);
  animation: scanLine 3s linear infinite;
}
@keyframes scanLine { from{transform:translateY(-100%)} to{transform:translateY(100%)} }

/* ── ANIMATION: BIG DATA / NETWORK ── */
.anim-network { position: relative; width: 100%; height: 100%; }
.anim-network svg { width: 100%; height: 100%; }
.node-pulse {
  animation: nodePulse 2s ease-in-out infinite;
}
.node-pulse:nth-child(2n) { animation-delay: 0.4s; }
.node-pulse:nth-child(3n) { animation-delay: 0.8s; }
@keyframes nodePulse { 0%,100%{opacity:0.5;r:6} 50%{opacity:1;r:9} }
.data-flow {
  stroke-dasharray: 8 4;
  animation: flowAnim 2s linear infinite;
}
@keyframes flowAnim { to{stroke-dashoffset:-48} }

/* ── ANIMATION: VISUAL INSPECTION ── */
.anim-vision { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.vision-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; padding: 1rem; width: 100%; }
.vision-cell {
  border-radius: 6px; height: 24px;
  background: rgba(255,185,0,0.15);
  position: relative; overflow: hidden;
  animation: cellScan 3s var(--d, 0s) ease-in-out infinite;
}
@keyframes cellScan {
  0%,100%{background:rgba(255,185,0,0.1)}
  50%{background:rgba(255,185,0,0.5)}
}
.vision-box {
  position: absolute; border: 2px solid var(--gold);
  border-radius: 4px; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  animation: boxDetect 3s ease-in-out infinite;
}
@keyframes boxDetect {
  0%,100%{transform:translate(-50%,-50%) scale(0); opacity:0}
  30%,70%{transform:translate(-50%,-50%) scale(1); opacity:1}
}
.vision-label {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: 8px; font-weight: 700; padding: 2px 6px; border-radius: 3px;
  white-space: nowrap; animation: boxDetect 3s ease-in-out infinite;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--r-xl); overflow: visible;
}
.about-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 2rem; box-shadow: var(--shadow-hover);
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), #FFD966);
}
.floating-badge {
  position: absolute; background: var(--gold); border-radius: var(--r-md);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-gold);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.floating-badge-1 { top: -20px; right: -20px; }
.floating-badge-2 { bottom: -20px; left: -20px; animation-delay: 2s; }
.floating-num {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
  color: var(--ink); line-height: 1;
}
.floating-label { font-size: 0.72rem; font-weight: 600; color: rgba(15,15,26,0.7); }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem; position: relative;
  padding-bottom: 2rem;
}
.tl-item:not(:last-child)::before {
  content: ''; position: absolute;
  left: 40px; top: 28px; bottom: 0;
  width: 1px; background: var(--ink-20);
}
.tl-year {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 800;
  color: var(--gold); text-align: right; padding-top: 2px;
  position: relative;
}
.tl-year::after {
  content: ''; position: absolute; right: -16px; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.tl-text { font-size: 0.92rem; color: var(--ink-80); line-height: 1.6; }
.tl-text strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 2px; }

/* ── AWARDS ── */
.awards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1rem;
  margin-top: 3rem;
}
.award-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--ink-20);
  transition: all 0.3s ease;
  cursor: none;
}
.award-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.award-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.award-title { font-family: var(--font-head); font-size: 1rem; font-weight: 800; margin-bottom: 0.25rem; }
.award-sub { font-size: 0.8rem; color: var(--ink-50); }

/* ── MARQUEE MEDIA ── */
.marquee-wrap { overflow: hidden; position: relative; padding: 2rem 0; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }
.marquee-track {
  display: flex; gap: 2rem; width: max-content;
  animation: marquee 25s linear infinite;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.media-pill {
  background: var(--white); border: 1.5px solid var(--ink-20);
  border-radius: 100px; padding: 0.75rem 1.5rem;
  font-size: 0.88rem; font-weight: 600; color: var(--ink-80);
  white-space: nowrap; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.media-pill:hover { border-color: var(--gold); color: var(--ink); }
.media-pill .mpd { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ── PRODUCT DETAIL (services page) ── */
.product-section { padding: 100px 6%; }
.product-section:nth-child(even) { background: var(--cream); }
.product-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.product-wrap.flip { direction: rtl; }
.product-wrap.flip > * { direction: ltr; }

.product-num { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.75rem; }
.product-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.product-desc { font-size: 1rem; color: var(--ink-50); line-height: 1.8; margin-bottom: 1.75rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--ink-80); line-height: 1.6;
}
.feature-list li::before {
  content: ''; width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%; background: var(--gold-light);
  border: 2px solid rgba(255,185,0,0.4);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23FFB900' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  margin-top: 2px; flex-shrink: 0;
}

/* ── PRODUCT VISUAL CARD ── */
.product-visual { position: relative; }
.p-visual-card {
  background: var(--white);
  border-radius: var(--r-xl); padding: 2rem;
  box-shadow: var(--shadow-hover);
  border: 1.5px solid var(--ink-20);
  position: relative; overflow: hidden;
}
.p-visual-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), #FFD966);
}
.p-card-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 1.5rem;
}
.p-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.p-card-dot:nth-child(1) { background: #ff5f57; }
.p-card-dot:nth-child(2) { background: #ffbd2e; }
.p-card-dot:nth-child(3) { background: var(--success); }
.p-card-title { font-size: 0.75rem; color: var(--ink-50); margin-left: auto; }

.metric-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.metric-box {
  background: var(--gold-pale); border-radius: var(--r-md);
  border: 1px solid rgba(255,185,0,0.25);
  padding: 1rem; text-align: center;
}
.metric-val { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--ink); }
.metric-lbl { font-size: 0.7rem; color: var(--ink-50); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }

.progress-list { display: flex; flex-direction: column; gap: 1rem; }
.progress-item {}
.progress-top { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.progress-top span:last-child { color: var(--gold); }
.progress-bar { height: 6px; background: var(--ink-20); border-radius: 3px; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), #FFD966);
  animation: fillBar 1.8s cubic-bezier(0.22,1,0.36,1) both;
  animation-play-state: paused;
}
@keyframes fillBar { from{width:0} }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--ink);
  padding: 120px 6%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,185,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--white);
  max-width: 700px; margin: 0 auto 1.25rem; line-height: 1.05;
}
.cta-section h2 span { color: var(--gold); }
.cta-section p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 6% 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  font-size: 0.9rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.social-row { display: flex; gap: 1rem; }
.social-row a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.social-row a:hover { color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 6% 80px;
  background: var(--cream); position: relative; overflow: hidden;
}
.page-hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,185,0,0.2) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  max-width: 700px; margin-bottom: 1.25rem;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1.1rem; color: var(--ink-50); max-width: 560px; line-height: 1.75; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem;
  max-width: 1000px; margin: 0 auto;
}
.contact-info-box {
  background: var(--gold-pale); border-radius: var(--r-xl);
  padding: 2.5rem; border: 1.5px solid rgba(255,185,0,0.25);
}
.contact-info-box h3 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; }
.contact-info-box p { font-size: 0.95rem; color: var(--ink-50); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; font-size: 0.9rem; color: var(--ink-80); }
.contact-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.form-wrap { background: var(--white); border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--shadow-card); border: 1.5px solid var(--ink-20); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-80); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--cream); border: 1.5px solid var(--ink-20);
  border-radius: var(--r-sm); padding: 0.75rem 1rem;
  color: var(--ink); font-family: var(--font-body); font-size: 0.93rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255,185,0,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--white); }

/* ── PARTNERS / MARKETS ── */
.partners-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.partner-tile {
  background: var(--white); border: 1.5px solid var(--ink-20); border-radius: var(--r-lg);
  padding: 1.75rem 1rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  transition: all 0.3s ease; cursor: none;
}
.partner-tile:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.partner-tile .pt-icon { font-size: 2rem; }
.partner-tile span { font-size: 0.85rem; font-weight: 600; color: var(--ink-80); }

/* ── SCROLL REVEALS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.stagger-1 { transition-delay: 0.1s; }
.reveal.stagger-2 { transition-delay: 0.2s; }
.reveal.stagger-3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ABOUT CAREER SECTION ── */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--white); border-radius: var(--r-xl); padding: 2rem;
  border: 1.5px solid var(--ink-20); transition: all 0.3s;
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
.value-desc { font-size: 0.9rem; color: var(--ink-50); line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .product-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-wrap.flip { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white); padding: 2rem 6%;
    border-bottom: 1px solid var(--ink-20); gap: 1.25rem;
    box-shadow: var(--shadow-hover);
  }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.8rem; }
}
