@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg-primary: #050508;
  --bg-secondary: #0A0A0E;
  --bg-card: rgba(255, 255, 255, 0.02);
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.05);
  --accent: #FF4C21;
  --accent-hover: #ff6842;
  --neon-cyan: #FF4C21;
  --neon-purple: #9d4edd;
  --neon-pink: #f472b6;
  --neon-green: #10b981;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --gradient-1: linear-gradient(135deg, #FF4C21, #ff7a59);
  --gradient-2: linear-gradient(135deg, #a855f7, #f472b6);
  --gradient-3: linear-gradient(135deg, #34d399, #5aedc5);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #333 var(--bg-primary);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: default;
}

/* Custom Cursor — hidden for clean n8n-style look */
.cursor-glow,
.cursor-dot {
  display: none;
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(5, 5, 8, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 76, 33, 0.15);
  /* n8n Orange */
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 800px;
  height: 800px;
  background: rgba(99, 102, 241, 0.12);
  /* Deep blue/purple */
  bottom: -200px;
  right: -100px;
}

.glow-3 {
  width: 500px;
  height: 500px;
  background: rgba(168, 85, 247, 0.1);
  /* Violet */
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  opacity: 0.5;
}

.hero-container {
  display: flex;
  gap: 4rem;
  max-width: 1300px;
  width: 100%;
  position: relative;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero-visual {
  flex: 1.2;
  min-width: 400px;
  position: relative;
  height: 600px;
  pointer-events: none;
  /* Let clicks pass through if needed, or keep for canvas interaction */
}

#hero-canvas {
  width: 100%;
  height: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 0 2.5rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 76, 33, 0.3);
}

.btn-secondary {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  background: var(--bg-card);
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.08);
}

/* Section base */
section {
  padding: 6rem 3rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title .gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Expertise Cards */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 109, 90, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.expertise-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  background: rgba(255, 109, 90, 0.08);
  border: 1px solid rgba(255, 109, 90, 0.15);
}

.expertise-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.expertise-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
}

.card-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  background: rgba(255, 109, 90, 0.06);
  color: var(--neon-cyan);
  border: 1px solid rgba(255, 109, 90, 0.1);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  position: relative;
  transition: all 0.4s;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 109, 90, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .play-btn {
  opacity: 1;
}

.play-btn-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.video-info {
  padding: 1.2rem;
}

.video-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.video-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Case Studies */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(168, 85, 247, 0.2);
}

.case-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.case-step {
  padding: 0.4rem 1rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.case-step.problem {
  background: rgba(244, 114, 182, 0.1);
  color: var(--neon-pink);
  border: 1px solid rgba(244, 114, 182, 0.2);
}

.case-step.action {
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.case-step.result {
  background: rgba(52, 211, 153, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.case-arrow {
  color: var(--text-muted);
  font-size: 1rem;
}

.case-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.case-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-stat {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 1rem;
}

/* Systems */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.system-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.system-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s;
}

.system-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 109, 90, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.system-item:hover::before {
  opacity: 1;
}

.system-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 109, 90, 0.08);
  border: 1px solid rgba(255, 109, 90, 0.15);
  flex-shrink: 0;
}

.system-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.system-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.system-item[data-wf-img] {
  cursor: pointer;
}

.system-badge {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-cyan);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
  transform: translateY(10px);
}

.system-item:hover .system-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Workflow Lightbox */
.wf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 26, 26, 0.98);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.wf-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.wf-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  background: #262626;
  border-bottom: 1px solid #383838;
  flex-shrink: 0;
}

.wf-lightbox-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.wf-lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5cb85c;
  box-shadow: 0 0 6px rgba(92, 184, 92, 0.5);
}

.wf-lightbox-title h3 {
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #ddd;
}

.wf-lightbox-tag {
  font-size: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255, 109, 90, 0.12);
  color: #ff6d5a;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wf-lightbox-close {
  background: none;
  border: none;
  color: #888;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.wf-lightbox-close:hover {
  background: #383838;
  color: #fff;
}

.wf-lightbox-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 2rem;
  background:
    radial-gradient(circle, #2a2a2a 1px, transparent 1px);
  background-size: 20px 20px;
}

.wf-lightbox-body img {
  max-width: 95%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.wf-lightbox-body img:hover {
  transform: scale(1.02);
}



/* Automation Canvas */
.canvas-section {
  background: var(--bg-secondary);
}

.automation-canvas {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.canvas-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 109, 90, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 109, 90, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
}

.canvas-nodes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.canvas-node {
  padding: 0.8rem 1.4rem;
  background: rgba(255, 109, 90, 0.05);
  border: 1px solid rgba(255, 109, 90, 0.15);
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  position: relative;
  transition: all 0.3s;
  white-space: nowrap;
}

.canvas-node:hover {
  background: rgba(255, 109, 90, 0.1);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 109, 90, 0.2);
}

.canvas-node.trigger {
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--neon-purple);
  background: rgba(168, 85, 247, 0.08);
}

.canvas-node.output {
  border-color: rgba(52, 211, 153, 0.4);
  color: var(--neon-green);
  background: rgba(52, 211, 153, 0.08);
}

.canvas-connector {
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.canvas-label {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.canvas-label h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: var(--neon-green);
}

.canvas-label p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  text-align: left;
}

.about-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: var(--bg-secondary);
}

.about-content p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Contact */
.contact-section {
  background: var(--bg-secondary);
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.contact-link:hover {
  border-color: rgba(255, 109, 90, 0.3);
  transform: translateY(-3px);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(10px);
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  position: relative;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* Footer */
footer {
  padding: 2rem 3rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Animations handled by GSAP */


/* Responsive */
@media(max-width:768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .expertise-grid,
  .systems-grid,
  .video-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .canvas-nodes {
    flex-direction: column;
    align-items: center;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    position: relative;
    z-index: 5;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    height: 350px;
    min-width: unset;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .about-stats {
    justify-content: center;
  }

  .stat-item {
    text-align: center;
  }

  .about-stats {
    gap: 2rem;
  }

  .cursor-glow,
  .cursor-dot {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* ========== N8N STYLE MARQUEE ========== */
.logo-marquee-section {
  padding: 4rem 0;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.logo-marquee-title {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

.logo-marquee {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
}

/* Faded edges like n8n */
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.logo-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

.logo-marquee-track.reverse {
  animation: scrollRight 40s linear infinite;
  transform: translateX(calc(-50% - 0.75rem));
}

.client-logo.n8n-tile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 140px;
  height: auto;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.02), 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.client-logo.n8n-tile:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05), 0 8px 20px rgba(255, 76, 33, 0.2);
}

.n8n-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a24;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 1.2rem;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-50% - 0.75rem));
  }

  100% {
    transform: translateX(0);
  }
}

/* Reverted n8n features */