body {
  margin: 0;
  background: #0d0d0d;
  color: #eaeaea;
  font-family: 'Poppins', sans-serif;
}

#integrations {
  margin-top: 100px;
}

/* Layout */
.container {
  max-width: 800px;
  margin: auto;
  padding: 80px 20px;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h2 {
  margin-top: 48px;
  color: #fff;
}

h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 1.05rem;
}

/* Text */
p {
  line-height: 1.7;
  color: #fff;
}

.process-option p,
.contact-box p {
  color: #ccc;
  line-height: 1.6;
}

#integrations ul {
  padding-left: 1.25rem;
}

#integrations li {
  margin-bottom: 8px;
  list-style-type: disc;
}

#integrations .process-option li,
#integrations .notes-callout li {
  color: #ccc;
}

.contact-box h3 {
  color: #fff;
}

.lead {
  color: #bbb;
}

/* Divider */
hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 30px 0;
}

/*
 * Card chrome mirrors pages/services/services.css .service-card
 */
.process-option,
.contact-box,
.notes-callout {
  margin-top: 24px;
  background: #111;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.process-option:first-of-type {
  margin-top: 16px;
}

.process-option:hover,
.contact-box:hover,
.notes-callout:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.process-option::before,
.contact-box::before,
.notes-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.08),
    transparent 55%
  );
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.process-option:hover::before,
.contact-box:hover::before,
.notes-callout:hover::before {
  opacity: 1;
}

.process-option > h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.notes-callout {
  background: linear-gradient(
    145deg,
    rgba(96, 165, 250, 0.09) 0%,
    #111 42%
  );
  border-color: rgba(96, 165, 250, 0.25);
}

.notes-callout:hover {
  border-color: rgba(96, 165, 250, 0.5);
}

.notes-callout h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #93c5fd;
}

.notes-callout ul {
  margin-top: 12px;
}

.contact-box > h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-box a {
  color: #fff;
  text-decoration: none;
}

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

/* Animation — aligned with services .reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(8px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
