/* ============================================
   FIXSUR - Design System & Styles
   Premium Dark Theme | IT Services Landing
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --color-primary: #FF6B00;
  --color-primary-light: #FF8533;
  --color-primary-dark: #CC5500;
  --color-accent: #FFB800;
  --color-accent-light: #FFC633;
  --color-accent-dark: #CC9300;

  /* Backgrounds */
  --bg-dark: #0a0a1a;
  --bg-dark-2: #0f1629;
  --bg-dark-3: #141b2d;
  --bg-card: rgba(15, 22, 41, 0.6);
  --bg-card-hover: rgba(20, 27, 45, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-border: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-white: #FFFFFF;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dark: #64748B;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B00, #FFB800);
  --gradient-bg: linear-gradient(180deg, #0a0a1a 0%, #0f1629 50%, #0a0a1a 100%);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
  --gradient-card: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 184, 0, 0.05));

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

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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: 3.5rem;

  /* Borders */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.15);
  --shadow-glow-accent: 0 0 30px rgba(255, 184, 0, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(255, 107, 0, 0.15);

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

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

a:hover {
  color: var(--color-accent);
}

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

ul,
ol {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 1rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45);
  color: var(--bg-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid var(--bg-glass-border);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 107, 0, 0.05);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-lg);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-glass-border);
  padding: 0.6rem 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.navbar-logo {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-tagline {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 1px solid var(--bg-glass-border);
  padding-left: 0.6rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar-nav a {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.navbar-nav a:hover {
  color: var(--text-white);
}

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

.navbar-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.navbar-phone svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}

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

.hero-glow-1 {
  top: -200px;
  right: -100px;
  background: var(--color-primary);
  opacity: 0.12;
}

.hero-glow-2 {
  bottom: -200px;
  left: -100px;
  background: var(--color-accent);
  opacity: 0.08;
}

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

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  animation: fadeInDown 0.8s ease;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  margin-top: 0.2rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease 0.5s both;
}

.hero-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 420px;
}

.hero-visual-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-visual-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.hero-visual-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-white);
}

.hero-visual-subtitle {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.hero-visual-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  transition: all var(--transition-base);
}

.metric-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  background: rgba(255, 107, 0, 0.03);
}

.metric-value {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-primary);
}

.metric-label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.floating-badge {
  position: absolute;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-white);
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}

.floating-badge-1 {
  top: 0;
  right: -20px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 2s;
}

.floating-badge svg {
  width: 18px;
  height: 18px;
}

.floating-badge .check-icon {
  color: var(--color-accent);
}

.floating-badge .shield-icon {
  color: var(--color-primary);
}

/* ---------- Values Section ---------- */
.values {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  background: rgba(255, 107, 0, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.value-card:nth-child(2) .value-icon {
  background: rgba(255, 184, 0, 0.08);
}

.value-card:nth-child(2) .value-icon svg {
  color: var(--color-accent);
}

.value-card:nth-child(3) .value-icon {
  background: rgba(99, 102, 241, 0.08);
}

.value-card:nth-child(3) .value-icon svg {
  color: #818CF8;
}

.value-card:nth-child(4) .value-icon {
  background: rgba(244, 114, 182, 0.08);
}

.value-card:nth-child(4) .value-icon svg {
  color: #F472B6;
}

.value-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.value-description {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: rgba(255, 107, 0, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
}

.service-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
}

.service-description {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition-base);
}

.service-link:hover {
  gap: 0.6rem;
  color: var(--color-accent);
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ---------- Industries Section ---------- */
.industries {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.industry-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: default;
}

.industry-item:hover {
  border-color: rgba(255, 107, 0, 0.2);
  background: rgba(255, 107, 0, 0.04);
  transform: translateX(4px);
}

.industry-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255, 107, 0, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.industry-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-light);
}

/* ---------- Process Section ---------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0.2;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--bg-dark);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.process-step:hover .process-number {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
}

.process-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
}

.process-description {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- About Section ---------- */
.about {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-content h2 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-content p {
  font-size: var(--font-size-base);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--space-sm);
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
}

.about-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  min-width: 20px;
}

.about-highlight span {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-light);
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.about-stat-card:hover {
  border-color: rgba(255, 107, 0, 0.15);
  transform: translateY(-3px);
}

.about-stat-value {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ---------- Contact Section ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-info h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.contact-item-label {
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-white);
}

.contact-item-value a {
  color: var(--text-white);
}

.contact-item-value a:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: blur(20px);
}

.contact-form-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: var(--bg-dark-3);
  color: var(--text-light);
}

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

.contact-form-card .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  background: var(--bg-dark-2);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item[open] {
  border-color: var(--color-primary);
  background: rgba(255, 107, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-white);
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  transition: transform var(--transition-base);
  color: var(--color-primary);
  opacity: 0.7;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: var(--font-size-base);
  animation: fadeIn 0.4s ease-out;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--bg-glass-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand .navbar-logo {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-xs);
}

.footer-brand p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--color-primary);
  background: rgba(255, 107, 0, 0.08);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-social a:hover svg {
  color: var(--color-primary);
}

.footer-column h4 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

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

.footer-column ul li a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--bg-glass-border);
  font-size: var(--font-size-sm);
  color: var(--text-dark);
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  animation: fadeInUp 1s ease 1s both;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.whatsapp-pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  animation: pulse 2s ease-in-out infinite;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.5, 0, 0, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger-children .reveal:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(7) {
  transition-delay: 0.35s;
}

.stagger-children .reveal:nth-child(8) {
  transition-delay: 0.4s;
}

.stagger-children .reveal:nth-child(9) {
  transition-delay: 0.45s;
}

.stagger-children .reveal:nth-child(10) {
  transition-delay: 0.5s;
}

.stagger-children .reveal:nth-child(11) {
  transition-delay: 0.55s;
}

.stagger-children .reveal:nth-child(12) {
  transition-delay: 0.6s;
}

/* ---------- Keyframe Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradient-shift {

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

  50% {
    background-position: 100% 50%;
  }
}

/* ---------- Team Section ---------- */
.team-section {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  text-align: center;
}

.team-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.06) 0%, rgba(255, 184, 0, 0.04) 100%);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(99, 102, 241, 0.06) 100%);
}

.team-photo-placeholder span {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.team-card:hover .team-photo-placeholder span {
  opacity: 0.7;
}

.team-info {
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.team-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--bg-glass-border);
}

.team-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.team-social a:hover {
  color: var(--color-primary);
  background: rgba(255, 107, 0, 0.08);
}

.team-social svg {
  width: 16px;
  height: 16px;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(255, 107, 0, 0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: white;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-white);
  font-size: var(--font-size-sm);
}

.testimonial-role {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------- Certifications Section ---------- */
.certifications-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  min-width: 140px;
}

.certification-item:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.certification-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
}

.certification-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}

/* ---------- Providers Section ---------- */
.providers-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.provider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-sm);
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 90px;
}

.provider-item:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  background: rgba(255, 107, 0, 0.04);
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.provider-logo img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0.7) grayscale(0.5);
  transition: filter var(--transition-base);
}

.provider-item:hover .provider-logo img {
  filter: brightness(1) grayscale(0);
}

.provider-placeholder {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: color var(--transition-base);
}

.provider-item:hover .provider-placeholder {
  color: var(--color-accent);
}

/* ---------- Clients Marquee Section ---------- */
.clients-section {
  padding-top: 0;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.clients-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark) 0%, transparent 100%);
}

.clients-marquee {
  overflow: hidden;
  width: 100%;
}

.clients-marquee-track {
  display: flex;
  gap: var(--space-lg);
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.clients-marquee:hover .clients-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

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

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: var(--space-lg) var(--space-2xl);
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
  min-width: 220px;
  min-height: 120px;
}

.client-logo-item:hover {
  border-color: rgba(255, 184, 0, 0.3);
  background: rgba(255, 184, 0, 0.04);
  transform: scale(1.05);
}

.client-logo-item img {
  max-height: 70px;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0.8) grayscale(1) invert(1);
  transition: all var(--transition-base);
  opacity: 0.7;
}

.client-logo-item:hover img {
  opacity: 1;
  filter: brightness(2) grayscale(1) invert(1);
}

.client-placeholder {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  transition: color var(--transition-base);
}

.client-logo-item:hover .client-placeholder {
  color: var(--color-accent);
}

/* ---------- Guarantees Section ---------- */
.guarantees-section {
  padding-top: 0;
  padding-bottom: var(--space-2xl);
}

.guarantees-banner {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 184, 0, 0.06) 100%);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.guarantees-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.guarantees-title {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
}

.guarantee-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guarantee-text strong {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-white);
}

.guarantee-text span {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255, 107, 0, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bg-dark);
  font-size: var(--font-size-md);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-white);
  font-size: var(--font-size-sm);
}

.testimonial-role {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ---------- Certifications ---------- */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.certification-item {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  text-align: center;
}

.certification-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  border-color: rgba(255, 107, 0, 0.3);
}

.certification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.certification-name {
  font-weight: 600;
  color: var(--text-white);
  font-size: var(--font-size-sm);
}

/* ---------- Providers ---------- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}

.provider-item {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  height: 100px;
}

.provider-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 107, 0, 0.3);
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.provider-placeholder {
  font-weight: 700;
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.provider-item:hover .provider-placeholder {
  color: var(--text-white);
}

/* ---------- Clients Marquee ---------- */
.clients-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: var(--space-lg) 0;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

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

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

.clients-marquee {
  display: flex;
  width: fit-content;
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  animation: scroll 30s linear infinite;
  padding-right: var(--space-xl);
}

.clients-marquee:hover .clients-marquee-track {
  animation-play-state: paused;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 150px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: all var(--transition-base);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all var(--transition-base);
}

.client-logo-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 0, 0.3);
}

.client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

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

  100% {
    transform: translateX(calc(-50% - (var(--space-xl)/2)));
  }
}

/* ---------- Guarantees ---------- */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255, 107, 0, 0.3);
}

.team-photo {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: var(--bg-dark-3);
}

.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo-img {
  transform: scale(1.05);
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.1);
}

.team-info {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-name {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.team-social {
  display: flex;
  gap: var(--space-sm);
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.team-social a svg {
  width: 18px;
  height: 18px;
}

.team-social a:hover {
  background: var(--color-primary);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

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

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

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

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.5rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    z-index: 999;
  }

  .navbar-nav.active {
    display: flex;
  }

  .navbar-nav a {
    font-size: var(--font-size-xl);
  }

  .hamburger {
    display: flex;
  }

  .navbar-cta .btn {
    display: none;
  }

  .navbar-phone {
    display: none;
  }

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

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

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

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

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

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

  .about-stat-card:nth-child(2),
  .about-stat-card:nth-child(3) {
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .hero-stats {
    gap: var(--space-md);
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 1rem;
    border-radius: 50%;
  }

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

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

  .guarantees-banner {
    padding: var(--space-lg);
  }

  .providers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

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

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

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

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