/* ================================================================
   UPLINK DIGITAL — Production Website Styles
   uplinkdigital.net · © 2026 Uplink Digital
   ================================================================ */

/* ─── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:           #EAF2FA;
  --bg-white:     #FFFFFF;
  --bg-blue:      #DFF0FB;
  --bg-soft:      #EEF2F5;
  --bg-dark:      #070A0D;
  --bg-panel:     #0F151A;
  --bg-dark-mid:  #111820;
  --text:         #071014;
  --text-2:       #47515C;
  --text-muted:   #6B7280;
  --text-inv:     #FFFFFF;
  --cyan:         #00E9FF;
  --cyan-mid:     #4CF3FF;
  --cyan-deep:    #00B8CC;
  --cyan-glow:    rgba(0,233,255,0.22);
  --border:       rgba(7,16,20,0.10);
  --border-med:   rgba(7,16,20,0.16);
  --border-dark:  rgba(255,255,255,0.10);
  --border-cyan:  rgba(0,233,255,0.30);
  --shadow-sm:    0 1px 3px rgba(7,16,20,0.06);
  --shadow-md:    0 4px 12px rgba(7,16,20,0.08);
  --shadow-lg:    0 8px 32px rgba(7,16,20,0.10);
  --shadow-xl:    0 20px 60px rgba(7,16,20,0.12);
  --font:         'Plus Jakarta Sans', system-ui, sans-serif;
  --mono:         'JetBrains Mono', 'Fira Code', monospace;
  --r-sm:         6px;
  --r-md:         10px;
  --r-lg:         16px;
  --r-xl:         20px;
  --r-pill:       9999px;
  --ease:         cubic-bezier(0.16,1,0.3,1);
}

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

/* ─── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 clamp(20px,5vw,64px); }
.section { padding: clamp(3rem,5vw,5rem) 0; }
.section--white { background: var(--bg-white); }
.section--dark  { background: var(--bg-dark); color: var(--text-inv); position: relative; }
.section--dark::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,233,255,0.4), transparent);
}

/* ─── Section Header ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
  flex-shrink: 0;
}
.section--dark .eyebrow { color: var(--cyan); }
.section--dark .eyebrow-dot { box-shadow: 0 0 10px rgba(0,233,255,0.8); }

.section-title {
  font-size: clamp(2rem,4vw + 0.5rem,3.75rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--text);
  margin-bottom: 20px; text-wrap: balance;
}
.section--dark .section-title { color: var(--text-inv); }
.section-title .accent, .section-title span.accent { color: var(--cyan); }

.section-body {
  font-size: 1.0625rem; color: var(--text-2);
  line-height: 1.7;
  text-wrap: pretty;
}
.section--dark .section-body { color: rgba(255,255,255,0.60); }
.section-header { margin-bottom: clamp(1.75rem,3vw,2.75rem); }
.section-header--center { text-align: center; }
.section-header--center .section-body { margin: 0 auto; max-width: 660px; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 0.9375rem; font-weight: 600;
  border-radius: var(--r-pill); padding: 13px 28px;
  border: none; cursor: pointer;
  transition: all 250ms var(--ease);
  white-space: nowrap; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--cyan); color: var(--text); }
.btn-primary:hover {
  background: var(--cyan-mid);
  box-shadow: 0 6px 36px rgba(0,233,255,0.54), 0 0 0 1px rgba(0,233,255,0.20);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-med);
}
.btn-secondary:hover {
  border-color: rgba(7,16,20,0.28);
  background: var(--bg-soft);
  transform: translateY(-1px);
}
.btn-white {
  background: rgba(255,255,255,0.10); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.badge-cyan { background: rgba(0,233,255,0.12); color: #007C8C; border: 1px solid rgba(0,233,255,0.25); }
.badge-slate { background: rgba(7,16,20,0.06); color: var(--text-2); border: 1px solid var(--border); }
.badge-muted { background: rgba(7,16,20,0.04); color: var(--text-muted); border: 1px solid var(--border); }
.badge-coming { background: rgba(107,114,128,0.10); color: var(--text-muted); border: 1px solid rgba(107,114,128,0.20); }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px,5vw,64px);
  background: rgba(246,248,252,0.82);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(0,233,255,0.13);
  transition: background 350ms var(--ease), box-shadow 350ms var(--ease);
}
.navbar.scrolled {
  background: rgba(246,248,252,0.96);
  box-shadow: 0 2px 20px rgba(7,16,20,0.06), 0 1px 0 rgba(0,233,255,0.10);
}
.navbar-logo img { width: 210px; height: auto; }
.navbar-nav { display: flex; align-items: center; gap: 32px; }
.navbar-links { display: flex; align-items: center; gap: 28px; }
.navbar-link {
  font-size: 0.9375rem; font-weight: 500; color: var(--text-2);
  transition: color 200ms; position: relative;
}
.navbar-link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform 250ms var(--ease);
}
.navbar-link:hover { color: var(--text); }
.navbar-link:hover::after, .navbar-link.active::after { transform: scaleX(1); }
.navbar-link.active { color: var(--text); font-weight: 600; }

.navbar-cta {
  font-size: 0.875rem; font-weight: 600;
  color: var(--text); background: var(--cyan);
  border: none; border-radius: var(--r-pill);
  padding: 10px 22px; cursor: pointer;
  transition: all 250ms var(--ease);
}
.navbar-cta:hover {
  background: var(--cyan-mid);
  box-shadow: 0 4px 16px rgba(0,233,255,0.32);
  transform: translateY(-1px);
}

/* ─── Hamburger ──────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 300ms var(--ease); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Nav ─────────────────────────────────────────────── */
.mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(7,10,13,0.52);
  backdrop-filter: blur(4px);
  z-index: 800;
  opacity: 0; visibility: hidden;
  transition: all 350ms var(--ease);
}
.mobile-backdrop.open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed; top: 0; right: 0;
  width: min(340px,88vw); height: 100%;
  background: var(--bg-white); z-index: 850;
  padding: 90px 32px 48px;
  transform: translateX(100%);
  transition: transform 420ms var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(7,16,20,0.12);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.mobile-nav-link {
  font-size: 1.1875rem; font-weight: 600; color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 200ms, padding-left 250ms var(--ease);
}
.mobile-nav-link:hover { color: var(--cyan-deep); padding-left: 6px; }
.mobile-nav-link svg { width: 16px; height: 16px; color: var(--text-muted); }
.mobile-nav-cta { margin-top: 32px; width: 100%; justify-content: center; font-size: 1rem; padding: 15px 32px; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--bg);
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: visible;
  padding-top: 76px;
}
.hero::before {
  content: '';
  position: absolute; right: 0; top: -5%;
  width: 55%; height: 90%;
  background: radial-gradient(ellipse at 70% 40%, rgba(0,233,255,0.055) 0%, transparent 65%);
  pointer-events: none; animation: subtle-glow 10s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
  padding: clamp(3rem,6vw,5rem) 0 clamp(3rem,5vw,4.5rem);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,233,255,0.07);
  border: 1px solid rgba(0,233,255,0.22);
  border-radius: var(--r-pill);
  padding: 6px 14px 6px 8px; margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,233,255,0.7);
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.hero-eyebrow-text {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--text);
  white-space: nowrap;
}

.hero-heading {
  font-size: clamp(2.125rem,4.5vw + 0.5rem,4.25rem);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -0.035em; color: var(--text);
  margin-bottom: 22px; text-wrap: balance;
}
.hero-heading .accent { color: var(--cyan); }

.hero-sub {
  font-size: clamp(1rem,1.2vw + 0.4rem,1.125rem);
  color: var(--text-2); line-height: 1.72;
  margin-bottom: 26px; max-width: 660px;
}

/* ─── Launch Pipeline ────────────────────────────────────────── */
.launch-pipeline {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 4px; margin-bottom: 32px;
}
.pipeline-step {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted);
  transition: color 350ms;
  padding: 2px 0;
}
.pipeline-step.active { color: var(--text); }
.pipeline-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #D1D5DB; flex-shrink: 0;
  transition: background 350ms, box-shadow 350ms;
}
.pipeline-step.active .pipeline-dot {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,233,255,0.65);
}
.pipeline-sep { color: #CBD5E1; font-size: 0.875rem; user-select: none; line-height: 1; }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Hero Visual ────────────────────────────────────────────── */
.hero-visual { position: relative; }

.hero-image-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border), 0 0 80px rgba(0,233,255,0.06);
  transition: transform 700ms var(--ease);
  will-change: transform;
}
.hero-image-frame img {
  width: 100%; display: block;
  aspect-ratio: 4/3; object-fit: cover;
  transition: transform 700ms var(--ease);
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(7,16,20,0.13);
  pointer-events: none;
  z-index: 10;
}
.hero-float-1 {
  bottom: -16px; left: -24px;
  animation: float1 7s ease-in-out infinite;
}
.hero-float-2 {
  top: 24px; right: -20px;
  animation: float2 8s ease-in-out infinite;
  animation-delay: -3.5s;
}
.float-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.float-value { font-size: 0.8125rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 6px; }
.float-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px rgba(0,233,255,0.6); flex-shrink: 0; }

/* ─── Credibility Strip ──────────────────────────────────────── */
.credibility-strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden;
}
.credibility-inner {
  display: flex; align-items: center;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  padding: 0 clamp(20px,5vw,64px);
}
.credibility-inner::-webkit-scrollbar { display: none; }
.credibility-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 clamp(20px,3vw,36px);
  flex-shrink: 0;
  font-size: 0.875rem; font-weight: 600; color: var(--text-2);
  border-right: 1px solid var(--border); white-space: nowrap;
}
.credibility-item:last-child { border-right: none; }
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ─── Problem Section ────────────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.problem-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease), border-color 350ms;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,233,255,0.22); }
.problem-num { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.problem-card-title { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.015em; }
.problem-card-desc { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; }

/* ─── Services Layout ────────────────────────────────────────── */
.services-split { display: grid; grid-template-columns: 280px 1fr; gap: clamp(32px,5vw,64px); align-items: start; }
.services-image-sticky {
  position: sticky; top: 96px;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.services-image-sticky img { width: 100%; object-fit: cover; aspect-ratio: 2/3; display: block; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }

/* ─── Service Card ───────────────────────────────────────────── */
.service-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px;
  display: flex; flex-direction: column;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease), border-color 350ms;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(7,16,20,0.13), 0 0 0 1px rgba(0,233,255,0.18); border-color: rgba(0,233,255,0.28); }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.service-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(0,233,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: #007C8C; flex-shrink: 0;
}
.service-icon svg { width: 20px; height: 20px; }
.service-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.015em; }
.service-card-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.service-card-foot {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.service-foot-text { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.service-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); flex-shrink: 0;
  transition: all 250ms var(--ease);
}
.service-card:hover .service-arrow { background: var(--cyan); border-color: var(--cyan); color: var(--text); transform: translate(2px,-2px); }

/* ─── Industry Chips ─────────────────────────────────────────── */
.industry-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.chip {
  display: inline-flex; align-items: center;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: var(--bg-white); border: 1px solid var(--border);
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  transition: all 250ms var(--ease); cursor: default;
}
.chip:hover {
  background: rgba(0,233,255,0.07); border-color: rgba(0,233,255,0.28);
  color: var(--text); transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,233,255,0.10);
}

/* ─── Checklist ──────────────────────────────────────────────── */
.checklist-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.checklist-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.checklist-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.check-circle {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,233,255,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-circle svg { width: 14px; height: 14px; color: #007C8C; }
.check-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.check-desc { font-size: 0.8125rem; color: var(--text-2); line-height: 1.55; }

/* ─── Portfolio (Dark) ───────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }

/* ─── Portfolio Card (Browser Frame) ────────────────────────── */
.p-card {
  background: var(--bg-panel); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
  will-change: transform;
}
.p-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.42), 0 0 0 1px rgba(0,233,255,0.14); }

.browser-chrome {
  background: #1A1F2A; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.bd-r { background: #FF5F57; } .bd-y { background: #FFBD2E; } .bd-g { background: #28CA41; }
.browser-url {
  flex: 1; background: rgba(255,255,255,0.07);
  border-radius: 5px; padding: 4px 10px;
  font-size: 0.625rem; color: rgba(255,255,255,0.38);
  font-family: var(--mono); overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}

.p-screenshot { position: relative; overflow: hidden; }
.p-screenshot img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.p-card:hover .p-screenshot img { transform: scale(1.04); }
.p-overlay {
  position: absolute; inset: 0;
  background: rgba(7,10,13,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 300ms;
}
.p-card:hover .p-overlay { opacity: 1; }

.p-info { padding: 18px 22px 4px; }
.p-category { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--cyan); margin-bottom: 7px; }
.p-title { font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.p-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.48); line-height: 1.6; }
.p-footer { padding: 14px 22px 20px; }
.p-footer a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; color: var(--cyan);
  transition: gap 200ms, opacity 200ms;
}
.p-footer a:hover { gap: 10px; }

/* ─── Coming Soon Card ───────────────────────────────────────── */
.p-card-soon {
  background: var(--bg-panel); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
  opacity: 0.5;
}
.soon-visual {
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.soon-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.2);
}
.soon-placeholder svg { width: 28px; height: 28px; }
.soon-placeholder span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; }

/* ─── Founder Section ────────────────────────────────────────── */
.founder-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px,6vw,80px); align-items: center; }
.founder-image-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.founder-image-wrap img { width: 100%; object-fit: cover; aspect-ratio: 3/4; display: block; }
.founder-content .section-body { margin-bottom: 24px; }
.founder-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.founder-role { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }

/* ─── Process Timeline (Home) ────────────────────────────────── */
.process-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; position: relative; }
.process-row::before {
  content: ''; position: absolute;
  top: 20px; left: calc(12.5% - 1px); right: calc(12.5% - 1px);
  height: 2px; background: var(--border); z-index: 0;
}
.process-row::after {
  content: ''; position: absolute;
  top: 20px; left: calc(12.5% - 1px);
  width: 0; height: 2px; background: var(--cyan);
  transition: width 1.5s var(--ease); z-index: 1;
}
.process-row.in-view::after { width: calc(75% + 2px); }

.proc-step { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; opacity: 0.35; transition: opacity 400ms var(--ease); }
.proc-step.active { opacity: 1; }
.proc-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 800; color: var(--text-muted);
  transition: all 400ms var(--ease); position: relative; z-index: 2;
}
.proc-step.active .proc-num {
  background: var(--cyan); border-color: var(--cyan);
  color: var(--text); box-shadow: 0 0 16px rgba(0,233,255,0.4);
}
.proc-title { font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.proc-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* ─── Process Vertical (Process Page) ───────────────────────── */
.process-v { max-width: 720px; margin: 0 auto; }
.process-v-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding-bottom: 52px; position: relative; opacity: 0;
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
  transform: translateX(-12px);
}
.process-v-item.active { opacity: 1; transform: translateX(0); }
.process-v-item:not(:last-child)::before {
  content: ''; position: absolute;
  left: 29px; top: 60px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0,233,255,0.5), rgba(0,233,255,0.05));
}
.pv-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 800; color: var(--text-muted);
  flex-shrink: 0; transition: all 400ms var(--ease); z-index: 1;
}
.process-v-item.active .pv-num {
  background: var(--cyan); border-color: var(--cyan);
  color: var(--text); box-shadow: 0 0 20px rgba(0,233,255,0.38);
}
.pv-body { padding-top: 10px; }
.pv-title { font-size: 1.375rem; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -0.025em; }
.pv-desc { font-size: 1rem; color: var(--text-2); line-height: 1.72; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  font-family: inherit; font-size: 1.0625rem; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left; transition: color 200ms;
}
.faq-q:hover { color: var(--text); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 300ms var(--ease); color: var(--text-muted);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 300ms var(--ease); stroke-width: 2.5; }
.faq-item.open .faq-icon { background: var(--cyan); border-color: var(--cyan); color: var(--text); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease); }
.faq-a-inner { padding-bottom: 24px; }
.faq-a-inner p { font-size: 1rem; color: var(--text-2); line-height: 1.75; }

/* ─── CTA Dark Section ───────────────────────────────────────── */
.cta-block {
  background: var(--bg-dark); text-align: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 50%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,233,255,0.45), transparent);
}
.cta-block::after {
  content: ''; position: absolute;
  bottom: -20%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 70%;
  background: radial-gradient(ellipse, rgba(0,233,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-block .section-title { color: #fff; max-width: 700px; margin: 0 auto 20px; }
.cta-block .section-body { color: rgba(255,255,255,0.58); margin: 0 auto 36px; }
.cta-block .eyebrow { color: rgba(255,255,255,0.65); }
.cta-block .eyebrow .eyebrow-dot { box-shadow: 0 0 10px rgba(0,233,255,0.8); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { background: #071014; padding: clamp(3rem,6vw,5rem) 0 2.25rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(32px,5vw,64px); margin-bottom: clamp(3rem,5vw,4rem); }
.footer-logo { width: 190px; height: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 260px; margin-bottom: 20px; }
.footer-email-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9375rem; font-weight: 600; color: rgba(255,255,255,0.70);
  transition: color 200ms;
}
.footer-email-link:hover { color: var(--cyan); }
.footer-col-head { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.9375rem; color: rgba(255,255,255,0.52); transition: color 200ms; }
.footer-link:hover { color: var(--cyan); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.30); }
.footer-domain { font-size: 0.8125rem; color: rgba(255,255,255,0.28); font-family: var(--mono); }

/* ─── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(7,10,13,0.80);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 350ms var(--ease), visibility 350ms;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--bg-white); border-radius: 20px;
  width: 100%; max-width: 560px;
  max-height: calc(100dvh - 40px); overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 420ms var(--ease);
  box-shadow: 0 24px 80px rgba(7,16,20,0.22), 0 0 0 1px var(--border);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border); position: sticky; top: 0;
  background: var(--bg-white); z-index: 1; border-radius: 20px 20px 0 0;
}
.modal-logo { width: 130px; height: auto; }
.modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-2);
  transition: all 200ms var(--ease);
}
.modal-close:hover { background: var(--bg); color: var(--text); }
.modal-close svg { width: 16px; height: 16px; }
.modal-body { padding: 0; }

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  padding: calc(76px + clamp(3rem,6vw,5rem)) 0 clamp(3rem,5vw,4rem);
  background: var(--bg); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  right: -5%; top: 30%; width: 40%; height: 65%;
  background: radial-gradient(ellipse, rgba(0,233,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(2rem,4vw + 0.5rem,3.75rem);
  font-weight: 800; line-height: 1.07;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 20px; text-wrap: balance; max-width: 920px;
}
.page-hero-title .accent { color: var(--cyan); }
.page-hero-body { font-size: 1.0625rem; color: var(--text-2); line-height: 1.72; max-width: 760px; }

/* ─── Inner Page Image Feature ───────────────────────────────── */
.feature-image { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.feature-image img { width: 100%; object-fit: cover; display: block; }

/* ─── Values (About Page) ────────────────────────────────────── */
.values-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.value-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; background: var(--bg-white);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: transform 300ms var(--ease), border-color 300ms;
}
.value-row:hover { transform: translateX(5px); border-color: rgba(0,233,255,0.20); }
.value-dot-lg { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.value-text { font-size: 0.9375rem; font-weight: 600; color: var(--text); }

/* ─── Service Detail (Services Page) ────────────────────────── */
.service-detail {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(28px,4vw,48px);
  transition: box-shadow 350ms var(--ease);
}
.service-detail:hover { box-shadow: var(--shadow-lg); }
.sd-head { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.sd-title { font-size: 1.5rem; font-weight: 800; color: var(--text); letter-spacing: -0.025em; }
.sd-desc { font-size: 1rem; color: var(--text-2); line-height: 1.72; margin-bottom: 24px; }
.sd-bullets { display: flex; flex-direction: column; gap: 10px; }
.sd-bullet { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: var(--text-2); }
.sd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.contact-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(28px,4vw,44px); }
.contact-card-title { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em; }
.contact-card-body { font-size: 0.9375rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.contact-email { display: inline-flex; align-items: center; gap: 8px; font-size: 1.0625rem; font-weight: 700; color: var(--text); transition: color 200ms; }
.contact-email:hover { color: var(--cyan-deep); }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.service-list-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; color: var(--text-2);
  padding: 12px 16px; background: var(--bg);
  border-radius: var(--r-md); transition: background 200ms;
}
.service-list-row:hover { background: var(--bg-soft); }
.sl-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 580ms var(--ease), transform 580ms var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 80ms; } .d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; } .d4 { transition-delay: 320ms; }
.d5 { transition-delay: 400ms; } .d6 { transition-delay: 480ms; }

/* ─── Keyframes ──────────────────────────────────────────────── */
@keyframes float1 {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(0.5deg); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%      { transform: translateY(-9px) rotate(-0.5deg); }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 6px rgba(0,233,255,0.5); }
  50%      { box-shadow: 0 0 14px rgba(0,233,255,0.9), 0 0 24px rgba(0,233,255,0.4); }
}
@keyframes subtle-glow {
  0%,100% { opacity: 0.6; } 50% { opacity: 1; }
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-split { grid-template-columns: 1fr; }
  .services-image-sticky { position: static; max-width: 560px; margin: 0 auto; }
  .services-image-sticky img { aspect-ratio: 16/9; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 3rem; }
  .hero-visual { max-width: 600px; margin: 0 auto; width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-float-1, .hero-float-2 { display: none; }
  .process-row { grid-template-columns: repeat(2,1fr); }
  .process-row::before, .process-row::after { display: none; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-image-wrap img { aspect-ratio: 3/2; }
  .checklist-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .problem-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 520px) {
  .navbar-logo img { width: 155px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { justify-content: center; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .credibility-item { padding: 0 16px; }
}

/* ═══════════════════════════════════════════════════════════
   UPLINK V2 ADDITIONS
   ═══════════════════════════════════════════════════════════ */

/* ─── Page Hero Split Layout ────────────────────────────────── */
.page-hero-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}
.page-hero-image { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.page-hero-image img { width: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

/* ─── Nav Dropdown ───────────────────────────────────────────── */
.navbar-dd-wrap { position: relative; display: flex; align-items: center; }
.navbar-link--dd { display: flex; align-items: center; gap: 4px; }
.dd-chevron { transition: transform 250ms var(--ease); flex-shrink: 0; }
.navbar-dd-wrap:hover .dd-chevron { transform: rotate(180deg); }
.navbar-dd {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  min-width: 310px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,233,255,0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
  z-index: 1000;
  padding: 6px;
}
.navbar-dd-wrap:hover .navbar-dd,
.navbar-dd-wrap:focus-within .navbar-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 200ms;
}
.nd-item:hover { background: var(--bg); }
.nd-item--retainer { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 14px; }
.nd-name { font-size: 0.875rem; font-weight: 600; color: var(--text); line-height: 1.3; flex: 1; }
.nd-pill {
  font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 8px;
  border-radius: var(--r-pill); white-space: nowrap; flex-shrink: 0;
}
.nd-popular  { background: rgba(0,233,255,0.12); color: #007C8C; border: 1px solid rgba(0,233,255,0.22); }
.nd-included { background: rgba(16,185,129,0.10); color: #059669; border: 1px solid rgba(16,185,129,0.22); }
.nd-retainer { background: rgba(107,114,128,0.10); color: var(--text-muted); border: 1px solid rgba(107,114,128,0.20); }

/* ─── Mobile Services Sub ────────────────────────────────────── */
.mobile-services-sub {
  background: var(--bg-white);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 0 0 4px;
  border: 1px solid var(--border);
}
.mobile-sub-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 16px; font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  border-bottom: 1px solid var(--border); transition: color 200ms, background 200ms;
  text-decoration: none;
}
.mobile-sub-link:last-child { border-bottom: none; }
.mobile-sub-link:hover { color: var(--text); background: var(--bg); }

/* ─── Marquee Ticker ─────────────────────────────────────────── */
.credibility-strip { overflow: hidden; }
.credibility-ticker {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.credibility-ticker:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Badges (new variants) ──────────────────────────────────── */
.badge-retainer { background: rgba(99,102,241,0.10); color: #4F46E5; border: 1px solid rgba(99,102,241,0.22); }
.badge-included { background: rgba(16,185,129,0.10); color: #059669; border: 1px solid rgba(16,185,129,0.22); }

/* ─── Interactive Process Tabs (Homepage) ────────────────────── */
.proc-tabs {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}
.proc-tab-list { display: flex; flex-direction: column; gap: 4px; }
.proc-tab-btn {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 16px; border-radius: var(--r-lg);
  cursor: pointer; background: transparent;
  border: 1.5px solid transparent;
  text-align: left; font-family: inherit;
  transition: all 250ms var(--ease);
  position: relative; overflow: hidden;
}
.proc-tab-btn:hover { background: var(--bg-white); border-color: var(--border); }
.proc-tab-btn.active {
  background: var(--bg-white); border-color: rgba(0,233,255,0.28);
  box-shadow: var(--shadow-md);
}
.proc-tab-num-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 800; color: var(--text-muted);
  flex-shrink: 0; transition: all 250ms var(--ease);
}
.proc-tab-btn.active .proc-tab-num-circle {
  background: var(--cyan); border-color: var(--cyan);
  color: var(--text); box-shadow: 0 0 14px rgba(0,233,255,0.4);
}
.proc-tab-info { padding-top: 2px; flex: 1; }
.proc-tab-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.proc-tab-desc {
  font-size: 0.8125rem; color: var(--text-2); line-height: 1.55;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 300ms var(--ease), opacity 300ms var(--ease);
}
.proc-tab-btn.active .proc-tab-desc { max-height: 100px; opacity: 1; }
.proc-tab-bar {
  position: absolute; left: 0; top: 0;
  width: 3px; height: 0%;
  background: var(--cyan); border-radius: 0 3px 3px 0;
}
.proc-tab-btn.active .proc-tab-bar {
  animation: tab-bar-grow 4.5s linear forwards;
}
@keyframes tab-bar-grow { from { height: 0%; } to { height: 100%; } }

.proc-panels { position: relative; min-height: 340px; }
.proc-panel-item {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(28px,4vw,40px);
  box-shadow: var(--shadow-xl); min-height: 320px;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px) scale(0.99);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}
.proc-panel-item.active { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.proc-panel-big-num {
  font-size: clamp(4rem,8vw,6rem); font-weight: 900; line-height: 1;
  letter-spacing: -0.04em; color: rgba(0,233,255,0.09);
  margin-bottom: 12px; user-select: none;
}
.proc-panel-title {
  font-size: clamp(1.375rem,2.5vw,1.75rem); font-weight: 800;
  color: var(--text); margin-bottom: 12px; letter-spacing: -0.025em;
}
.proc-panel-desc { font-size: 1rem; color: var(--text-2); line-height: 1.72; margin-bottom: 20px; }
.proc-panel-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.proc-panel-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(0,233,255,0.07); border: 1px solid rgba(0,233,255,0.18);
  font-size: 0.75rem; font-weight: 600; color: #007C8C; white-space: nowrap;
}

/* ─── Flip Cards (About: Values) ─────────────────────────────── */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 16px; margin-top: 36px;
}
.flip-card { height: 160px; perspective: 1200px; cursor: default; }
.flip-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 550ms cubic-bezier(0.34,1.2,0.64,1);
}
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--r-lg); padding: 20px 22px;
  display: flex; flex-direction: column; justify-content: center;
}
.flip-front { background: var(--bg-white); border: 1px solid var(--border); }
.flip-back { background: var(--bg-dark); border: 1px solid rgba(0,233,255,0.15); transform: rotateY(180deg); }
.flip-num { font-size: 0.625rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.flip-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.flip-back-body { font-size: 0.8125rem; color: rgba(255,255,255,0.78); line-height: 1.65; }

/* ─── Enhanced Process Page Timeline ────────────────────────── */
.pv-step-tag {
  font-size: 0.625rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 8px;
}
.pv-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pv-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--bg); border: 1px solid var(--border);
  font-size: 0.8125rem; font-weight: 500; color: var(--text-2);
  transition: border-color 300ms, background 300ms, color 300ms;
}
.process-v-item.active .pv-chip {
  background: rgba(0,233,255,0.07);
  border-color: rgba(0,233,255,0.22);
  color: #007C8C;
}

/* ─── Service Detail Image ───────────────────────────────────── */
.sd-with-image {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start; margin-top: 24px;
}
.sd-image-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.sd-image-wrap img { width: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

/* ─── Responsive V2 ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .proc-tabs { grid-template-columns: 1fr; }
  .proc-panels { display: none; }
  .proc-tab-btn.active .proc-tab-desc { max-height: 200px; }
  .page-hero-with-image { grid-template-columns: 1fr; }
  .page-hero-image { max-width: 560px; }
  .sd-with-image { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .flip-grid { grid-template-columns: repeat(2,1fr); }
  .flip-card { height: 140px; }
}
@media (max-width: 520px) {
  .flip-grid { grid-template-columns: 1fr; }
}

/* ─── Accent Shimmer ────────────────────────────────────────── */
.hero-heading .accent,
.page-hero-title .accent,
.section-title .accent {
  background: linear-gradient(90deg, #00E9FF 0%, #B5FAFF 38%, #00E9FF 76%, #B5FAFF 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accent-shimmer 6s linear infinite;
}
@keyframes accent-shimmer {
  from { background-position: 0% center; }
  to   { background-position: 220% center; }
}

/* ─── Values V2 (About Page) ─────────────────────────────────── */
.values-v2-list {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.vv2-item {
  display: grid;
  grid-template-columns: 68px 1fr 48px;
  align-items: center;
  gap: clamp(16px,3vw,36px);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  cursor: default;
  transition: transform 300ms var(--ease), border-color 300ms;
}
.vv2-item:hover {
  transform: translateX(10px);
  border-bottom-color: rgba(0,233,255,0.22);
}
.vv2-num {
  font-size: 1.875rem; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
  color: rgba(0,233,255,0.22);
  transition: color 300ms var(--ease);
  user-select: none;
}
.vv2-item:hover .vv2-num { color: rgba(0,233,255,0.60); }
.vv2-body { min-width: 0; }
.vv2-title {
  font-size: 1.125rem; font-weight: 800; color: #fff;
  margin-bottom: 5px; letter-spacing: -0.02em;
}
.vv2-desc {
  font-size: 0.9375rem; color: rgba(255,255,255,0.52);
  line-height: 1.65;
}
.vv2-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25); flex-shrink: 0;
  transition: all 280ms var(--ease);
}
.vv2-item:hover .vv2-arrow {
  background: var(--cyan); border-color: var(--cyan);
  color: #071014;
  box-shadow: 0 0 24px rgba(0,233,255,0.45);
}
@media (max-width: 640px) {
  .vv2-item { grid-template-columns: 50px 1fr; }
  .vv2-arrow { display: none; }
  .vv2-num { font-size: 1.375rem; }
}

/* ─── Service Detail CTA ──────────────────────────────────────── */
.sd-cta {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─── Legal Pages ────────────────────────────────────────────── */
.legal-hero-updated {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--r-pill);
  background: rgba(0,233,255,0.06); border: 1px solid rgba(0,233,255,0.18);
  font-size: 0.8125rem; font-weight: 600; color: var(--text-2);
  margin-top: 24px;
}
.legal-updated-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
  box-shadow: 0 0 7px rgba(0,233,255,0.6);
}
.legal-article { max-width: 800px; }
.legal-intro {
  padding-bottom: clamp(2rem,4vw,3rem);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(2rem,4vw,3rem);
}
.legal-intro-text {
  font-size: 1rem; color: var(--text-2); line-height: 1.80; margin-bottom: 14px;
}
.legal-intro-text:last-child { margin-bottom: 0; }
.legal-section {
  padding: clamp(1.75rem,3.5vw,2.75rem) 0;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; padding-bottom: 0; }
.legal-section-num {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px;
}
.legal-section-title {
  font-size: clamp(1.125rem,2vw,1.375rem); font-weight: 800;
  color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.2;
}
.legal-p {
  font-size: 1rem; color: var(--text-2); line-height: 1.80; margin-bottom: 14px;
}
.legal-p:last-child { margin-bottom: 0; }
.legal-ul {
  list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 14px 0;
}
.legal-ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 1rem; color: var(--text-2); line-height: 1.65;
}
.legal-ul-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0; margin-top: 8px;
}
.legal-link { color: var(--cyan-deep); font-weight: 600; transition: color 200ms; }
.legal-link:hover { color: var(--cyan); text-decoration: underline; }

/* ─── Footer Legal Links ─────────────────────────────────────── */
.footer-legal { display: flex; align-items: center; gap: 20px; }
.footer-legal-link {
  font-size: 0.8125rem; color: rgba(255,255,255,0.38);
  transition: color 200ms; white-space: nowrap;
}
.footer-legal-link:hover { color: var(--cyan); }

/* ─── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-image-frame { transition: none; }
}
