:root {
  --site-dark: #172033;
  --site-body: #526071;
  --site-light: #f5f7fa;
}

/* Hero section (top) */

.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 90% 15%, rgba(var(--bs-primary-rgb), 0.12), transparent 35%), #ffffff;
}

.hero-section .row {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.hero-heading {
  max-width: 50rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 44rem;
  line-height: 1.7;
}

.hero-image-wrapper {
  max-width: 28rem;
}

.hero-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero-actions .btn {
  white-space: nowrap;
}

/* Responsive mobile CSS (to do) */

/* Create a subtle blue shape behind my image (not sure this works) */

/* Introduction section */

.intro-section {
  background-color: var(--site-light);
}

.intro-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.intro-heading {
  max-width: 25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.intro-lead {
  max-width: 44rem;
  color: var(--site-dark);
  line-height: 1.65;
}

.intro-copy {
  max-width: 44rem;
  line-height: 1.7;
}

@media (min-width: 992px) {
  .intro-heading-column {
    padding-left: 1.5rem;
    border-left: 4px solid var(--bs-primary);
  }
}

/* Area of focus */

.focus-item {
  min-height: 5rem;
  color: var(--site-dark);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.focus-item:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--bs-primary-rgb), 0.35) !important;
  box-shadow: 0 0.5rem 1.25rem rgba(23, 32, 51, 0.07);
}

.focus-icon {
  width: 2rem;
  height: 2rem;
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Process section */

.process-step {
  position: relative;
  background-color: #ffffff;
  border-top: 3px solid var(--bs-primary);
  border-radius: 0.5rem;
}

.process-number {
  width: 3rem;
  height: 3rem;
  color: #ffffff;
  background-color: var(--bs-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-step p {
  line-height: 1.6;
}

/* Who I work with */

.text-white-soft {
  color: rgba(255, 255, 255, 0.8) !important;
}

.audience-item {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, background-color 180ms ease;
}

.audience-item:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.15);
}

.audience-check {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--bs-primary);
  background-color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Benefits section */

.benefit-item {
  padding: 0.5rem 0;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  font-size: 1rem;
  font-weight: 700;
}

.benefit-content {
  max-width: 24rem;
}

.benefit-content p {
  line-height: 1.6;
}

/* Final call to action */

.cta-box {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-color: var(--bs-primary);
}

.cta-box h2 {
  color: #ffffff;
}

.cta-copy {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.cta-box .btn-light {
  color: var(--bs-primary);
  background-color: #ffffff;
  border-color: #ffffff;
  font-weight: 600;
}

.cta-box .btn-light:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}

/* Logo section */

.logo-section {
  overflow: hidden;
  background-color: var(--site-light);
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 45s linear infinite;
  will-change: transform;
}

.logo-group {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
  padding-right: 1rem;
}

.logo-item {
  flex: 0 0 11rem;
  width: 11rem;
  height: 6.5rem;
  background-color: #ffffff;
  border: 1px solid var(--site-border);
}

.client-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 3.5rem;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.logo-item:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from {
    transform: translate(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Newsletter */

.newsletter-signup-section {
  color: #ffffff;
  background-color: #172033;
}

.newsletter-signup-label {
  color: #8fb5f2;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.newsletter-signup-heading {
  max-width: 27rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.newsletter-signup-copy {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.newsletter-signup-note {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

/* Newsletter - style the form panel */

.newsletter-form-panel {
  color: #172033;
  background-color: #ffffff;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.16);
}

.newsletter-signup-form .form-label {
  color: #172033;
}

.newsletter-signup-form .form-control {
  color: #172033;
  border-color: #cad2dd;
  border-radius: 0.6rem;
}

.newsletter-signup-form .form-control:focus {
  border-color: #2457a6;
  box-shadow: 0 0 0 0.2rem rgba(36, 87, 166, 0.16);
}

.newsletter-consent-label {
  color: #526071;
  line-height: 1.6;
}

.newsletter-consent-label a {
  color: #2457a6;
  font-weight: 600;
}

.newsletter-submit-button {
  min-width: 9rem;
}

.newsletter-form-note {
  line-height: 1.6;
}

/* Newsletter - hide the honeypot */

.newsletter-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Newsletter - hide the status alerts initially */

.newsletter-status {
  display: none;
}

/* Newsletter - style hCaptcha placement */

.newsletter-hcaptcha {
  min-height: 78px;
}

/* Newsletter - for very narrow screens */

@media (max-width: 359.98px) {
  .newsletter-hcaptcha {
    overflow-x: auto;
  }
}

/* Newsletter - mobile styling */

@media (max-width: 575.98px) {
  .newsletter-form-panel {
    padding: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .newsletter-submit-button {
    display: block;
    width: 100%;
  }
}

