/* ═══════════════════════════════════════════════════════════
   TYLECT TECHNOLOGIES — MAIN STYLESHEET
   Enterprise-Grade Immersive Design System
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Colors */
  --bg-primary:    #0a0a0f;
  --bg-secondary:  #0f0f1a;
  --bg-card:       #13131f;
  --bg-card-hover: #1a1a2e;
  --border:        rgba(255,255,255,0.07);
  --border-hover:  rgba(255,255,255,0.15);

  --text-primary:   #f0f0ff;
  --text-secondary: #9999bb;
  --text-muted:     #55557a;

  --accent-green:   #0ECF7C;
  --accent-teal:    #00C9A7;
  --accent-orange:  #F7971E;
  --accent-pink:    #EC4899;
  --accent-blue:    #3B82F6;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #0ECF7C 0%, #00B4D8 100%);
  --grad-teal:     linear-gradient(135deg, #00C9A7 0%, #3B82F6 100%);
  --grad-glow:     radial-gradient(ellipse at center, rgba(14,207,124,0.3) 0%, transparent 70%);

  /* Typography */
  --font-body:     'Inter', sans-serif;
  --font-display:  'Space Grotesk', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max:  1280px;
  --container-pad:  clamp(1rem, 4vw, 2.5rem);
  --header-height:  72px;
  --section-pad:    clamp(5rem, 10vw, 8rem);

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 60px rgba(14,207,124,0.2);

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body.loading { overflow: hidden; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── Custom Cursor ───────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  top: -4px;
  left: -4px;
  transition: transform 0.1s var(--ease), opacity 0.3s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(14,207,124,0.5);
  top: -18px;
  left: -18px;
  transition: transform 0.15s var(--ease), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s;
}
.cursor-ring.hovering {
  width: 60px;
  height: 60px;
  top: -30px;
  left: -30px;
  border-color: rgba(14,207,124,0.8);
  background: rgba(14,207,124,0.05);
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body { cursor: auto; }
}

/* ─── Loading Screen ──────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}
.loader-logo .logo-t { color: var(--accent-green); }
.loader-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(100deg) brightness(1.1);
  animation: loaderLogoPulse 1.4s ease-in-out infinite;
}
@keyframes loaderLogoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(.97); }
}
.loader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-primary);
  animation: loaderBar 1.2s ease forwards;
}
@keyframes loaderBar { to { width: 100%; } }

/* ─── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,0.1);
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(14,207,124,0.4);
}
.btn--primary:hover { box-shadow: 0 8px 30px rgba(14,207,124,0.6); transform: translateY(-2px); }

.btn--secondary {
  background: transparent;
  color: var(--accent-green);
  border: 1.5px solid var(--accent-green);
}
.btn--secondary:hover { background: rgba(14,207,124,0.1); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--border-hover); transform: translateY(-2px); }

.btn--success {
  background: linear-gradient(135deg, #00C9A7 0%, #3B82F6 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,201,167,0.3);
}
.btn--success:hover { box-shadow: 0 8px 30px rgba(0,201,167,0.5); transform: translateY(-2px); }

.btn--warning {
  background: linear-gradient(135deg, #F7971E 0%, #FFD200 100%);
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(247,151,30,0.3);
}
.btn--warning:hover { box-shadow: 0 8px 30px rgba(247,151,30,0.5); transform: translateY(-2px); }

.btn--sm  { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--lg  { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn-arrow { font-size: 1.1rem; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── Section Helpers ─────────────────────────────────────── */
.section { padding: var(--section-pad) 0; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(14,207,124,0.12);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(14,207,124,0.25);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.section-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 540px;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-2 { margin-top: 1rem; }

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-t { color: var(--accent-green); }
.logo-dot { color: var(--accent-green); font-size: 1.6rem; line-height: 0; vertical-align: -0.1em; }
.footer-logo .logo-text { font-size: 1.6rem; }

/* Primary Nav */
.primary-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.primary-nav .nav-list a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.primary-nav .nav-list a:hover,
.primary-nav .nav-list .current-menu-item a {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 36px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav__inner { text-align: center; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.mobile-nav__list a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.mobile-nav__list a:hover { color: var(--text-primary); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Animated Grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,207,124,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,207,124,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: rgba(14,207,124,0.25);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(0,201,167,0.2);
  bottom: -100px; left: -100px;
  animation-delay: 2s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: rgba(236,72,153,0.2);
  top: 40%; left: 40%;
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Particles */
.hero__particles { position: absolute; inset: 0; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(14,207,124,0.6);
  animation: particleFall linear infinite;
}
@keyframes particleFall {
  from { transform: translateY(-10px); opacity: 1; }
  to   { transform: translateY(100vh);  opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 4rem 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(0,201,167,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,201,167,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(0,201,167,0.1); }
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero__title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}
.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.2s; }
.hero__title-line:nth-child(3) { animation-delay: 0.3s; }
.hero__title-line--gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  max-width: 580px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.5s both;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  margin-top: 1rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--accent-green); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  animation: fadeIn 1.5s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-green), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.5) translateY(10px); }
}

/* ═══════════ TRUST BAR ═══════════ */
.trust-bar {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  overflow: hidden;
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee__item {
  padding: 0 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item:not(:nth-child(odd)) { color: var(--accent-green); font-size: 0.7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════ ABOUT SECTION ═══════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-visual__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.about-visual__card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(14,207,124,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-stat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-stat { display: flex; flex-direction: column; gap: 0.3rem; }
.about-stat__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat__label { font-size: 0.85rem; color: var(--text-secondary); }

.about-visual__card--accent {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(14,207,124,0.15), rgba(236,72,153,0.1));
  border-color: rgba(14,207,124,0.3);
  align-self: flex-end;
  max-width: 320px;
}
.about-visual__card--accent svg { color: var(--accent-green); flex-shrink: 0; }
.about-visual__card--accent p { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, background 0.2s;
}
.pillar-card:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.05); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.pillar-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ═══════════ SERVICES SECTION ═══════════ */
.services-section { background: var(--bg-secondary); overflow: hidden; }
.services-section__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.services-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(ellipse, rgba(14,207,124,0.08) 0%, transparent 70%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.service-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: background 0.3s;
}
.service-card:hover .service-card__icon { background: rgba(255,255,255,0.08); }
.service-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.service-card__line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover .service-card__line { opacity: 0.5; }

/* ═══════════ PRODUCTS SECTION ═══════════ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.product-showcase:last-child { border-bottom: none; }
.product-showcase--reverse { direction: rtl; }
.product-showcase--reverse > * { direction: ltr; }

/* Product Mockup */
.product-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.product-mockup:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(var(--product-color-rgb),0.1);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }
.mockup-url {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  background: rgba(255,255,255,0.04);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  flex: 1;
  text-align: center;
}
.mockup-body { padding: 1.5rem; }

/* API Preview */
.api-preview { display: flex; flex-direction: column; gap: 0.75rem; }
.api-endpoint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-family: monospace;
  color: var(--text-secondary);
}
.method {
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.method.get { background: rgba(0,201,167,0.15); color: #00C9A7; }
.method.post { background: rgba(14,207,124,0.15); color: #0ECF7C; }
.api-response {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-family: monospace;
  line-height: 1.6;
}
.json-key { color: #0ECF7C; }
.json-val { color: #00C9A7; }

/* Hiring Preview */
.hiring-preview { display: flex; flex-direction: column; gap: 1.25rem; }
.hiring-profile { display: flex; align-items: center; gap: 1rem; }
.profile-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C9A7, #3B82F6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.verified-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.6rem;
  background: rgba(0,201,167,0.2);
  color: #00C9A7;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(0,201,167,0.3);
}
.profile-info strong { display: block; font-size: 0.85rem; }
.profile-info span { font-size: 0.75rem; color: var(--text-muted); }
.hiring-match { display: flex; flex-direction: column; gap: 0.6rem; }
.match-bar { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: var(--text-secondary); }
.bar { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, #00C9A7, #3B82F6); border-radius: 3px; }

/* Monitor Preview */
.monitor-preview { display: flex; flex-direction: column; gap: 1rem; }
.monitor-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot.online { background: #00C9A7; box-shadow: 0 0 8px rgba(0,201,167,0.5); }
.monitor-chart { display: flex; flex-direction: column; gap: 0.5rem; }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, #F7971E, #FFD200);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  opacity: 0.8;
}
.chart-label { font-size: 0.7rem; color: var(--text-muted); }
.monitor-uptime { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; }
.monitor-uptime strong { font-size: 1.2rem; color: #00C9A7; font-family: var(--font-display); }
.trend.up { color: #00C9A7; font-size: 0.75rem; }

/* Product Content */
.product-badge {
  display: inline-flex;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--product-color, var(--accent-green));
  color: var(--product-color, var(--accent-green));
  margin-bottom: 1rem;
}
.product-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.product-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.product-features li svg { flex-shrink: 0; }

/* ═══════════ WHY SECTION ═══════════ */
.why-section { background: var(--bg-primary); overflow: hidden; }
.why-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,207,124,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,207,124,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(14,207,124,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover { border-color: rgba(14,207,124,0.3); transform: translateY(-4px); }
.why-card:hover::after { opacity: 1; }

.why-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(14,207,124,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s;
}
.why-card:hover .why-card__num { color: rgba(14,207,124,0.4); }
.why-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.why-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials-section { background: var(--bg-secondary); }

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  transition: transform 0.5s var(--ease);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar,
.testimonial-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar-placeholder {
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.testimonial-author-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testimonial-author-info span { font-size: 0.8rem; color: var(--text-muted); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.slider-btn:hover { background: rgba(14,207,124,0.2); border-color: rgba(14,207,124,0.4); color: var(--text-primary); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active { width: 24px; border-radius: 4px; background: var(--accent-green); }

/* ═══════════ CTA SECTION ═══════════ */
.cta-section { padding: var(--space-xl) 0; }
.cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(14,207,124,0.3);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(14,207,124,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card__content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.cta-card__content p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* CTA Orbit animation */
.cta-orbit { position: relative; width: 200px; height: 200px; }
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(14,207,124,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin linear infinite;
}
.orbit-ring--1 { width: 80px;  height: 80px;  animation-duration: 5s;  }
.orbit-ring--2 { width: 130px; height: 130px; animation-duration: 10s; }
.orbit-ring--3 { width: 190px; height: 190px; animation-duration: 15s; animation-direction: reverse; }
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-green);
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(14,207,124,0.8);
}
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 30px rgba(14,207,124,0.5);
}

/* ═══════════ FOOTER ═══════════ */
.site-footer { background: var(--bg-primary); position: relative; }
.footer-wave { line-height: 0; transform: scaleY(-1); }
.footer-wave svg { width: 100%; height: auto; }

.footer-body { padding: 3rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1.25rem 0;
  max-width: 280px;
}

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-link:hover { background: rgba(14,207,124,0.15); border-color: rgba(14,207,124,0.4); color: var(--accent-green); transform: translateY(-2px); }

.footer-col__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
}
.footer-links a:hover { color: var(--text-primary); transform: translateX(4px); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--accent-green); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-copyright { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1rem; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--text-primary); }
.footer-legal span { opacity: 0.3; }

/* ═══════════ PAGE LAYOUTS ═══════════ */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,207,124,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,207,124,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 100%);
}
.page-hero__orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,207,124,0.2), transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
}

/* ═══════════ CONTACT PAGE ═══════════ */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s;
}
.contact-info-item:hover { border-color: var(--border-hover); }
.contact-info-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(14,207,124,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
}
.contact-info-item__label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.contact-info-item__value { font-weight: 600; font-size: 0.95rem; }
.contact-info-item__value a:hover { color: var(--accent-green); }

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(14,207,124,0.6);
  box-shadow: 0 0 0 3px rgba(14,207,124,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--bg-card); }
.form-msg { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; display: none; }
.form-msg.success { background: rgba(0,201,167,0.1); border: 1px solid rgba(0,201,167,0.3); color: #00C9A7; display: block; }
.form-msg.error   { background: rgba(255,59,48,0.1); border: 1px solid rgba(255,59,48,0.3); color: #ff3b30; display: block; }

/* ═══════════ BREADCRUMBS ═══════════ */
.breadcrumbs { margin-bottom: 1rem; }
.breadcrumbs ol { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; opacity: 0.3; }
.breadcrumbs a:hover { color: var(--text-primary); }

/* ═══════════ PRODUCTS ARCHIVE ═══════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-card); }
.product-card:hover::before { transform: scaleX(1); }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeIn       { from { opacity: 0;                     } to { opacity: 1;                        } }
@keyframes fadeInUp     { from { opacity: 0; transform: translateY(30px);  } to { opacity: 1; transform: translateY(0);     } }
@keyframes fadeInDown   { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0);     } }
@keyframes fadeInLeft   { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0);     } }
@keyframes fadeInRight  { from { opacity: 0; transform: translateX(30px);  } to { opacity: 1; transform: translateX(0);     } }
@keyframes scaleIn      { from { opacity: 0; transform: scale(0.8);        } to { opacity: 1; transform: scale(1);          } }

.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-orbit { display: none; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .product-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .product-showcase--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-slider { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(3rem, 8vw, 5rem); }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn--primary { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 2rem; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE — IMMERSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

/* ─── Products Hero ──────────────────────────────────────── */
.products-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
}
.products-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ph-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,207,124,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,207,124,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.ph-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.ph-orb--1 { width:500px;height:500px;background:rgba(14,207,124,.2);top:-150px;right:-100px; }
.ph-orb--2 { width:350px;height:350px;background:rgba(0,201,167,.15);bottom:-50px;left:-80px;animation-delay:3s; }
.ph-orb--3 { width:250px;height:250px;background:rgba(247,151,30,.15);top:40%;left:50%;animation-delay:5s; }

.products-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--text-secondary);
  margin-bottom:1.5rem;
}
.ph-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
}
.ph-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

/* Product nav pills */
.ph-product-nav {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.ph-nav-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  transition: all .3s var(--ease);
}
.ph-nav-item:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--c);
  transform: translateY(-2px);
}
.ph-nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 8px var(--c);
}
.ph-nav-name { font-weight: 700; font-size: .9rem; color: var(--text-primary); }
.ph-nav-tag  { font-size: .72rem; color: var(--text-muted); letter-spacing: .05em; }

/* Floating badges */
.ph-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.ph-floater {
  position: absolute;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  animation: floatBadge linear infinite;
}
.ph-floater--1 { top: 20%; right: 8%;  animation-duration: 6s;  animation-delay: 0s; }
.ph-floater--2 { top: 45%; right: 15%; animation-duration: 7s;  animation-delay: 1s; }
.ph-floater--3 { top: 65%; right: 6%;  animation-duration: 8s;  animation-delay: 2s; }
.ph-floater--4 { top: 32%; right: 30%; animation-duration: 9s;  animation-delay: .5s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (max-width:900px) { .ph-floaters { display:none; } }

/* ─── Product Deep Dive ───────────────────────────────── */
.product-deep {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.product-deep--alt { background: var(--bg-secondary); }
.pd-stripe {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pd-layout--rev { direction: rtl; }
.pd-layout--rev > * { direction: ltr; }

.pd-number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: -1rem;
  pointer-events: none;
  user-select: none;
}
.pd-content { position: relative; }
.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--bc);
  color: var(--bc);
  background: color-mix(in srgb, var(--bc) 12%, transparent);
  margin-bottom: 1rem;
}
.pd-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.pd-headline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.pd-body {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: .98rem;
  max-width: 500px;
}

/* Feature cards */
.pd-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.pd-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid var(--fc);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: background .3s, border-color .3s;
}
.pd-feature-card:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--fc);
}
.pd-fc-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.pd-feature-card strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: .2rem; }
.pd-feature-card span  { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* Use case tags */
.pd-usecases {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.pd-usecase-label { font-size: .78rem; color: var(--text-muted); font-weight: 600; }
.pd-usecase-tag {
  padding: .25rem .7rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .75rem;
  color: var(--text-secondary);
}

.pd-start-free {
  margin-bottom: 1.75rem;
  font-size: .85rem;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pd-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ─── Terminal Visual (InnoWave) ──────────────────────── */
.pd-terminal {
  background: #0d0d16;
  border: 1px solid rgba(14,207,124,.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04), 0 0 80px rgba(14,207,124,.1);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.pd-terminal:hover {
  transform: translateY(-8px) rotate(.5deg);
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 100px rgba(14,207,124,.15);
}
.pd-terminal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.25rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots span { width:12px;height:12px;border-radius:50%; }
.terminal-dots span:nth-child(1){background:#FF5F57}
.terminal-dots span:nth-child(2){background:#FFBD2E}
.terminal-dots span:nth-child(3){background:#28C840}
.terminal-title { font-size:.75rem; color: var(--text-muted); font-family: monospace; }
.pd-terminal__body { padding: 1.5rem; font-family: monospace; font-size: .82rem; line-height: 1.8; }
.t-line { display: block; }
.t-indent { padding-left: 1.5rem; }
.t-comment { color: #555580; }
.t-method  { color: #00C9A7; font-weight: 700; }
.t-path    { color: #0ECF7C; }
.t-key     { color: #9999FF; }
.t-val     { color: #FFBD2E; }
.t-string  { color: #00C9A7; }
.t-num     { color: #F7971E; }
.t-divider { height:1px;background:rgba(255,255,255,.05);margin:1rem 0; }
.pd-terminal__metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.t-metric {
  flex: 1;
  padding: .75rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.05);
}
.t-metric:last-child { border-right: none; }
.t-m-val  { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--tc); }
.t-m-label{ display: block; font-size: .7rem; color: var(--text-muted); margin-top: .2rem; }

/* Floating endpoints */
.pd-endpoint-float {
  position: absolute;
  padding: .4rem .9rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-family: monospace;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  z-index: 2;
  animation: floatBadge linear infinite;
}
.pd-ef--1 { bottom: 10%; left: -2rem; animation-duration: 5s; }
.pd-ef--2 { top: 15%;    right: -1rem; animation-duration: 7s; animation-delay: 1s; }
.pd-ef--3 { bottom: 35%; right: -3rem; animation-duration: 6s; animation-delay: 2s; }
.ef-method {
  display: inline-block;
  padding: .1rem .4rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: .65rem;
  margin-right: .3rem;
}
.ef-method.get  { background: rgba(0,201,167,.15); color: #00C9A7; }
.ef-method.post { background: rgba(14,207,124,.15); color: #0ECF7C; }

/* ─── App Preview Visual (Naukricart) ─────────────────── */
.pd-app-preview {
  background: var(--bg-card);
  border: 1px solid rgba(0,201,167,.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 80px rgba(0,201,167,.08);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.pd-app-preview:hover {
  transform: translateY(-8px) rotate(-.5deg);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 100px rgba(0,201,167,.12);
}
.app-top-bar {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0,201,167,.04);
}
.atb-logo { display: flex; align-items: center; gap: .6rem; }
.atb-badge {
  padding: .15rem .6rem;
  background: rgba(0,201,167,.15);
  border: 1px solid rgba(0,201,167,.3);
  border-radius: var(--radius-full);
  font-size: .65rem;
  font-weight: 700;
  color: #00C9A7;
  letter-spacing: .08em;
}
.nk-candidate-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0,201,167,.03);
  border-bottom: 1px solid var(--border);
}
.nk-avatar {
  width: 44px;height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg,#00C9A7,#3B82F6);
  display: flex;align-items: center;justify-content: center;
  font-weight: 800;font-size:.9rem;color:#fff;flex-shrink:0;
}
.nk-info { flex: 1; }
.nk-info strong { display: block; font-size: .9rem; }
.nk-info span   { font-size: .78rem; color: var(--text-muted); }
.nk-verified {
  display: flex;align-items: center;gap: .35rem;
  font-size: .72rem;color: #00C9A7;font-weight: 700;
  white-space: nowrap;
}
.nk-match-section { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
.nk-match-label {
  display: flex;justify-content: space-between;
  font-size: .8rem;color: var(--text-secondary);margin-bottom: .5rem;
}
.nk-match-score { font-weight: 800; color: #00C9A7; font-size: .9rem; }
.nk-match-bar {
  height: 8px;background: rgba(255,255,255,.05);border-radius: 4px;overflow: hidden;
}
.nk-match-fill {
  height: 100%;
  background: linear-gradient(90deg,#00C9A7,#3B82F6);
  border-radius: 4px;
  animation: growBar 1.5s ease .3s both;
}
@keyframes growBar { from { width: 0 !important; } }
.nk-verifs { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; border-bottom: 1px solid var(--border); }
.nk-verif {
  display: flex;align-items: center;gap: .6rem;
  font-size: .8rem;color: var(--text-secondary);
}
.nk-verif--done { color: var(--text-primary); }
.nk-stats {
  display: grid;grid-template-columns: repeat(3,1fr);
  padding: 1rem 1.5rem;
}
.nk-stat { text-align: center; }
.nk-stat strong { display:block;font-family:var(--font-display);font-size:1.1rem;font-weight:800;color:var(--text-primary); }
.nk-stat span   { font-size:.7rem;color:var(--text-muted); }

/* ─── Dual Features (Naukricart) ──────────────────────── */
.pd-dual-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pd-dual-col {
  padding: 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-top: 2px solid var(--dc);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.pd-dual-label {
  display: flex;align-items: center;gap: .5rem;
  font-size: .78rem;font-weight: 800;
  letter-spacing: .1em;text-transform: uppercase;
  color: var(--dc);margin-bottom: 1rem;
}
.pd-dual-list { display: flex;flex-direction: column;gap: .5rem; }
.pd-dual-list li {
  font-size: .82rem;color: var(--text-secondary);line-height: 1.4;
  padding-left: .75rem;position: relative;
}
.pd-dual-list li::before {
  content: '→';
  position: absolute;left: 0;
  color: var(--dc);font-size: .7rem;
}

/* ─── Dashboard Visual (Watchnod) ─────────────────────── */
.pd-dashboard {
  background: var(--bg-card);
  border: 1px solid rgba(247,151,30,.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 80px rgba(247,151,30,.08);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.pd-dashboard:hover {
  transform: translateY(-8px) rotate(.5deg);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 100px rgba(247,151,30,.12);
}
.dash-header { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
.dash-status-row {
  display: flex;align-items: center;gap: .6rem;
  font-size: .85rem;font-weight: 600;
}
.dash-status-dot {
  width: 10px;height: 10px;border-radius: 50%;
  background: #00C9A7;
  box-shadow: 0 0 8px rgba(0,201,167,.6);
  animation: pulse 2s infinite;
}
.dash-time { margin-left: auto; font-size: .72rem; color: var(--text-muted); font-weight: 400; }
.dash-nodes { padding: .75rem 1.5rem; border-bottom: 1px solid var(--border); }
.dash-node {
  display: flex;align-items: center;gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.03);
  font-size: .78rem;
}
.dash-node:last-child { border-bottom: none; }
.dn-name { width: 130px; color: var(--text-secondary); flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dn-bar { flex: 1; height: 4px; background: rgba(255,255,255,.05); border-radius: 2px; overflow: hidden; }
.dn-bar span { display: block; height: 100%; border-radius: 2px; background: linear-gradient(90deg,#00C9A7,#3B82F6); }
.dn-bar.warn span { background: linear-gradient(90deg,#F7971E,#FFD200); }
.dn-ms  { font-family: monospace; width: 44px; text-align: right; flex-shrink: 0; font-size: .75rem; color: var(--text-secondary); }
.dn-badge {
  padding: .15rem .5rem;border-radius: 3px;
  font-size: .65rem;font-weight: 700;letter-spacing: .08em;flex-shrink: 0;
}
.dn-badge.up   { background: rgba(0,201,167,.15); color: #00C9A7; }
.dn-badge.warn { background: rgba(247,151,30,.15); color: #F7971E; }
.dn-badge.down { background: rgba(255,59,48,.15);  color: #ff3b30; }
.dash-chart-wrap { padding: .75rem 1.5rem; border-bottom: 1px solid var(--border); }
.dash-chart-label { font-size: .7rem; color: var(--text-muted); display: block; margin-bottom: .5rem; }
.dash-chart {
  display: flex;align-items: flex-end;gap: 3px;height: 50px;
}
.dc-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(247,151,30,.6), rgba(247,151,30,.2));
  border-radius: 2px 2px 0 0;
  min-height: 4px;
}
.dash-summary {
  display: grid;grid-template-columns: repeat(3,1fr);
}
.ds-item { padding: .85rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.ds-item:last-child { border-right: none; }
.ds-val  { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }
.ds-lbl  { font-size: .7rem; color: var(--text-muted); margin-top: .2rem; display: block; }

/* ─── Comparison Table ────────────────────────────────── */
.products-compare { background: var(--bg-secondary); }
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.compare-table {
  width: 100%;border-collapse: collapse;
}
.compare-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.compare-table thead th:first-child { color: var(--text-muted); }
.compare-table tbody td {
  padding: 1rem 1.5rem;
  font-size: .88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.compare-table td:first-child { color: var(--text-primary); font-weight: 600; }
.ct-check {
  display: inline-flex;align-items: center;
  padding: .25rem .7rem;
  background: color-mix(in srgb, var(--cc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 30%, transparent);
  border-radius: var(--radius-full);
  font-size: .78rem;font-weight: 700;color: var(--cc);
  white-space: nowrap;
}
.ct-no { color: var(--text-muted); font-size: .85rem; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .pd-layout, .pd-layout--rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 3rem;
  }
  .pd-number { font-size: 5rem; }
  .pd-dual-features { grid-template-columns: 1fr; }
  .pd-ef--1,.pd-ef--2,.pd-ef--3 { display: none; }
}
@media (max-width: 600px) {
  .product-deep { padding: 4rem 0; }
  .compare-table thead th:nth-child(n+3),
  .compare-table tbody td:nth-child(n+3) { display: none; }
}

/* ─── Logo Image ──────────────────────────────────────── */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Invert dark green → white, then tint with brand green via hue/saturate */
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(100deg) brightness(1.1);
  transition: filter .3s, opacity .3s;
}
.logo-img:hover {
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(100deg) brightness(1.3);
}
.footer-logo-img {
  height: 44px;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(100deg) brightness(1.1);
  opacity: .85;
}
