/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Design Tokens */
:root {
  /* Backgrounds */
  --bg-deep: #060B14;
  --bg-surface: rgba(255, 255, 255, 0.04);
  --bg-surface-hover: rgba(255, 255, 255, 0.07);
  --bg-card: rgba(255, 255, 255, 0.03);

  /* Accent */
  --accent: #8B5CF6;
  --accent-dim: #7C3AED;
  --accent-glow: rgba(139, 92, 246, 0.30);
  --accent-soft: rgba(139, 92, 246, 0.12);

  /* Text */
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.45);
  --text-muted: rgba(255, 255, 255, 0.30);

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(139, 92, 246, 0.35);

  /* Brand colors */
  --renteriq: #1B50C8;
  --renteriq-glow: rgba(27, 80, 200, 0.30);
  --shiftcore: #22C55E;
  --shiftcore-glow: rgba(34, 197, 94, 0.30);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  /* Ease */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Ambient background orbs - dimmed for canvas */
body::before {
  content: '';
  position: fixed;
  inset: -15%;
  background:
    radial-gradient(800px circle at 15% 10%, rgba(139, 92, 246, 0.08) 0%, transparent 55%),
    radial-gradient(600px circle at 85% 30%, rgba(27, 80, 200, 0.05) 0%, transparent 50%),
    radial-gradient(700px circle at 50% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 55%),
    radial-gradient(500px circle at 90% 85%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: ambient-drift 30s ease-in-out infinite alternate;
}

#quantum-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

@keyframes ambient-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 1.5%, 0) scale(1.04); }
  100% { transform: translate3d(1.5%, -1%, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* Layout */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Eyebrow */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(6, 11, 20, 0.5);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}

.nav.scrolled {
  background: rgba(6, 11, 20, 0.88);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.nav-brand-icon-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 8px;
  transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.25));
}

.nav-brand:hover .nav-brand-icon-img {
  filter: drop-shadow(0 4px 16px rgba(139, 92, 246, 0.4)) brightness(1.1);
  transform: scale(1.06);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.4px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-brand-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Footer brand is slightly larger */
.footer-brand .nav-brand-icon-img {
  height: 44px;
  width: 44px;
}

.footer-brand .nav-brand-name {
  font-size: 20px;
}

.footer-brand .nav-brand-tag {
  font-size: 10px;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.1px;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity 0.3s, transform 0.3s;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { opacity: 1; transform: scaleX(1); }

.nav-cta-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px var(--accent-glow);
  border: 1px solid rgba(139, 92, 246, 0.5);
  flex-shrink: 0;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

/* Mobile hamburger */
.nav-mobile-btn {
  display: none;
  padding: 8px;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s;
}

.nav-mobile-btn:hover { background: var(--bg-surface); }

.nav-mobile-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-mobile-overlay.open { display: flex; }

.nav-mobile-panel {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  background: rgba(6, 11, 20, 0.95);
}

.nav-mobile-close {
  align-self: flex-end;
  padding: 8px;
  color: var(--text-dim);
  border-radius: 8px;
  margin-bottom: 32px;
}

.nav-mobile-close:hover { color: var(--text); background: var(--bg-surface); }

.nav-mobile-close svg { width: 24px; height: 24px; }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile-links a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile-links a:hover { color: var(--text); }

.nav-mobile-links .nav-cta-btn {
  margin-top: 24px;
  text-align: center;
  display: block;
  padding: 14px 24px;
  font-size: 15px;
}

.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, #ffffff 20%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .accent {
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Scroll indicator */
.hero-scroll {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

.products {
  padding: 100px 0;
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 20%, rgba(255, 255, 255, 0.80) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-header p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.4s, box-shadow 0.4s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* RenterIQ card */
.product-card.renteriq::before {
  background: radial-gradient(circle at 50% 0%, var(--renteriq-glow) 0%, transparent 60%);
}
.product-card.renteriq:hover {
  border-color: rgba(27, 80, 200, 0.35);
  box-shadow: 0 24px 60px rgba(27, 80, 200, 0.15);
}
.product-card.renteriq:hover::before { opacity: 1; }

/* ShiftCore card */
.product-card.shiftcore::before {
  background: radial-gradient(circle at 50% 0%, var(--shiftcore-glow) 0%, transparent 60%);
}
.product-card.shiftcore:hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 24px 60px rgba(34, 197, 94, 0.15);
}
.product-card.shiftcore:hover::before { opacity: 1; }

.product-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.product-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.product-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: #ffffff;
}

.product-card.renteriq .product-logo {
  background: linear-gradient(135deg, var(--renteriq), #2E63E0);
}

.product-card.shiftcore .product-logo {
  background: linear-gradient(135deg, var(--shiftcore), #16a34a);
}

.product-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.product-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-left: auto;
}

.product-card.renteriq .product-badge {
  background: rgba(27, 80, 200, 0.15);
  color: #5B8DEF;
}

.product-card.shiftcore .product-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
}

.product-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-feature-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: background 0.2s, border-color 0.2s;
}

.product-card:hover .product-feature-pill {
  background: var(--bg-surface-hover);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.3s;
}

.product-card.renteriq .product-link { color: #5B8DEF; }
.product-card.shiftcore .product-link { color: #4ADE80; }

.product-link .arrow {
  transition: transform 0.3s;
  display: inline-block;
}

.product-card:hover .product-link { gap: 12px; }
.product-card:hover .product-link .arrow { transform: translateX(3px); }

.about {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 20%, rgba(255, 255, 255, 0.80) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--text);
  font-weight: 600;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.about-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
}

.about-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.about-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}

.about-card-item .tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tech-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.process {
  padding: 100px 0;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 20%, rgba(255, 255, 255, 0.80) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-header p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* Connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--border-hover) 20%, var(--accent-soft) 50%, var(--border-hover) 80%, transparent);
  z-index: 0;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.12);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.process-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff 20%, rgba(255, 255, 255, 0.80) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-text p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-dim);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 20px var(--accent-glow);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.form-submit:active {
  transform: translateY(0);
}

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #4ADE80;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

.form-success.show { display: block; }

.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
  background: rgba(6, 11, 20, 0.6);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text-dim); }

@media (max-width: 1024px) {
  .products-grid {
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-btn.desktop { display: none; }
  .nav-mobile-btn { display: flex; align-items: center; justify-content: center; }

  .hero { padding: 130px 0 72px; }

  section { padding: 72px 0; }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 32px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-steps::before { display: none; }

  .process-step {
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 120px 0 56px; }
  .hero-stats { gap: 24px; }
  .product-card { padding: 24px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
}
