/* ===== CSS Variables / Design System ===== */
:root {
  /* Colors */
  --background: #fcfcfc;
  --foreground: #1a1f2e;
  --card: #ffffff;
  --card-foreground: #1a1f2e;
  --primary: #c7252c;
  --primary-foreground: #ffffff;
  --secondary: #f4f5f7;
  --secondary-foreground: #1a1f2e;
  --muted: #f4f5f7;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --success-green: #22c55e;
  --trust-blue: #0284c7;
  --charcoal: #252b3b;

  /* Typography */
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 6rem 0;
  --section-padding-mobile: 4rem 0;

  /* Effects */
  --shadow-soft: 0 4px 20px -4px rgba(26, 31, 46, 0.08);
  --shadow-elevated: 0 12px 40px -8px rgba(26, 31, 46, 0.12);
  --shadow-glow: 0 0 60px rgba(199, 37, 44, 0.15);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1a1f2e 0%, #252b3b 50%, #3d2a2c 100%);
  --gradient-subtle: linear-gradient(180deg, #fcfcfc 0%, #f4f5f7 100%);
  --gradient-security: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(2, 132, 199, 0.1) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

/* ===== Layout ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile);
  }
}

/* ===== Icons ===== */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-shield {
  color: var(--success-green);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #a91f25;
  box-shadow: var(--shadow-elevated);
  transform: translateY(-1px);
}

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

.btn-full {
  width: 100%;
}

.btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
  background: #a91f25;
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  /*transition: all 0.5s ease;*/
  background: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}

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

.logo-img {
  height: 57px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  /*color: rgba(255, 255, 255, 0.8);*/
  color: var(--foreground);
  transition: color 0.3s ease;
}

.header.scrolled .nav-link {
  color: var(--foreground);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.soc-badge-small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.soc-badge-small .icon-shield {
  width: 1rem;
  height: 1rem;
}

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}

.mobile-menu-btn:hover {
  background: var(--accent);
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

.header:not(.scrolled) .mobile-menu-btn svg {
  color: white;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
}

.mobile-menu.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.mobile-nav {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  color: var(--foreground);
}

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

.mobile-nav-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.mobile-nav-footer .soc-badge-small {
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blob 20s ease-in-out infinite;
}

.blob-1 {
  top: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(199, 37, 44, 0.2);
}

.blob-2 {
  top: 50%;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(2, 132, 199, 0.1);
  animation-delay: 0.4s;
}

.blob-3 {
  bottom: 5rem;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(199, 37, 44, 0.1);
  animation-delay: 0.8s;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 10px) scale(1.02); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 0 4rem;
  max-width: 64rem;
  margin: 0 auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  margin-bottom: 2rem;
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-sub {
  color: rgba(255, 255, 255, 0.8);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.hero-stat-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero, .btn-hero-outline {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header-left {
  text-align: left;
  margin: 0 0 4rem 0;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.section-title-light {
  color: white;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.section-description-left {
  text-align: left;
}

.section-description-light {
  color: rgba(255, 255, 255, 0.7);
}

.text-primary {
  color: var(--primary);
}

.text-green {
  color: var(--success-green);
}

/* ===== Platform Section ===== */
.section-platform {
  background: var(--gradient-subtle);
}

.section-blob {
  position: absolute;
  right: -8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: rgba(199, 37, 44, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(199, 37, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(199, 37, 44, 0.2);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
}

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

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

/* ===== Features Section ===== */
.section-features {
  background: var(--background);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.capability-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.capability-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.capability-card:hover {
  border-color: rgba(199, 37, 44, 0.3);
}

.capability-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.capability-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--gradient-security);
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.capability-title {
  font-size: 1.25rem;
  color: var(--foreground);
}

.capability-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.capability-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--success-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

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

/* ===== Security Section ===== */
.section-security {
  background: var(--gradient-hero);
  position: relative;
}

.security-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.security-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.security-blob-1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(34, 197, 94, 0.1);
}

.security-blob-2 {
  bottom: 0;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(2, 132, 199, 0.1);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.5rem;
}

.security-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.security-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.security-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.security-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.security-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--success-green);
}

.security-card-title {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.75rem;
}

.security-card-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.soc-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.soc-badge-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.soc-badge-text {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--charcoal);
}

.soc-badge-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
}

.soc-badge-info-title {
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.soc-badge-info-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

  .soc-badge-large {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== AI Section ===== */
.section-ai {
  background: linear-gradient(to bottom right, var(--background), rgba(244, 245, 247, 0.5), var(--background));
  position: relative;
}

.ai-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ai-blob-1 {
  top: 25%;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(199, 37, 44, 0.05);
}

.ai-blob-2 {
  bottom: 25%;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(2, 132, 199, 0.05);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.ai-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(199, 37, 44, 0.2), rgba(2, 132, 199, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s ease-in-out infinite;
}

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

.ai-brain-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
}

.ai-orbit {
  position: absolute;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.ai-orbit svg {
  width: 1.5rem;
  height: 1.5rem;
}

.ai-orbit-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.ai-orbit-1 svg { color: var(--primary); }

.ai-orbit-2 {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.ai-orbit-2 svg { color: var(--success-green); }

.ai-orbit-3 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.ai-orbit-3 svg { color: var(--trust-blue); }

.ai-orbit-4 {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

.ai-orbit-4 svg { color: var(--primary); }

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

.ai-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--primary);
}

.ai-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ai-feature {
  display: flex;
  gap: 0.75rem;
}

.ai-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: rgba(199, 37, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.ai-feature-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.ai-feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ai-visual {
    order: -1;
    max-width: 300px;
  }

  .ai-features {
    grid-template-columns: 1fr;
  }
}

/* ===== Customers Section ===== */
.section-customers {
  background: var(--background);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  margin-bottom: 5rem;
}

.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.customers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.customers-content .section-description {
  margin-bottom: 2rem;
}

.customers-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.customers-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(244, 245, 247, 0.5);
}

.customers-highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: rgba(199, 37, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.customers-highlight-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.customers-highlight-icon-green {
  background: rgba(34, 197, 94, 0.1);
}

.customers-highlight-icon-green svg {
  color: var(--success-green);
}

.customers-highlight-title {
  font-weight: 600;
  color: var(--foreground);
}

.customers-highlight-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.customer-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.customer-type {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.customer-type.visible {
  opacity: 1;
  transform: translateY(0);
}

.customer-type:hover {
  border-color: rgba(199, 37, 44, 0.3);
  box-shadow: var(--shadow-soft);
}

.customer-type svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.customer-type:hover svg {
  transform: scale(1.1);
}

.customer-type h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.customer-type p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

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

  .customers-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .customer-types {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact Section ===== */
.section-contact {
  background: rgba(244, 245, 247, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(199, 37, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

a.contact-item:hover .contact-item-icon {
  background: rgba(199, 37, 44, 0.2);
}

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

.contact-item-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-item-value {
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s ease;
}

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

.contact-form-wrapper {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
}

.contact-form-title {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--background);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(199, 37, 44, 0.1);
}

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

.form-group textarea {
  resize: none;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 6rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 320px;
}

.footer-soc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

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

  .footer-brand {
    grid-column: span 2;
  }
}

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

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

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

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
