/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/(site)/landing.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
/* ========================================
   TECHNOSTAFF LANDING — Design System
   ======================================== */

:root {
  --l-bg: #000000;
  --l-bg-card: rgba(255,255,255,0.03);
  --l-bg-glass: rgba(255,255,255,0.04);
  --l-bg-glass-hover: rgba(255,255,255,0.07);
  --l-accent: #00d4ff;
  --l-accent-2: #7b61ff;
  --l-accent-3: #ff3c78;
  --l-text: #ffffff;
  --l-text-secondary: rgba(255,255,255,0.7);
  --l-text-muted: rgba(255,255,255,0.4);
  --l-text-dim: rgba(255,255,255,0.2);
  --l-border: rgba(255,255,255,0.06);
  --l-border-hover: rgba(255,255,255,0.12);
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---- Landing Root ---- */
.landing {
  background: var(--l-bg);
  color: var(--l-text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--l-accent), var(--l-accent-2), var(--l-accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 6s ease infinite;
}

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

/* ---- Section Tags ---- */
.section-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--l-accent);
  margin-bottom: 16px;
  display: inline-block;
}

/* ---- Section Titles ---- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--l-text);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--l-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- Section Dividers ---- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: 0;
  border: none;
}

/* ---- Landing Section Layout ---- */
.landing-section {
  position: relative;
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #000;
  background: linear-gradient(135deg, var(--l-accent), var(--l-accent-2));
  border: none;
  border-radius: 60px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 30px rgba(0,212,255,0.3), 0 0 60px rgba(0,212,255,0.1);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,212,255,0.5), 0 0 80px rgba(0,212,255,0.15);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary.btn-hero {
  padding: 20px 48px;
  font-size: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--l-text);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.btn-ghost.btn-hero {
  padding: 20px 48px;
  font-size: 16px;
}

/* ---- Glass Cards ---- */
.glass-card {
  background: var(--l-bg-glass);
  border: 1px solid var(--l-border);
  border-radius: 24px;
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--l-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.06);
}

.glass-card-inner {
  padding: 36px 28px;
}

.glass-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.glass-card .card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--l-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.glass-card .card-desc {
  font-size: 14px;
  color: var(--l-text-muted);
  line-height: 1.7;
}

/* ---- Header ---- */
.landing-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 1px solid var(--l-border);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.4s;
  max-width: calc(100% - 32px);
}

.landing-header.scrolled {
  background: rgba(0,0,0,0.75);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-color: var(--l-border-hover);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 28px;
  width: auto;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--l-text);
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  font-size: 13px;
  color: var(--l-text-secondary);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.3s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--l-text);
  background: rgba(255,255,255,0.06);
}

.header-cta {
  flex-shrink: 0;
}

.header-phone {
  font-size: 13px;
  color: var(--l-text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--l-accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--l-text);
  cursor: pointer;
  padding: 4px;
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--l-border);
  background: rgba(0,212,255,0.04);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--l-accent);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  color: var(--l-text);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.35s;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--l-text-secondary);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.5s;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.65s;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 40px;
  background: var(--l-bg-glass);
  border: 1px solid var(--l-border);
  border-radius: 20px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.8s;
}

.hero-metric {
  text-align: center;
}

.hero-metric-value {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-metric-label {
  font-size: 13px;
  color: var(--l-text-muted);
  margin-top: 4px;
}

/* Hero Background Media */
.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* Hero Rings */
.hero-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  pointer-events: none;
  z-index: 3;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 8s ease-in-out infinite;
}

.hero-ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 460px; height: 460px; animation-delay: 1s; }
.hero-ring:nth-child(3) { width: 620px; height: 620px; animation-delay: 2s; }
.hero-ring:nth-child(4) { width: 780px; height: 780px; animation-delay: 3s; }

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.04); }
}

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.about-card {
  perspective: 800px;
}

.about-card-inner {
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

/* ---- Process Section ---- */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step-orb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  background: var(--l-bg);
  z-index: 2;
}

.process-step-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--l-accent), var(--l-accent-2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--l-text);
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 14px;
  color: var(--l-text-muted);
  line-height: 1.7;
}

.process-connector {
  position: absolute;
  top: 40px;
  left: calc(50% + 50px);
  right: calc(-50% + 50px);
  height: 2px;
  background: linear-gradient(90deg, var(--l-accent), var(--l-accent-2));
  opacity: 0.3;
  z-index: 1;
}

/* ---- Support Section (Bento Grid) ---- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.bento-card {
  position: relative;
}

.bento-card.bento-large {
  grid-column: span 3;
}

.bento-card.bento-small {
  grid-column: span 2;
}

.bento-stat {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}

/* ---- Equipment Section ---- */
.equipment-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.equipment-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--l-border);
  background: transparent;
  color: var(--l-text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.equipment-tab:hover {
  border-color: var(--l-border-hover);
  color: var(--l-text-secondary);
}

.equipment-tab.active {
  background: rgba(0,212,255,0.1);
  border-color: var(--l-accent);
  color: var(--l-accent);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.equip-card {
  text-align: left;
}

.equip-card-img {
  aspect-ratio: 4/3;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.equip-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.equip-card-img .placeholder-icon {
  font-size: 48px;
  opacity: 0.15;
}

.equip-card-body {
  padding: 20px 24px 24px;
}

.equip-card-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0,212,255,0.08);
  color: var(--l-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.equip-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--l-text);
  margin-bottom: 8px;
}

.equip-card-desc {
  font-size: 14px;
  color: var(--l-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.equip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--l-border);
}

.equip-card-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--l-text);
}

.equip-card-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.equip-card-badge.in_stock {
  background: rgba(0,255,136,0.1);
  color: #00ff88;
}

.equip-card-badge.order {
  background: rgba(255,180,0,0.1);
  color: #ffb400;
}

.equip-card-badge.out_of_stock {
  background: rgba(255,60,120,0.1);
  color: var(--l-accent-3);
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--l-text-dim);
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state-text {
  font-size: 15px;
  color: var(--l-text-muted);
}

/* ---- Clients Section ---- */
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.client-logo {
  opacity: 0.4;
  transition: opacity 0.4s, transform 0.4s;
  filter: grayscale(1) brightness(2);
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0) brightness(1);
}

.client-logo img {
  max-height: 48px;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---- Contact Form ---- */
/* ========== Contact + Chat Section ========== */
.contact-chat-card {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  background: var(--l-bg-card);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--l-border);
  border-radius: 32px;
  overflow: hidden;
}

.contact-chat-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--l-accent), var(--l-accent-2), var(--l-accent-3));
}

.contact-chat-grid {
  display: grid;
  grid-template-columns: 2fr 1px 3fr;
  min-height: 480px;
}

/* — Left: Contact Form — */
.contact-left {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--l-text);
  margin: 0 0 8px;
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--l-text-muted);
  margin: 0 0 28px;
  line-height: 1.5;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-input {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--l-border);
  background: rgba(255,255,255,0.03);
  color: var(--l-text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.3s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.contact-input::-moz-placeholder {
  color: var(--l-text-dim);
}

.contact-input::placeholder {
  color: var(--l-text-dim);
}

.contact-input:focus {
  border-color: var(--l-accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}

.contact-saved-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4ade80;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s;
  pointer-events: none;
}

.contact-saved-indicator.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-saved-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* — Divider — */
.contact-divider {
  background: rgba(255,255,255,0.06);
  width: 1px;
}

/* — Right: Chatbot — */
.contact-right {
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--l-accent), var(--l-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: #000;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
}

.chat-bot-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--l-text);
}

.chat-bot-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--l-text-muted);
}

.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-body {
  flex: 1;
  padding: 20px 24px;
  overflow-y: auto;
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
  max-height: 380px;
}

.chat-body::-webkit-scrollbar {
  width: 4px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 80%;
}

.chat-msg-bot {
  align-self: flex-start;
}

.chat-msg-user {
  align-self: flex-end;
}

.chat-bubble {
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.chat-msg-bot .chat-bubble {
  background: rgba(255,255,255,0.06);
  color: var(--l-text-secondary);
  border-radius: 18px 18px 18px 4px;
}

.chat-msg-user .chat-bubble {
  background: linear-gradient(135deg, var(--l-accent), var(--l-accent-2));
  color: #000;
  font-weight: 500;
  border-radius: 18px 18px 4px 18px;
}

.chat-time {
  font-size: 11px;
  color: var(--l-text-dim);
  margin-top: 4px;
  padding: 0 4px;
}

.chat-msg-user .chat-time {
  text-align: right;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 20px !important;
}

.typing-indicator .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--l-text-muted);
  animation: typing-bounce 1.2s infinite;
}

.typing-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* Message appear animation */
.msg-appear {
  animation: msg-slide-up 0.3s ease-out;
}

@keyframes msg-slide-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Chat input bar */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.chat-text-input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid var(--l-border);
  background: rgba(255,255,255,0.04);
  color: var(--l-text);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}

.chat-text-input::-moz-placeholder {
  color: var(--l-text-dim);
}

.chat-text-input::placeholder {
  color: var(--l-text-dim);
}

.chat-text-input:focus {
  border-color: var(--l-accent);
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--l-accent), var(--l-accent-2));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.05);
}

.chat-send-btn.pulse-send {
  animation: send-pulse 0.3s ease;
}

@keyframes send-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.85); }
  100% { transform: scale(1); }
}

/* ---- Footer ---- */
.landing-footer {
  border-top: 1px solid var(--l-border);
  padding: 40px 24px;
}

.landing-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 14px;
  color: var(--l-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy img {
  height: 20px;
  width: auto;
  opacity: 0.5;
}

.footer-contacts {
  display: flex;
  gap: 24px;
}

.footer-contacts a {
  font-size: 14px;
  color: var(--l-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contacts a:hover {
  color: var(--l-accent);
}

/* ---- Background Effects ---- */
.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
}

.gradient-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(0,212,255,0.12);
  top: -200px;
  left: -100px;
  animation: orbit1 25s ease-in-out infinite;
}

.gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(123,97,255,0.1);
  bottom: -150px;
  right: -100px;
  animation: orbit2 30s ease-in-out infinite;
}

.gradient-orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(255,60,120,0.08);
  top: 50%;
  left: 50%;
  animation: orbit3 20s ease-in-out infinite;
}

@keyframes orbit1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(150px, 100px); }
  66% { transform: translate(-80px, 200px); }
}

@keyframes orbit2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-120px, -80px); }
  66% { transform: translate(100px, -150px); }
}

@keyframes orbit3 {
  0%, 100% { transform: translate(-50%, -50%); }
  33% { transform: translate(-30%, -70%); }
  66% { transform: translate(-70%, -30%); }
}

/* Grain Overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.04), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: left, top;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .process-connector {
    display: none;
  }

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

  .bento-card.bento-large,
  .bento-card.bento-small {
    grid-column: span 1;
  }

  .landing-section {
    padding: 80px 20px;
  }

  .hero-metrics {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary.btn-hero,
  .btn-ghost.btn-hero {
    padding: 16px 32px;
    font-size: 14px;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 20px;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .contact-chat-grid {
    grid-template-columns: 1fr;
  }

  .contact-divider {
    width: 100%;
    height: 1px;
  }

  .contact-left {
    padding: 28px 24px;
  }

  .chat-body {
    min-height: 280px;
    max-height: 340px;
  }

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

  .landing-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 12px;
  }

  .landing-header {
    padding: 8px 16px;
    gap: 12px;
  }

  .header-phone {
    display: none;
  }

  .clients-logos {
    gap: 32px;
  }
}

