:root {
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-dark: #07111f;
  --text: #132033;
  --muted: #637083;
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --accent: #06b6d4;
  --card: #ffffff;
  --border: #dfe6f0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-padding {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(223, 230, 240, 0.8);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  color: #334155;
}

.nav-menu a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  color: #fff !important;
  background: var(--primary);
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--bg-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(79, 70, 229, 0.16), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(6, 182, 212, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfdff, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-text {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 38px rgba(79, 70, 229, 0.25);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.trust-row strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(6, 182, 212, 0.2));
  filter: blur(4px);
}

.glass-card,
.floating-card {
  position: relative;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.main-dashboard {
  width: min(100%, 460px);
  padding: 30px;
  border-radius: 32px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-weight: 800;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

.progress-block {
  padding: 22px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid var(--border);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.progress-info span {
  color: var(--muted);
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.mini-grid div {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.mini-grid span,
.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-grid strong,
.floating-card strong {
  display: block;
  margin-top: 4px;
}

.floating-card {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 20px;
}

.card-one {
  top: 76px;
  right: 0;
}

.card-two {
  bottom: 78px;
  left: 0;
}

.logo-strip {
  padding: 28px 0;
  background: var(--bg-dark);
  color: #fff;
}

.strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.strip-content span {
  color: #a8b4c7;
}

.strip-content strong {
  font-size: 1rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.case-card,
.benefit,
.timeline-item {
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.service-card:hover,
.benefit:hover,
.timeline-item:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.32);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-card p,
.case-card p,
.benefit p,
.timeline-item p {
  margin-top: 14px;
  color: var(--muted);
}

.dark-section {
  background: var(--bg-dark);
  color: #fff;
}

.light p:not(.eyebrow) {
  color: #a8b4c7;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card {
  min-height: 360px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
}

.case-tag {
  display: inline-flex;
  margin-bottom: 24px;
  color: #cffafe;
  background: rgba(6, 182, 212, 0.14);
  border: 1px solid rgba(6, 182, 212, 0.32);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.case-card p {
  color: #b8c4d6;
}

.case-card ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  list-style: none;
}

.case-card li {
  color: #e2e8f0;
}

.case-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  background: #fff;
}

.timeline-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: var(--primary);
}

.muted-section {
  background: var(--bg-soft);
}

.tech-cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.tech-cloud span {
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.split-cta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 18px;
}

.benefit {
  padding: 24px;
  border: 1px solid var(--border);
  background: #fff;
}

.benefit strong {
  display: block;
  font-size: 1.12rem;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.12), transparent 28%),
    var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-details p {
  margin: 0 !important;
  color: var(--text) !important;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.form-btn {
  width: 100%;
}

.form-message {
  min-height: 24px;
  color: var(--primary);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  padding: 64px 0 28px;
  background: #050b15;
  color: #dbe4f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-grid p,
.footer-bottom {
  color: #93a4bb;
}

.footer-grid h4 {
  margin-bottom: 16px;
  color: #fff;
}

.footer-grid a:not(.logo) {
  display: block;
  margin-bottom: 10px;
  color: #b9c5d6;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .process-layout,
  .split-cta,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 430px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 70px 0;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .cards-grid,
  .case-grid,
  .footer-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 520px;
  }

  .floating-card {
    position: relative;
    width: 100%;
    inset: auto;
    margin-top: 14px;
  }

  .main-dashboard {
    padding: 22px;
  }

  .strip-content {
    justify-content: center;
    text-align: center;
  }

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

  .contact-form {
    padding: 22px;
  }
}
