/* =====================================================
   SMARTECH.TIENDA - Modern Tech Company Website
   Design System & Styles
   ===================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Colors */
  --primary: #0066ff;
  --primary-light: #3388ff;
  --primary-dark: #0044cc;
  --primary-glow: rgba(0, 102, 255, 0.4);
  --accent-purple: #7c3aed;
  --accent-cyan: #06b6d4;

  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.05);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);

  --border-light: rgba(255, 255, 255, 0.1);
  --border-lighter: rgba(255, 255, 255, 0.05);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  --gradient-glow: radial-gradient(
    ellipse at center,
    var(--primary-glow) 0%,
    transparent 70%
  );
  --gradient-dark: linear-gradient(
    180deg,
    var(--bg-dark) 0%,
    var(--bg-darker) 100%
  );

  /* Typography */
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;

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

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-glow: 0 0 40px var(--primary-glow);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

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

input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ==================== UTILITIES ==================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ... existing styles ... */

/* ==================== SERVICES SECTION ==================== */
.services {
  background: var(--gradient-dark);
}

/* ==================== ABOUT SECTION ==================== */
.about {
  background: var(--bg-dark);
}

/* ==================== PROCESS SECTION ==================== */
.process {
  background: var(--gradient-dark);
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
  background: var(--bg-dark);
}

/* ==================== DEMOS SECTION ==================== */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* ... demos styles ... */

#demos {
    background: var(--gradient-dark);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
  background: var(--bg-dark);
  overflow: hidden;
}

/* ==================== CTA SECTION ==================== */
.cta {
  padding: 80px 0;
  min-height: auto; /* CTA doesn't need 100vh */
}

/* ==================== CONTACT SECTION ==================== */
.contact {
  background: var(--gradient-dark);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-lighter);
  background: var(--bg-darker);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

/* ==================== GLASSMORPHISM ==================== */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  color: var(--primary-light);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow);
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.logo:hover .logo-image {
  transform: scale(1.1) rotate(5deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.nav-link {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.nav-link.active {
  background: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1101;
  position: relative;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* Hero Grid Background Pattern */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: var(--gradient-glow);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.1);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: titleAnimation 1s ease 0.1s forwards,
    titleGlow 3s ease-in-out 1.5s infinite;
  opacity: 0;
}

@keyframes titleAnimation {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  50% {
    opacity: 0.5;
    transform: translateY(-5px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.3),
      0 0 20px rgba(0, 102, 255, 0.2), 0 0 30px rgba(0, 102, 255, 0.1);
  }

  50% {
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5),
      0 0 30px rgba(0, 102, 255, 0.3), 0 0 40px rgba(0, 102, 255, 0.2),
      0 0 50px rgba(0, 102, 255, 0.1);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: subtitleAnimation 1.2s ease 0.4s forwards,
    subtitleGlow 4s ease-in-out 2s infinite;
  opacity: 0;
}

@keyframes subtitleAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }

  60% {
    opacity: 0.7;
    transform: translateY(-3px);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes subtitleGlow {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1),
      0 0 15px rgba(0, 102, 255, 0.15);
  }

  50% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2),
      0 0 25px rgba(0, 102, 255, 0.25), 0 0 35px rgba(0, 102, 255, 0.15);
  }
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 0.75rem;
}

/* Hero Mockup */
.hero-mockup {
  margin-top: 60px;
  position: relative;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.mockup-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.mockup-container:hover {
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 8px 60px rgba(0, 102, 255, 0.15);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) {
  background: #ff5f57;
}

.mockup-dot:nth-child(2) {
  background: #febc2e;
}

.mockup-dot:nth-child(3) {
  background: #28c840;
}

.mockup-content {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 20px;
  min-height: 300px;
}

.mockup-sidebar {
  background: var(--bg-darker);
  border-radius: var(--radius-md);
  padding: 16px;
}

.mockup-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.mockup-sidebar-item:hover {
  background: var(--bg-card);
}

.mockup-sidebar-icon {
  width: 24px;
  height: 24px;
  background: var(--bg-glass);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-main {
  background: var(--bg-darker);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-node {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  max-width: fit-content;
}

.mockup-node.secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}

.mockup-node.success {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.mockup-connector {
  width: 2px;
  height: 30px;
  background: var(--border-light);
  margin-left: 20px;
}

.mockup-panel {
  background: var(--bg-darker);
  border-radius: var(--radius-md);
  padding: 16px;
}

.mockup-panel-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mockup-panel-input {
  width: 100%;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Partners/Clients */
.hero-partners {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border-lighter);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.partners-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-logo:hover {
  opacity: 1;
}

/* ==================== SERVICES SECTION ==================== */
.services {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '< services />';
  position: absolute;
  top: 40px;
  right: 60px;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.85rem;
  color: rgba(0, 102, 255, 0.12);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  --glow-x: 50%;
  --glow-y: 50%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(0, 102, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.75rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==================== PROCESS SECTION ==================== */
.process {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '// workflow.process()';
  position: absolute;
  top: 40px;
  left: 60px;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.85rem;
  color: rgba(0, 102, 255, 0.12);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  position: relative;
}

.process-step {
  position: relative;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-lighter);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step:hover {
  background: var(--bg-card);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: inset 0 0 30px rgba(0, 102, 255, 0.05);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--bg-glass);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-light);
  margin: 0 auto 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 255, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.8);
}

.process-step:hover .step-number::after {
  opacity: 1;
  transform: scale(1);
  animation: stepPulse 2s ease infinite;
}

.process-step:hover .step-number {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.4);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  background: rgba(15, 25, 45, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 102, 255, 0.2);
  transition: all var(--transition-normal);
}

.portfolio-card:hover {
  border-color: rgba(0, 102, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.15);
  transform: translateY(-4px);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0%,
    rgba(100, 150, 220, 0.08) 100%
  );
  transition: all var(--transition-slow);
}

.portfolio-logo {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  transition: transform var(--transition-normal);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.95) 0%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.portfolio-card:hover .portfolio-image {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.08) 0%,
    rgba(100, 150, 220, 0.12) 100%
  );
}

.portfolio-card:hover .portfolio-logo {
  transform: scale(1.05);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
  background: var(--gradient-dark);
  overflow: hidden;
  position: relative;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 80px;
  left: 10%;
  font-size: 20rem;
  font-family: Georgia, serif;
  color: rgba(0, 102, 255, 0.03);
  pointer-events: none;
  line-height: 1;
}

.testimonials::after {
  content: '"';
  position: absolute;
  bottom: 0;
  right: 10%;
  font-size: 20rem;
  font-family: Georgia, serif;
  color: rgba(0, 102, 255, 0.03);
  pointer-events: none;
  line-height: 1;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: 48px;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

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

.testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--primary);
}

/* ==================== BLOG SECTION ==================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: transform var(--transition-normal);
}

.blog-card:hover .blog-image {
  transform: scale(1.02);
}

.blog-category {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--primary-light);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==================== CTA SECTION ==================== */
.cta {
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(135deg, #0066ff 0%, #7c3aed 50%, #06b6d4 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: ctaGlow 4s ease infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10%, 10%); }
  50% { transform: translate(-5%, 15%); }
  75% { transform: translate(15%, -5%); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: ctaBtnPulse 3s ease infinite;
}

@keyframes ctaBtnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2); }
}

.cta .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
  background: var(--bg-darker);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-info h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-info p {
  font-size: 1rem;
}

.contact-item-info a {
  color: var(--primary-light);
}

.contact-item-info a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 40px;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

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

.contact-form .btn {
  width: 100%;
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  /* Moved up to be above the n8n chatbot button */
  right: 24px;
  width: 56px;
  height: 56px;
  background: rgba(0, 102, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  z-index: 999;
  /* Below n8n chat widget to avoid overlap */
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  transition: all var(--transition-normal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: rgba(0, 102, 255, 1);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.5);
  transform: translateY(-4px);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

.scroll-to-top span {
  display: block;
  font-weight: bold;
  line-height: 1;
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
  min-height: 100vh;
  background: var(--bg-primary);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 102, 255, 0.2);
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
  list-style-type: disc;
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-section li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.legal-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--border-light);
  text-align: center;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 80px 0 32px;
  border-top: none;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.4), rgba(124, 58, 237, 0.3), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

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

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-lighter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes connectorPulse {
  0%, 100% {
    background: var(--border-light);
    box-shadow: none;
  }
  50% {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
  }
}

@keyframes nodeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes stepPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(0, 102, 255, 0.2);
  }
  50% {
    border-color: rgba(0, 102, 255, 0.5);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section title reveal animation */
.section-title {
  position: relative;
}

.section-title.revealed {
  animation: titleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ==================== DEMOS SECTION ==================== */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  --glow-x: 50%;
  --glow-y: 50%;
}

.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(0, 102, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

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

.demo-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(0, 102, 255, 0.15), 0 0 0 1px rgba(0, 102, 255, 0.1);
}

.demo-image {
  width: 100%;
  height: 200px;
  background: radial-gradient(circle at center, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

/* Code-themed background in demo cards */
.demo-image::after {
  content: '> npm run dev\A> Building...\A> Ready in 0.3s';
  white-space: pre;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.6rem;
  color: rgba(0, 102, 255, 0.08);
  pointer-events: none;
  line-height: 1.4;
}

.demo-icon {
  font-size: 5rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
}

.demo-card:hover .demo-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.5));
}

.demo-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.demo-category {
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 8px;
  display: block;
}

.demo-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    display: none;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 100px 40px 80px;
    border-radius: 0;
    backdrop-filter: blur(20px);
    z-index: 1100;
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 16px 32px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

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

  .about-stats {
    order: -1;
  }

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

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .mockup-content {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar,
  .mockup-panel {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

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

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

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

  .portfolio-card {
    aspect-ratio: 16/9;
  }

  .portfolio-image {
    padding: 24px;
  }

  .portfolio-overlay {
    padding: 24px;
  }

  .portfolio-logo {
    max-width: 65%;
    max-height: 65%;
  }

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

  .cta-card {
    padding: 48px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

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

  .testimonial-card {
    padding: 32px 16px;
  }

  .testimonial-quote {
    font-size: 1.125rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .glass-card {
    padding: 24px;
  }

  .scroll-to-top {
    bottom: 90px;
    /* Above n8n chatbot on mobile */
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .partners-logos {
    gap: 24px;
  }

  .partner-logo {
    font-size: 1rem;
  }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ==================== SELECTION ==================== */
::selection {
  background: var(--primary);
  color: white;
}
