* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #007bff;
  --secondary: #28a745;
  --dark: #0f172a;
  --muted: #4b5563;
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand-name {
  font-weight: 700;
}

.brand-tagline {
  font-size: 14px;
  color: var(--muted);
}

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

.nav a {
  font-weight: 500;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #006ae0;
}

.btn-secondary {
  background: var(--dark);
  color: #fff;
}

.btn-secondary:hover {
  background: #0c1423;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #eef4ff;
}

.btn-outline:hover {
  background: #dbeafe;
}

.btn.icon-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  background: #eef2ff;
  color: var(--dark);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #fff;
}

.hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at 20% 20%, #e0f2fe, transparent 25%), radial-gradient(circle at 80% 0%, #e7f6ff, transparent 30%), #f8fafc;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 12px 0;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: #e0f2fe;
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 16px 0 22px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
}

.hero-carousel {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  min-height: 80px;
}

.carousel-item {
  display: none;
  color: var(--muted);
  font-weight: 500;
}

.carousel-item.active {
  display: block;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 420px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.card-title {
  font-weight: 700;
  color: var(--muted);
}

.pipeline {
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fafc;
}

.step-icon {
  font-size: 20px;
}

.step-title {
  font-weight: 600;
}

.step-desc {
  color: var(--muted);
  font-size: 14px;
}

.video-placeholder {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}

.video-placeholder .play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  margin-bottom: 6px;
}

.logos {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.logo-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.card, .case-card, .blog-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
}

.card h3, .case-card h3, .blog-card h3 {
  margin: 10px 0;
}

.card p, .case-card p, .blog-card p {
  color: var(--muted);
}

.card ul, .case-card ul {
  margin: 10px 0 0 16px;
  color: var(--muted);
}

.card ul li, .case-card ul li {
  margin-bottom: 6px;
}

.icon {
  font-size: 24px;
}

.card-cta, .case-card a, .blog-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
}

.tag {
  background: #e0f2fe;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.split {
  background: #fff;
}

.split-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.list-points {
  display: grid;
  gap: 14px;
  margin: 12px 0;
}

.point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e0f2fe;
  display: grid;
  place-items: center;
}

.point-title {
  font-weight: 700;
}

.chart-card {
  background: linear-gradient(135deg, #e0f2fe, #ecfeff);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.chart {
  margin: 16px 0;
  display: grid;
  gap: 10px;
}

.bar {
  position: relative;
  height: 44px;
  background: #dbeafe;
  border-radius: 12px;
  overflow: hidden;
}

.bar::before {
  content: attr(data-label) " — " attr(data-value);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--dark);
}

.bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 12px;
  transition: width 0.8s ease;
}

.chart-card.active .bar:nth-child(1)::after { width: 70%; }
.chart-card.active .bar:nth-child(2)::after { width: 35%; }
.chart-card.active .bar:nth-child(3)::after { width: 98%; }
.chart-card.active .bar:nth-child(4)::after { width: 80%; }

.chart-note {
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.timeline {
  margin: 14px 0;
  color: var(--muted);
}

.timeline li {
  margin-bottom: 8px;
}

.values {
  display: flex;
  gap: 10px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.value-card {
  background: #eef2ff;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.team {
  display: grid;
  gap: 12px;
}

.team-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 14px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e0f2fe;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary);
}

.team-name {
  font-weight: 700;
}

.team-role {
  color: var(--muted);
  font-size: 14px;
}

.case-badge, .blog-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
}

.blog-card {
  position: relative;
}

.testimonial-slider {
  position: relative;
}

.testimonial {
  display: none;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
  color: var(--muted);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  background: #e0f2fe;
  display: grid;
  place-items: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark);
}

.testimonial-role {
  color: var(--muted);
  font-size: 14px;
}

.testimonial.active {
  display: block;
}

.testimonial-meta {
  margin-top: 10px;
  font-weight: 700;
  color: var(--dark);
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), #005fcc);
  color: #fff;
  padding: 50px 0;
}

.cta-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-actions .btn-outline {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 10px 0;
  color: var(--muted);
}

.contact-list li {
  margin-bottom: 8px;
}

.contact-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.form {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.form-row.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.footer {
  background: #0b1220;
  color: #e5e7eb;
  padding-top: 40px;
}

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

.footer-links {
  list-style: none;
  margin-top: 8px;
  color: #cbd5e1;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd5e1;
}

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

.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #1f2937;
  padding: 16px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
}

@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow);
    border-radius: 12px;
    min-width: 220px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 8px 0;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 80px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .section {
    padding: 64px 0;
  }
}

