/* ============================================
   MODERN PROFESSIONAL STYLES
   Clean, minimal, sophisticated
   ============================================ */

/* ============================================
   HERO MINIMAL
   ============================================ */

.hero-minimal {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 6rem 0 7rem;
  overflow: hidden;
}

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

.hero-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }

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

.hero-minimal::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* Hero Split Layout */
.hero-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-minimal-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-float-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(0, 212, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin-bottom: 2rem;
}

.hero-minimal-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-minimal-subtitle {
  font-size: 1.25rem;
  color: #71717a;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: #fff;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-hero-primary:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
  color: #0a0a0a;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1rem;
  color: #a1a1aa;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-hero-ghost:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .hero-minimal {
    padding: 10rem 0 12rem;
  }

  .hero-split {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-minimal-content {
    flex: 1;
  }

  .hero-image-wrapper {
    flex: 0 0 45%;
    max-width: 500px;
  }

  .hero-minimal-title {
    font-size: 4.5rem;
  }

  .hero-minimal-subtitle {
    font-size: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .hero-minimal-title {
    font-size: 5.5rem;
  }

  .hero-image-wrapper {
    max-width: 550px;
  }
}

/* ============================================
   CAPABILITIES
   ============================================ */

.capabilities {
  padding: 5rem 0;
  background: #fafafa;
}

.cap-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cap-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 0.75rem;
}

.cap-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.cap-card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.cap-card:hover {
  border-color: #d4d4d8;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.cap-card-accent {
  background: #0a0a0a;
  border-color: #0a0a0a;
}

.cap-card-accent .cap-name {
  color: #fff;
}

.cap-card-accent .cap-desc {
  color: #71717a;
}

/* Capability Card Visuals */
.cap-card-visual {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cap-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.cap-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cap-card-visual:hover .cap-card-image img {
  transform: scale(1.1);
}

.cap-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cap-card-accent.cap-card-visual {
  background: #0a0a0a;
  border: 1px solid #27272a;
}

.cap-card-accent .cap-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 1) 100%);
}



.cap-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.cap-desc {
  font-size: 0.95rem;
  color: #71717a;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .capabilities {
    padding: 7rem 0;
  }

  .cap-title {
    font-size: 2.5rem;
  }

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

  .cap-card {
    padding: 2.5rem;
  }
}

/* ============================================
   TECH VISUAL
   ============================================ */

.tech-visual {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid #f4f4f5;
  border-bottom: 1px solid #f4f4f5;
}

.tech-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #fafafa;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tech-badge:hover {
  background: #f4f4f5;
}

.tech-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tech-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #52525b;
}

@media (min-width: 768px) {
  .tech-visual {
    padding: 4rem 0;
  }

  .tech-row {
    gap: 3rem;
  }
}

/* ============================================
   METRICS
   ============================================ */

.metrics {
  padding: 4rem 0;
  background: #0a0a0a;
}

.metrics-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.metric {
  text-align: center;
  padding: 1rem 2rem;
}

.metric-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-divider {
  width: 1px;
  height: 50px;
  background: #27272a;
  display: none;
}

@media (min-width: 768px) {
  .metrics {
    padding: 5rem 0;
  }

  .metric-value {
    font-size: 3rem;
  }

  .metric-divider {
    display: block;
  }

  .metrics-grid {
    gap: 3rem;
  }
}

/* ============================================
   PROCESS
   ============================================ */

.process {
  padding: 5rem 0;
  background: #fff;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.process-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 0.75rem;
}

.process-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.process-desc {
  font-size: 1rem;
  color: #71717a;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.process-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #d4d4d8;
  font-family: monospace;
}

.process-item {
  font-size: 1rem;
  font-weight: 500;
  color: #27272a;
}

.process-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #f4f4f5;
  transition: all 0.2s ease;
}

.process-card:hover {
  background: #f4f4f5;
  border-color: #e4e4e7;
}

.process-card-icon {
  width: 40px;
  height: 40px;
  background: #0a0a0a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.process-card-icon svg {
  width: 20px;
  height: 20px;
}

.process-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.process-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a0a0a;
}

.process-card-desc {
  font-size: 0.8rem;
  color: #71717a;
}

@media (min-width: 768px) {
  .process {
    padding: 7rem 0;
  }

  .process-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .process-title {
    font-size: 2.5rem;
  }
}

/* ============================================
   CTA MINIMAL
   ============================================ */

.cta-minimal {
  padding: 6rem 0;
  background: #fafafa;
  text-align: center;
}

.cta-minimal-content {
  max-width: 500px;
  margin: 0 auto;
}

.cta-minimal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-minimal-desc {
  font-size: 1.1rem;
  color: #71717a;
  margin-bottom: 2rem;
}

.btn-cta-minimal {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #0a0a0a;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-cta-minimal:hover {
  background: #27272a;
  transform: translateY(-1px);
  color: #fff;
}

@media (min-width: 768px) {
  .cta-minimal {
    padding: 8rem 0;
  }

  .cta-minimal-title {
    font-size: 2.5rem;
  }
}


/* ============================================
   NAV MINIMAL
   ============================================ */

.nav-minimal {
  background: #fff;
  border-bottom: 1px solid #f4f4f5;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-logo {
  text-decoration: none;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  cursor: pointer;
  color: #52525b;
}

.nav-toggle:hover {
  background: #fafafa;
}

.nav-links {
  width: 100%;
  padding-top: 1rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-link-minimal {
  display: block;
  padding: 0.75rem 1rem;
  color: #52525b;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-link-minimal:hover {
  color: #0a0a0a;
  background: #fafafa;
}

.nav-link-minimal.active {
  color: #0a0a0a;
  font-weight: 600;
}

.nav-link-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #0a0a0a;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-link-cta:hover {
  background: #27272a;
  color: #fff;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    width: auto;
    padding-top: 0;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-link-minimal {
    padding: 0.5rem 1rem;
  }
}

/* ============================================
   FOOTER MINIMAL
   ============================================ */

.footer-minimal {
  background: #0a0a0a;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-copy {
  font-size: 0.8rem;
  color: #71717a;
}

.footer-links a {
  font-size: 0.8rem;
  color: #71717a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}