/* ============================================
   DevForce Static Site - Main Stylesheet
   Compiled from Angular SCSS components
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (Variables)
   ============================================ */
:root {
  /* Primary Colors */
  --primary-cyan: #00d4ff;
  --primary-blue: #0099ff;
  --primary-orange: #ff6b35;

  /* Background Colors */
  --bg-dark: #0a0e27;
  --bg-darker: #050814;
  --bg-dark-soft: #0d1229;
  --bg-soft: #12172e;
  --bg-medium: #151b35;
  --bg-light-dark: #1a2040;
  --bg-card: rgba(20, 25, 45, 0.6);
  --bg-card-hover: rgba(30, 35, 55, 0.8);
  --bg-secondary: #0d1229;
  --bg-primary: #0a0e27;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-muted: #8892a6;

  /* Accent Colors */
  --accent-cyan: #00ffff;
  --accent-purple: #7b61ff;
  --accent-pink: #ff0080;
  --primary: #00d4ff;
  --primary-light: rgba(0, 212, 255, 0.5);
  --primary-rgb: 0, 212, 255;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  --gradient-hero: linear-gradient(135deg, #050814 0%, #0a0e27 50%, rgba(0, 212, 255, 0.1) 100%);
  --gradient-card: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(123, 97, 255, 0.05) 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
  --shadow-glow-hover: 0 0 30px rgba(0, 212, 255, 0.5);

  /* Typography */
  --font-primary: 'Source Sans 3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Exo 2', 'Montserrat', sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;

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

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* Border */
  --border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. GLOBAL RESET AND BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: var(--font-primary);
}

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

body, p, a, button, input, textarea, select, div, span {
  font-family: var(--font-primary);
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

@media (max-width: 768px) {
  h1 { font-size: var(--font-size-4xl); }
  h2 { font-size: var(--font-size-3xl); }
  h3 { font-size: var(--font-size-2xl); }
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

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

a:hover {
  color: #33ddff;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-base);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  outline: none;
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(180deg, #5FC1E0 0%, #3FA5C8 30%, #2A7D9F 65%, #1E5872 100%);
  color: var(--text-primary);
  position: relative;
  border: none;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.2),
    inset 0 1px 1px rgba(95, 193, 224, 0.4),
    inset 1px 0 0 rgba(47, 125, 159, 0.3),
    inset -1px 0 0 rgba(47, 125, 159, 0.3),
    inset 0 -1px 0 rgba(15, 40, 55, 0.6),
    0 4px 8px rgba(0, 0, 0, 0.25);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  pointer-events: none;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #6FCFEB 0%, #4FB5D5 30%, #358DAD 65%, #286880 100%);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.35),
    inset 0 1px 1px rgba(111, 207, 235, 0.5),
    inset 1px 0 0 rgba(53, 141, 173, 0.4),
    inset -1px 0 0 rgba(53, 141, 173, 0.4),
    inset 0 -1px 0 rgba(20, 50, 65, 0.7),
    0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.25),
    inset 0 2px 5px rgba(0, 0, 0, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(10, 14, 39, 0.3);
  color: #5FC1E0;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-md);
  padding: 2px;
  background: linear-gradient(180deg, #5FC1E0 0%, #3FA5C8 30%, #2A7D9F 65%, #1E5872 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(95, 193, 224, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  pointer-events: none;
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(10, 14, 39, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-orange {
  background: linear-gradient(180deg, #FFA451 0%, #E88D42 30%, #C76835 65%, #A84F2A 100%);
  color: var(--text-primary) !important;
  position: relative;
  border: none;
  box-shadow: 0 0 12px rgba(255, 164, 81, 0.2),
    inset 0 1px 1px rgba(255, 164, 81, 0.4),
    inset 1px 0 0 rgba(199, 104, 53, 0.3),
    inset -1px 0 0 rgba(199, 104, 53, 0.3),
    inset 0 -1px 0 rgba(80, 38, 20, 0.6),
    0 4px 8px rgba(0, 0, 0, 0.25);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.btn-orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  pointer-events: none;
}

.btn-orange:hover:not(:disabled) {
  background: linear-gradient(180deg, #FFB361 0%, #F59D52 30%, #D57845 65%, #B65F3A 100%);
  color: var(--text-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 164, 81, 0.35),
    inset 0 1px 1px rgba(255, 179, 97, 0.5),
    inset 1px 0 0 rgba(213, 120, 69, 0.4),
    inset -1px 0 0 rgba(213, 120, 69, 0.4),
    inset 0 -1px 0 rgba(90, 45, 25, 0.7),
    0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-orange:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(255, 164, 81, 0.25),
    inset 0 2px 5px rgba(0, 0, 0, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ============================================
   5. LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-lg) 0;
  }
}

/* ============================================
   6. SECTION TITLE
   ============================================ */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title .label {
  color: var(--primary-cyan);
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.section-title h2 {
  margin-bottom: var(--spacing-sm);
}

.section-title .underline {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: var(--spacing-sm) auto;
  border-radius: var(--radius-sm);
}

/* ============================================
   7. CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all var(--transition-base);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   8. GRID SYSTEM
   ============================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--spacing-sm));
}

.col {
  flex: 1;
  padding: 0 var(--spacing-sm);
}

@media (max-width: 768px) {
  .col {
    flex: 100%;
    margin-bottom: var(--spacing-md);
  }
}

/* ============================================
   9. UTILITIES
   ============================================ */
.text-center { text-align: center; }

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

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.bg-pattern {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(123, 97, 255, 0.05) 0%, transparent 50%);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary-cyan);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: #33ddff;
}

/* ============================================
   11. HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  padding: 1rem 0;
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform var(--transition-fast);
  z-index: calc(var(--z-fixed) + 1);
}

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

.logo:hover .logo-icon svg {
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.logo .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo .logo-text {
  background: url('../images/logo-bar.png') no-repeat;
  font-family: var(--font-heading);
  height: 38px;
  width: 275px;
  background-size: cover;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-base);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: var(--font-size-base);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--primary-cyan);
}

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

@media (max-width: 1024px) {
  .nav-link {
    font-size: var(--font-size-lg);
    padding: 0.75rem 0;
  }
}

.nav-cta {
  /* Desktop styles */
}

@media (max-width: 1024px) {
  .nav-cta {
    margin-top: 1rem;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: calc(var(--z-fixed) + 1);
}

.search-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.search-btn:hover {
  color: var(--primary-cyan);
}

@media (max-width: 768px) {
  .search-btn {
    display: none;
  }
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--primary-cyan);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-toggle:hover .hamburger-line {
  background: #33ddff;
}

/* ============================================
   12. HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg-darker);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-cyan), transparent);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.gradient-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-purple), transparent);
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

.hero-label {
  display: inline-block;
  color: var(--primary-cyan);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin: var(--spacing-md) 0;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

.hero-title .line {
  display: block;
  animation: slideIn 0.8s ease forwards;
  opacity: 0;
}

.hero-title .line:nth-child(1) { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) { animation-delay: 0.6s; }
.hero-title .line:nth-child(3) { animation-delay: 0.8s; }

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

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  max-width: 600px;
}

@media (max-width: 480px) {
  .hero-description {
    font-size: var(--font-size-base);
  }
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

.hero-stats {
  display: flex;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
  .hero-stats {
    gap: var(--spacing-sm);
    flex-wrap: wrap;
  }
}

.hero-stats .stat {
  flex: 1;
  min-width: 100px;
}

.hero-stats .stat h3 {
  font-size: var(--font-size-3xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
  .hero-stats .stat h3 {
    font-size: var(--font-size-2xl);
  }
}

.hero-stats .stat p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 480px) {
  .hero-stats .stat p {
    font-size: var(--font-size-xs);
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 1s ease forwards;
  animation-delay: 0.5s;
}

@media (max-width: 1024px) {
  .hero-visual {
    order: -1;
  }
}

.hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  .hero-card {
    padding: var(--spacing-md);
  }
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg 340deg, var(--primary-cyan) 350deg 360deg);
  animation: rotate 4s linear infinite;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  display: grid;
}

.devforce-logo {
  margin-bottom: var(--spacing-md);
  background: url('../images/logo.png') center/cover no-repeat;
  width: 18.75rem;
  height: 18.75rem;
}

@media (max-width: 480px) {
  .devforce-logo {
    width: 15rem;
    height: 15rem;
  }
}

.devforce-logo .hex-outline {
  animation: pulse 3s ease-in-out infinite;
}

.card-content h3 {
  font-size: var(--font-size-2xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.feature-icons {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .feature-icons {
    gap: var(--spacing-sm);
  }
}

.feature-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--spacing-sm);
  background: rgba(0, 212, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all var(--transition-base);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  min-width: 100px;
  flex: 1;
}

@media (max-width: 480px) {
  .feature-icon {
    min-width: 80px;
    padding: 0.5rem;
  }
}

.feature-icon svg {
  color: var(--primary-cyan);
}

.feature-icon span {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 480px) {
  .feature-icon span {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

.feature-icon:hover {
  transform: translateY(-5px);
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-cyan);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 1.5s;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--primary-cyan);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator .wheel {
  width: 3px;
  height: 8px;
  background: var(--primary-cyan);
  border-radius: 2px;
  animation: scroll 1.5s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   13. HOW WE WORK SECTION
   ============================================ */
.how-we-work {
  padding: 100px 0;
  background: linear-gradient(135deg, #12172e 0%, #1a2040 100%);
  position: relative;
  overflow: hidden;
}

.how-we-work::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 174, 239, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 111, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.how-we-work .container {
  position: relative;
  z-index: 1;
}

.how-we-work .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.how-we-work .section-title .label {
  display: inline-block;
  color: #00aeef;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.how-we-work .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.how-we-work .section-title .underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00aeef 0%, #ff6f00 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.how-we-work .section-title p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.step-card {
  position: relative;
}

.step-card > div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.step-card > div:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 174, 239, 0.3);
  box-shadow: 0 20px 40px rgba(0, 174, 239, 0.1);
}

.step-card > div:hover .step-number {
  background: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(0, 174, 239, 0.1);
  border: 2px solid #00aeef;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00aeef;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.step-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  color: rgba(0, 174, 239, 0.3);
  z-index: 2;
}

@media (max-width: 1024px) {
  .step-connector {
    display: none;
  }
}

.step-connector svg {
  filter: drop-shadow(0 0 8px rgba(0, 174, 239, 0.2));
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(26, 32, 64, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: rgba(30, 38, 70, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 174, 239, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: var(--gradient-primary);
}

.service-card:hover .service-icon svg {
  color: var(--bg-dark);
}

.service-card:hover .btn-learn-more {
  background: var(--gradient-primary);
  color: var(--text-primary);
  transform: translateX(5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-base);
}

.service-icon svg {
  color: var(--primary-cyan);
  transition: color var(--transition-base);
}

.service-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin-bottom: 0.5rem;
}

.feature-list li svg {
  color: var(--primary-cyan);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.btn-learn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--primary-cyan);
  color: var(--primary-cyan);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: auto;
  text-decoration: none;
}

.btn-learn-more svg {
  transition: transform var(--transition-fast);
}

.btn-learn-more:hover svg {
  transform: translateX(3px);
}

/* ============================================
   15. ABOUT SECTION
   ============================================ */
.about {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-medium) 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 174, 239, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 480px) {
  .image-placeholder {
    max-width: 300px;
  }
}

.image-placeholder svg,
.image-placeholder img {
  width: 100%;
  height: auto;
}

.about-text .label {
  color: var(--primary-cyan);
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xs);
  display: block;
}

@media (max-width: 480px) {
  .about-text .label {
    font-size: var(--font-size-xs);
    letter-spacing: 1px;
  }
}

.about-text h2 {
  margin-bottom: var(--spacing-md);
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: var(--font-size-3xl);
  }
}

.about-text .lead {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

@media (max-width: 480px) {
  .about-text .lead {
    font-size: var(--font-size-base);
    line-height: 1.6;
  }
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.feature-grid {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.feature-item > div {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
  height: 100%;
}

.feature-item .feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0, 212, 255, 0.1);
  border: none;
  border-radius: var(--radius-md);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex: none;
}

@media (max-width: 480px) {
  .feature-item .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

.feature-item .feature-icon svg {
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content h4 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

@media (max-width: 480px) {
  .feature-content h4 {
    font-size: var(--font-size-base);
  }
}

.feature-content p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .feature-content p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }
}

.about-actions {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

@media (max-width: 480px) {
  .about-actions {
    flex-direction: column;
  }

  .about-actions .btn {
    width: 100%;
  }
}

/* ============================================
   16. SOCIAL PROOF SECTION
   ============================================ */
.social-proof {
  padding: 80px 0;
  background: #0d1229;
  position: relative;
}

.social-proof .container {
  max-width: 1200px;
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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

.metric-card > div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.metric-card > div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 174, 239, 0.3);
  box-shadow: 0 12px 24px rgba(0, 174, 239, 0.12);
}

.metric-card > div:hover .metric-icon {
  transform: scale(1.1);
  color: #00aeef;
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #00aeef;
  transition: all 0.3s ease;
}

.metric-icon svg {
  filter: drop-shadow(0 0 8px rgba(0, 174, 239, 0.3));
  display: inline-flex;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.trust-signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .trust-signals {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.trust-card > div {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid #00aeef;
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.trust-card > div:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.15);
}

.quote-icon {
  color: rgba(0, 174, 239, 0.2);
  margin-bottom: 16px;
}

.quote-icon svg {
  display: inline-flex;
}

.trust-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
  font-style: italic;
}

.trust-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-author strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-author span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ============================================
   17. PROJECTS SECTION
   ============================================ */
.projects {
  background: var(--bg-dark);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.project-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.project-card:hover {
  transform: translateY(-5px);
}

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

.project-image {
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-info {
  padding: var(--spacing-md);
}

.project-category {
  font-size: var(--font-size-xs);
  color: var(--primary-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-info h3 {
  margin-top: 0.5rem;
  font-size: var(--font-size-lg);
}

/* ============================================
   18. FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #151b35 0%, #1a2040 50%, #12172e 100%);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-background .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.2;
  animation: floatCta 20s ease-in-out infinite;
}

.cta-background .gradient-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00aeef 0%, transparent 70%);
  top: -250px;
  left: -100px;
  animation-delay: 0s;
}

.cta-background .gradient-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff6f00 0%, transparent 70%);
  bottom: -200px;
  right: -50px;
  animation-delay: -10s;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.final-cta .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-content {
  text-align: center;
  margin-bottom: 60px;
}

.cta-text {
  margin-bottom: 40px;
}

.cta-text h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #00aeef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .cta-text h2 {
    font-size: 2rem;
  }
}

.cta-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cta-text p {
    font-size: 1.05rem;
  }
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-large {
  font-size: 1.125rem;
  padding: 18px 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 174, 239, 0.25);
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0, 174, 239, 0.35);
}

.btn-large svg {
  transition: transform 0.3s ease;
}

.btn-large:hover svg {
  transform: translateX(4px);
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-note::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
  animation: pulseGreen 2s ease-in-out infinite;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .cta-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.cta-features .feature-item svg {
  color: #00aeef;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.cta-features .feature-item span {
  white-space: nowrap;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 700px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  width: 100%;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all var(--transition-fast);
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-cyan);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
  font-weight: 600;
  cursor: pointer;
}

@media (min-width: 480px) {
  .btn-submit {
    width: auto;
    align-self: center;
    min-width: 200px;
  }
}

.btn-submit.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form.is-hidden {
  display: none;
}

.form-message {
  text-align: center;
  font-size: var(--font-size-sm);
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: opacity 0.4s ease;
}

.form-message.is-fading {
  opacity: 0;
}

.form-message--success {
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.form-message--error {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.contact-form .cta-note {
  text-align: center;
  justify-content: center;
}

/* ============================================
   19. FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  padding: var(--spacing-xxl) 0 var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.footer-column h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--primary-cyan);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--primary-cyan);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.contact-info li svg {
  color: var(--primary-cyan);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-cyan);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  margin: 0;
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.faq-section .container {
  max-width: 900px;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-section .section-title .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.faq-section .section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

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

.faq-section .section-title .underline {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item.expanded {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-question:hover h3 {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-answer ul {
  padding: 0 1.5rem 1.5rem 3rem;
  margin: 0;
  list-style: disc;
}

.faq-answer ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.faq-answer ul li:last-child {
  margin-bottom: 0;
}

.faq-item.expanded .faq-answer {
  max-height: 500px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-question {
    padding: 1.25rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer ul {
    padding: 0 1.25rem 1.25rem 2.5rem;
  }

  .faq-answer ul li {
    font-size: 0.95rem;
  }
}

/* ============================================
   21. SERVICE PAGES
   ============================================ */
.service-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-darker);
}

@media (max-width: 768px) {
  .service-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
}

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

.service-label {
  display: inline-block;
  color: var(--primary-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.service-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin: var(--spacing-md) 0;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.service-hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

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

.service-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-medium) 100%);
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 174, 239, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

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

.service-section.bg-dark {
  background: var(--bg-dark-soft);
}

.service-section.bg-dark::before {
  display: none;
}

@media (max-width: 768px) {
  .service-section {
    padding: var(--spacing-xl) 0;
  }
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.problem-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.problem-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.problem-card h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.problem-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Solution Grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.solution-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.solution-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.solution-icon {
  color: var(--primary-cyan);
  margin-bottom: var(--spacing-md);
}

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.solution-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.audience-card {
  display: flex;
  gap: var(--spacing-md);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.audience-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 212, 255, 0.3);
}

.audience-card svg {
  color: var(--primary-cyan);
  flex-shrink: 0;
}

.audience-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: var(--spacing-xl);
}

.benefit-item {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.benefit-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.benefit-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-md) var(--spacing-lg);
  align-items: start;
}

.process-step .step-number {
  grid-column: 1;
  grid-row: 1 / 3;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
  line-height: 1;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.process-step h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.25rem;
  margin: 0;
  align-self: center;
}

.process-step p {
  grid-column: 2;
  grid-row: 2;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process-step {
    gap: var(--spacing-sm) var(--spacing-md);
  }

  .process-step .step-number {
    width: 50px;
    font-size: 2rem;
  }

  .process-step h3 {
    font-size: 1.125rem;
  }
}

/* Service CTA */
.service-cta {
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-medium) 0%, var(--bg-light-dark) 50%, var(--bg-soft) 100%);
}

.service-cta .cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.service-cta .cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
}

.service-cta .cta-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.service-cta .cta-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.service-cta .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.service-cta .cta-features .feature-item svg {
  color: var(--primary-cyan);
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

@keyframes floatCta {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes pulseGreen {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.95);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 0;
  }
}

/* ============================================
   23. SCROLL REVEAL (DATA ATTRIBUTES)
   ============================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="fade-up"] {
  transform: translateY(20px);
}

[data-reveal="fade-in"] {
  transform: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) !important;
}
