/* Life Lab Networks custom theme */

:root {
  --default-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Outfit", "Manrope", system-ui, sans-serif;
  --nav-font: "Manrope", system-ui, sans-serif;
  --background-color: #080a0f;
  --section-color: #0d1118;
  --surface-color: #111722;
  --surface-strong: #151d2a;
  --default-color: #e7edf7;
  --muted-color: #a9b4c7;
  --heading-color: #ffffff;
  --accent-color: #ff5a2f;
  --accent-yellow: #ffc44d;
  --accent-blue: #2d78d6;
  --line-color: rgba(255, 255, 255, 0.12);
  --soft-line: rgba(255, 255, 255, 0.08);
  --contrast-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.78);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #101722;
  --nav-dropdown-color: #e7edf7;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background:
    radial-gradient(circle at 12% 18%, rgba(45, 120, 214, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(255, 90, 47, 0.12), transparent 24rem),
    var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-yellow);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--contrast-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p {
  color: var(--muted-color);
  line-height: 1.75;
}

img {
  max-width: 100%;
}

.main {
  position: relative;
  overflow: hidden;
}

.section {
  color: var(--default-color);
  background: transparent;
  padding: 88px 0;
  scroll-margin-top: 86px;
  overflow: clip;
}

@media (max-width: 991px) {
  .section {
    padding: 64px 0;
  }
}

.eyebrow {
  color: var(--accent-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-section h2,
.method-section h2,
.outcomes-section h2,
.contact-panel h2 {
  font-size: 3.45rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 18px;
}

/* Header */
.header {
  background: rgba(8, 10, 15, 0.86);
  border-bottom: 1px solid var(--soft-line);
  padding: 14px 0;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
  z-index: 997;
  backdrop-filter: blur(16px);
}

.scrolled .header {
  background: rgba(8, 10, 15, 0.96);
  box-shadow: 0 16px 40px rgba(3, 5, 10, 0.26);
}

.header .logo {
  gap: 12px;
  line-height: 1;
}

.header .logo img,
.footer-about img {
  width: 42px;
  height: 42px;
}

.header .logo .sitename {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  align-items: center;
  background: var(--accent-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--contrast-color);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  margin-left: 24px;
  min-height: 42px;
  padding: 10px 20px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: #e74c27;
  color: var(--contrast-color);
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    margin-left: auto;
    margin-right: 14px;
    order: 2;
    padding: 9px 14px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    align-items: center;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    align-items: center;
    color: var(--nav-color);
    display: flex;
    font-family: var(--nav-font);
    font-size: 0.95rem;
    font-weight: 800;
    justify-content: space-between;
    padding: 18px 14px;
    white-space: nowrap;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .active::after {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-yellow));
    bottom: 9px;
    content: "";
    height: 2px;
    left: 14px;
    position: absolute;
    right: 14px;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    cursor: pointer;
    font-size: 30px;
    line-height: 0;
    margin-right: 4px;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    background: var(--nav-mobile-background-color);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(3, 5, 10, 0.42);
    display: none;
    inset: 72px 18px 18px 18px;
    list-style: none;
    margin: 0;
    overflow-y: auto;
    padding: 12px 0;
    position: absolute;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    align-items: center;
    color: var(--nav-dropdown-color);
    display: flex;
    font-family: var(--nav-font);
    font-size: 1rem;
    font-weight: 800;
    justify-content: space-between;
    padding: 14px 22px;
    white-space: nowrap;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-yellow);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--contrast-color);
    font-size: 34px;
    margin-right: 0;
    position: absolute;
    right: 16px;
    top: 22px;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    background: rgba(5, 7, 12, 0.78);
    inset: 0;
    overflow: hidden;
    position: fixed;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

@media (max-width: 480px) {
  .header .logo .sitename {
    font-size: 0.95rem;
  }

  .header .btn-getstarted {
    display: none;
  }
}

/* Buttons */
.primary-action,
.secondary-action {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
}

.primary-action {
  background: var(--accent-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--contrast-color);
}

.primary-action:hover {
  background: #e74c27;
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.secondary-action {
  border: 1px solid var(--line-color);
  border-radius: 999px;
  color: var(--default-color);
}

.secondary-action:hover {
  border-color: rgba(255, 196, 77, 0.55);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.primary-action:active,
.secondary-action:active,
.btn-getstarted:active {
  transform: translateY(1px);
}

/* Hero */
.hero {
  align-items: center;
  display: flex;
  min-height: 72dvh;
  padding-bottom: 54px;
  padding-top: 58px;
}

.hero h1 {
  font-size: 5.6rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0 0 24px;
  max-width: 900px;
}

.hero-lede {
  color: #d3dae7;
  font-size: 1.22rem;
  line-height: 1.65;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-points span {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  color: var(--default-color);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 8px;
  padding: 9px 12px;
}

.hero-points i {
  color: var(--accent-yellow);
}

.hero-media {
  border: 1px solid var(--line-color);
  border-radius: 8px;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 70px rgba(3, 5, 10, 0.44);
}

.hero-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(8, 10, 15, 0.42), transparent 48%, rgba(255, 90, 47, 0.16));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.image-note {
  background: rgba(10, 14, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  bottom: 18px;
  left: 18px;
  max-width: 310px;
  padding: 16px;
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(14px);
}

.image-note span,
.stacked-caption strong,
.contact-methods span {
  color: var(--accent-yellow);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.image-note strong {
  color: var(--contrast-color);
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
  margin-top: 6px;
}

@media (max-width: 1199px) {
  .hero h1 {
    font-size: 4.8rem;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 4.35rem;
  }

  .page-hero h1 {
    font-size: 3.8rem;
  }

  .section-heading h2,
  .split-section h2,
  .method-section h2,
  .outcomes-section h2,
  .contact-panel h2 {
    font-size: 2.75rem;
  }

  .cta-panel h2 {
    font-size: 2.45rem;
  }

  .hero-media {
    min-height: 370px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .page-hero h1 {
    font-size: 2.75rem;
  }

  .hero-media {
    min-height: 320px;
  }
}

/* Home sections */
.proof-strip {
  padding: 28px 0 72px;
}

.proof-grid {
  border-bottom: 1px solid var(--line-color);
  border-top: 1px solid var(--line-color);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  border-right: 1px solid var(--soft-line);
  padding: 24px;
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid span {
  color: var(--muted-color);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.proof-grid strong {
  color: var(--heading-color);
  display: block;
  font-size: 1.05rem;
  line-height: 1.4;
}

.split-section {
  background: linear-gradient(180deg, rgba(17, 23, 34, 0.64), rgba(8, 10, 15, 0));
}

.section-photo,
.stacked-photo img {
  border: 1px solid var(--line-color);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(3, 5, 10, 0.34);
  display: block;
  width: 100%;
}

.section-photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.signal-list,
.audience-list,
.format-list,
.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.signal-list div,
.audience-list div,
.format-list > div,
.contact-methods > div {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  padding: 18px;
}

.signal-list i,
.audience-list i,
.format-list i,
.contact-methods i {
  color: var(--accent-yellow);
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}

.signal-list span,
.audience-list span {
  color: var(--default-color);
  line-height: 1.65;
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(45, 120, 214, 0.12), transparent 32rem),
    linear-gradient(180deg, #0c1018, #0a0d13);
  border-bottom: 1px solid var(--soft-line);
  border-top: 1px solid var(--soft-line);
}

.program-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
}

.program-card,
.framework-grid article,
.training-grid article {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-color);
  border-radius: 8px;
  min-height: 100%;
  padding: 28px;
}

.program-card i,
.training-grid article > i {
  color: var(--accent-yellow);
  font-size: 2rem;
  line-height: 1;
}

.program-card h3,
.framework-grid h3,
.training-grid h3,
.process-list h3,
.format-list h3 {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 18px 0 10px;
}

.program-card p,
.training-grid p,
.format-list p,
.process-list p {
  margin-bottom: 0;
}

.program-card a {
  align-items: center;
  color: var(--accent-yellow);
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  margin-top: 22px;
}

.featured-program {
  grid-row: span 2;
  padding: 38px;
}

.featured-program h3 {
  font-size: 2.35rem;
}

.method-section {
  background: rgba(255, 255, 255, 0.02);
}

.process-list {
  border-top: 1px solid var(--line-color);
}

.process-list > div {
  border-bottom: 1px solid var(--line-color);
  display: grid;
  gap: 20px;
  grid-template-columns: 64px 1fr;
  padding: 24px 0;
}

.process-list span,
.framework-grid span {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 800;
}

.process-list span {
  grid-row: 1 / span 2;
}

.process-list h3 {
  margin-top: 0;
}

.process-list p {
  grid-column: 2;
}

.cta-section {
  padding-top: 40px;
}

.cta-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 90, 47, 0.20), transparent 48%),
    linear-gradient(90deg, #141b27, #0e131c);
  border: 1px solid var(--line-color);
  border-radius: 8px;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 38px;
}

.cta-panel h2 {
  font-size: 3.05rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.cta-panel .eyebrow {
  margin-bottom: 10px;
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(135deg, rgba(45, 120, 214, 0.16), transparent 35rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  border-bottom: 1px solid var(--soft-line);
  padding: 84px 0 72px;
}

.page-hero h1 {
  font-size: 5.25rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.page-hero-copy {
  color: #d3dae7;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.breadcrumbs li,
.breadcrumbs a {
  color: var(--muted-color);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs li + li::before {
  color: rgba(255, 255, 255, 0.35);
  content: "/";
  padding-right: 10px;
}

.breadcrumbs a:hover {
  color: var(--contrast-color);
}

.stacked-photo {
  position: relative;
}

.stacked-photo img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.stacked-caption {
  background: rgba(10, 14, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  bottom: -24px;
  max-width: 330px;
  padding: 18px;
  position: absolute;
  right: 24px;
  backdrop-filter: blur(14px);
}

.stacked-caption span {
  color: var(--default-color);
  display: block;
  line-height: 1.55;
  margin-top: 8px;
}

.framework-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.9fr 1.18fr 0.9fr;
}

.audience-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

/* Training */
.training-overview .section-photo {
  aspect-ratio: 1 / 1;
}

.format-list > div {
  background: transparent;
}

.format-list h3 {
  margin-top: 0;
}

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

.training-grid ul {
  border-top: 1px solid var(--soft-line);
  color: var(--default-color);
  list-style: none;
  margin: 20px 0 0;
  padding: 16px 0 0;
}

.training-grid li {
  color: var(--default-color);
  padding: 6px 0;
}

.training-grid li::before {
  color: var(--accent-yellow);
  content: "-";
  padding-right: 10px;
}

.outcome-table {
  border-top: 1px solid var(--line-color);
}

.outcome-table div {
  align-items: start;
  border-bottom: 1px solid var(--line-color);
  display: grid;
  gap: 24px;
  grid-template-columns: 220px 1fr;
  padding: 22px 0;
}

.outcome-table span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.12rem;
  font-weight: 800;
}

.outcome-table p {
  margin: 0;
}

.faq-lite {
  background: rgba(255, 255, 255, 0.02);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--heading-color);
  cursor: pointer;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

/* Contact */
.contact-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.contact-panel {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-color);
  border-radius: 8px;
  height: 100%;
  padding: 30px;
}

.contact-methods strong {
  color: var(--heading-color);
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
  margin-top: 6px;
}

.lifelab-form {
  background: var(--surface-color);
  border: 1px solid var(--line-color);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(3, 5, 10, 0.32);
  padding: 30px;
}

.form-field label {
  color: var(--heading-color);
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.lifelab-form input[type="text"],
.lifelab-form input[type="email"],
.lifelab-form textarea {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  box-shadow: none;
  color: var(--default-color);
  font-size: 0.98rem;
  min-height: 48px;
  padding: 12px 14px;
}

.lifelab-form textarea {
  min-height: 170px;
}

.lifelab-form input:focus,
.lifelab-form textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 196, 77, 0.75);
  color: var(--default-color);
  outline: none;
}

.lifelab-form input::placeholder,
.lifelab-form textarea::placeholder {
  color: rgba(231, 237, 247, 0.46);
}

.lifelab-form button[type="submit"] {
  background: var(--accent-color);
  border: 0;
  border-radius: 999px;
  color: var(--contrast-color);
  font-weight: 800;
  min-height: 48px;
  padding: 12px 24px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.lifelab-form button[type="submit"]:hover {
  background: #e74c27;
  transform: translateY(-1px);
}

.php-email-form .error-message {
  background: #c9342b;
  border-radius: 6px;
  color: #ffffff;
  display: none;
  font-weight: 800;
  margin-bottom: 18px;
  padding: 14px;
  text-align: left;
}

.php-email-form .sent-message {
  background: #16805a;
  border-radius: 6px;
  color: #ffffff;
  display: none;
  font-weight: 800;
  margin-bottom: 18px;
  padding: 14px;
  text-align: center;
}

.php-email-form .loading {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--default-color);
  display: none;
  margin-bottom: 18px;
  padding: 14px;
  text-align: center;
}

.php-email-form .loading::before {
  animation: php-email-form-loading 1s linear infinite;
  border: 3px solid var(--accent-yellow);
  border-radius: 50%;
  border-top-color: transparent;
  content: "";
  display: inline-block;
  height: 22px;
  margin: 0 10px -5px 0;
  width: 22px;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Footer */
.footer {
  background: #080a0f;
  border-top: 1px solid var(--line-color);
  color: var(--default-color);
  font-size: 0.95rem;
  position: relative;
}

.footer .footer-top {
  padding-top: 54px;
}

.footer-about a {
  align-items: center;
  color: var(--heading-color);
  display: flex;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 800;
  gap: 12px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer .footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .footer-links ul li {
  align-items: center;
  display: flex;
  padding: 8px 0;
}

.footer .footer-links ul i {
  color: var(--accent-yellow);
  font-size: 0.8rem;
  line-height: 0;
  margin-right: 6px;
}

.footer .footer-links ul a {
  color: var(--muted-color);
}

.footer .footer-links ul a:hover {
  color: var(--contrast-color);
}

.footer .social-links a {
  align-items: center;
  border: 1px solid var(--line-color);
  border-radius: 999px;
  color: var(--default-color);
  display: flex;
  font-size: 1rem;
  height: 40px;
  justify-content: center;
  margin-right: 10px;
  width: 40px;
}

.footer .social-links a:hover {
  border-color: rgba(255, 196, 77, 0.6);
  color: var(--accent-yellow);
}

.footer .copyright {
  border-top: 1px solid var(--soft-line);
  padding: 24px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  color: var(--muted-color);
  font-size: 0.82rem;
  margin-top: 6px;
}

/* Preloader and scroll top */
#preloader {
  background: var(--background-color);
  inset: 0;
  overflow: hidden;
  position: fixed;
  transition: all 0.5s ease-out;
  z-index: 999999;
}

#preloader::before {
  animation: animate-preloader 1.1s linear infinite;
  border: 4px solid transparent;
  border-radius: 50%;
  border-top-color: var(--accent-color);
  border-right-color: var(--accent-yellow);
  content: "";
  height: 54px;
  left: calc(50% - 27px);
  position: fixed;
  top: calc(50% - 27px);
  width: 54px;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.scroll-top {
  background: var(--accent-color);
  border-radius: 8px;
  bottom: 16px;
  height: 42px;
  opacity: 0;
  position: fixed;
  right: 16px;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 42px;
  z-index: 99999;
}

.scroll-top i {
  color: var(--contrast-color);
  font-size: 26px;
  line-height: 0;
}

.scroll-top:hover {
  background: #e74c27;
  color: var(--contrast-color);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media (max-width: 991px) {
  .proof-grid,
  .program-grid,
  .framework-grid,
  .training-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    border-bottom: 1px solid var(--soft-line);
    border-right: 0;
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .featured-program {
    grid-row: auto;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .stacked-caption {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .outcome-table div {
    gap: 8px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .section-heading h2,
  .split-section h2,
  .method-section h2,
  .outcomes-section h2,
  .contact-panel h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .proof-strip {
    padding-top: 12px;
  }

  .program-card,
  .framework-grid article,
  .training-grid article,
  .contact-panel,
  .lifelab-form {
    padding: 22px;
  }

  .process-list > div {
    grid-template-columns: 1fr;
  }

  .process-list span,
  .process-list p {
    grid-column: auto;
    grid-row: auto;
  }
}
