/* Global */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --bg-alt: #050816;
  --surface: #0b1120;
  --surface-soft: #0f172a;
  --accent: #4f46e5;
  --accent-soft: #6366f1;
  --accent-strong: #a855f7;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.6);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 40%, #020617 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
}

/* Background blobs */

.bg-blur {
  position: fixed;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.45;
}

.bg-blur-1 {
  width: 420px;
  height: 420px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, #4f46e5, #a855f7);
}

.bg-blur-2 {
  width: 380px;
  height: 380px;
  bottom: -60px;
  left: -40px;
  background: radial-gradient(circle, #0ea5e9, #22c55e);
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.2), rgba(15, 23, 42, 0.9));
}

.section-inner {
  display: flex;
  gap: 2.5rem;
}

.two-column {
  flex-wrap: wrap;
}

.two-column > * {
  flex: 1 1 280px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.7), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: conic-gradient(from 180deg, #4f46e5, #0ea5e9, #22c55e, #a855f7, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #4f46e5, #22c55e);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: #e5e7eb;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 0.5rem;
  color: var(--text);
  font-size: 1.2rem;
  padding: 0.2rem 0.6rem;
}

/* Hero */

.hero {
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 320px;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-content p {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.6rem 0 1.3rem;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.highlight-item {
  padding: 0.9rem 1.1rem;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.8);
}

.highlight-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.highlight-value {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero Illustration */

.hero-illustration {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.65), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(191, 219, 254, 0.3);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #cbd5f5;
  letter-spacing: 0.12em;
}

.metric-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  white-space: nowrap;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  opacity: 0.5;
  filter: blur(8px);
}

.bubble-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: -40px;
  background: radial-gradient(circle, #22c55e, #16a34a);
}

.bubble-2 {
  width: 80px;
  height: 80px;
  bottom: 0;
  left: -30px;
  background: radial-gradient(circle, #0ea5e9, #2563eb);
}

.bubble-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 30%;
  background: radial-gradient(circle, #a855f7, #4f46e5);
}

/* Cards & grids */

.card {
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.35), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
}

.glass-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  backdrop-filter: blur(18px);
  border-color: rgba(148, 163, 184, 0.4);
}

.service-card h3,
.industry-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.service-card p,
.industry-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.2rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 34rem;
}

/* Strengths */

.strengths-grid {
  margin-top: 1.5rem;
}

.pill-card {
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.3rem 1.2rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.7);
}

.pill-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.pill-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Partners */

.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.partner-badge {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(191, 219, 254, 0.6);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), rgba(15, 23, 42, 0.98));
  font-size: 0.85rem;
  font-weight: 500;
}

/* Contact */

.contact-details p {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-details a {
  color: var(--accent-soft);
  text-decoration: none;
}

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

.contact-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.55);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.8);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.98);
}

/* Lists */

.bullet-list {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
}

.bullet-list li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Footer */

.footer {
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(2, 6, 23, 0.95);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

/* Responsive */

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

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    margin-top: 0.4rem;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 0.9rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-illustration {
    order: -1;
  }

  .section-inner {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
