:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --brand: #6d28d9;
  --brand-dark: #4c1d95;
  --brand-light: #f3e8ff;
  --white: #ffffff;
  --success: #14532d;
  --radius: 22px;
  --shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(109, 40, 217, 0.06), transparent 22%),
    radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.05), transparent 18%),
    #f8fafc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section {
  padding: 5.5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  margin: 0 0 2rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo span {
  color: #c4b5fd;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #ddd6fe;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 7rem 0 6rem;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #020617 0%, #0f172a 45%, #1e1b4b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.88) 0%,
      rgba(2, 6, 23, 0.78) 28%,
      rgba(15, 23, 42, 0.62) 55%,
      rgba(30, 27, 75, 0.72) 100%
    ),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80")
      center center / cover no-repeat;
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(167, 139, 250, 0.22), transparent 24%),
    linear-gradient(to top, rgba(2, 6, 23, 0.34), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0;
}

.hero-actions .btn {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  max-width: 11ch;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.hero p {
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  max-width: 62ch;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.muted {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.card,
.service-card,
.benefit-card,
.faq-item,
.stat,
.contact-item {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.service-card:hover,
.benefit-card:hover,
.faq-item:hover,
.stat:hover,
.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  border-color: rgba(109, 40, 217, 0.16);
}

.service-grid,
.benefits-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card,
.benefit-card,
.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card h3,
.benefit-card h3,
.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
}

form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(109, 40, 217, 0.18);
  border-color: var(--brand);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-item {
  padding: 1rem;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.contact-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.82);
  padding: 2.2rem 0;
  margin-top: 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .service-grid,
  .benefits-grid,
  .faq-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

    .workflow-shell {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .company-card-wrap {
    justify-content: stretch;
  }

  .company-card {
    max-width: none;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }

  .contact-title {
    max-width: none;
  }

    .workflow-content-full {
    max-width: 100%;
  }

  .workflow-content-full .steps {
    max-width: 100%;
  }

  .workflow-action {
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 4.8rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 340px;
    width: 100%;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.94;
    margin: 0 0 1rem;
  }

  .hero p {
    max-width: 30ch;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }

  .hero-actions .btn {
    width: min(100%, 260px);
  }

  .section {
    padding: 4rem 0;
  }
}

.workflow-section {
  position: relative;
}

.workflow-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(109, 40, 217, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
  border: 1px solid rgba(109, 40, 217, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.workflow-content .section-intro {
  max-width: 620px;
}

.steps {
  position: relative;
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(109, 40, 217, 0.35), rgba(109, 40, 217, 0.08));
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 12px 26px rgba(109, 40, 217, 0.22);
}

.step-content {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(109, 40, 217, 0.08);
  border-radius: 24px;
  padding: 1.3rem 1.35rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content h3 {
  margin: 0 0 0.45rem;
}

.workflow-panel {
  padding: 1.4rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 27, 75, 0.98) 100%);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  position: sticky;
  top: 110px;
}

.workflow-panel h3 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  line-height: 1.15;
}

.workflow-panel .muted {
  color: rgba(255, 255, 255, 0.8);
}

.workflow-label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ddd6fe;
  font-size: 0.9rem;
  font-weight: 700;
}

.workflow-checks {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.workflow-checks li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.workflow-checks li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c4b5fd;
  font-size: 1.2rem;
  line-height: 1;
}

.contact-main {
  padding: 1.8rem;
}

.contact-title {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  max-width: 11ch;
  margin-bottom: 0.9rem;
}

.contact-intro {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.company-card-wrap {
  display: flex;
  justify-content: flex-end;
}

.company-card {
  width: 100%;
  max-width: 430px;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}

.company-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.company-item {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(109, 40, 217, 0.05);
  border: 1px solid rgba(109, 40, 217, 0.09);
}

.company-item strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.company-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
}

.social-link:hover {
  background: var(--brand-dark);
}

.compact-checklist {
  gap: 0.9rem;
  max-width: 34rem;
}

.values-card {
  padding: 1.8rem;
}

.values-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(109, 40, 217, 0.04);
  border: 1px solid rgba(109, 40, 217, 0.08);
}

.value-item strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.value-item .muted {
  display: block;
  margin: 0;
  line-height: 1.55;
}

.workflow-shell-single {
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 2.4rem 2rem;
}

.workflow-content-full {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.workflow-content-full .section-intro {
  max-width: 700px;
  margin-bottom: 2rem;
}

.workflow-content-full .steps {
  max-width: 820px;
}

.workflow-action {
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
  margin-left: 82px;
}

.workflow-action .btn {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  box-shadow: 0 12px 26px rgba(109, 40, 217, 0.22);
  padding: 1rem 1.5rem;
}

.workflow-action .btn:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
}

.thankyou-page header {
  background: rgba(15, 23, 42, 0.96);
}

.thankyou-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.18), transparent 30%),
    linear-gradient(135deg, #020617 0%, #0f172a 45%, #1e1b4b 100%);
}

.thankyou-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.86) 0%,
      rgba(15, 23, 42, 0.70) 50%,
      rgba(30, 27, 75, 0.74) 100%
    ),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80")
      center center / cover no-repeat;
  opacity: 0.42;
}

.thankyou-wrap,
.thankyou-card {
  position: relative;
  z-index: 1;
}

.thankyou-wrap {
  display: flex;
  justify-content: center;
}

.thankyou-card {
  width: 100%;
  max-width: 820px;
  padding: 2.2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.thankyou-card h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.thankyou-card p {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  max-width: 58ch;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

@media (max-width: 640px) {
  .thankyou-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .thankyou-card {
    padding: 1.5rem;
  }

  .thankyou-card h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .thankyou-card p {
    font-size: 1rem;
  }

  .thankyou-actions {
    flex-direction: column;
    align-items: center;
  }

  .thankyou-actions .btn {
    width: min(100%, 260px);
  }
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.22s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .nav {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    width: min(290px, calc(100vw - 2rem));
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    z-index: 60;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}