:root {
  --ellira-primary: #5b37be;
  --ellira-primary-soft: #f6f1fd;
  --ellira-primary-border: #cfb6fc;
  --ellira-primary-strong: #5b37be;
  --ellira-text: #20202a;
  --ellira-muted: #6c6678;
  --ellira-radius: 1rem;
  --ellira-primary-hover: #833de9;
}

body {
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ellira-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  color: var(--ellira-primary);
  letter-spacing: 0.02em;
}

p {
  font-family: inherit;
}

a.link-secondary {
  text-decoration: none;
}

.navbar {
  border-bottom: 1px solid var(--ellira-primary-border);
  background: rgba(246, 241, 253, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(1.75rem, 1.15rem + 2.4vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.hero-copy {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
}

.section-title {
  font-size: clamp(1.65rem, 1.25rem + 1.4vw, 2.25rem);
  line-height: 1.2;
  text-wrap: balance;
}

.section-intro {
  max-width: 48rem;
  margin-inline: auto;
  color: var(--ellira-muted);
}

.feature-card-row > .col {
  display: flex;
}

.feature-card {
  width: 100%;
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--ellira-radius);
  background: rgba(246, 241, 253, 0.35);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: var(--ellira-primary);
  background: var(--ellira-primary-soft);
  font-size: 2rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.feature-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.integration-card {
  width: 100%;
  height: 100%;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(106, 72, 220, 0.12);
  box-shadow: 0 18px 40px rgba(106, 72, 220, 0.08);
}

.integration-card img {
  display: block;
  width: 100%;
  max-width: 24rem;
  height: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--ellira-primary-border);
  border-radius: 0.9rem;
  box-shadow: 0 0.85rem 2rem rgba(73, 46, 126, 0.10);
  background: #fff;
}

.pricing-card {
  height: 100%;
  border-color: var(--ellira-primary-border);
}

.pricing-card.is-featured {
  border-color: var(--ellira-primary);
}

.site-footer {
  border-top: 1px solid var(--ellira-primary-border);
}

.ellira-check-list {
  display: grid;
  gap: 1.25rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.ellira-check-list > li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  column-gap: 1rem;
  align-items: start;
}

.ellira-check-list > li::before {
  content: "✓";
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eadcff;
  color: var(--ellira-primary);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

.ellira-check-list h4 {
  margin: 0;
  color: var(--ellira-text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.ellira-check-list p {
  margin: 0.25rem 0 0;
  color: var(--ellira-muted);
  line-height: 1.45;
}

.site-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.site-section-soft {
  background: #fbf9ff;
}

.site-section-lilac {
  background: linear-gradient(180deg, #f8f2ff 0%, #ffffff 100%);
}

.integration-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--ellira-radius);
  background: #fff;
}

.integration-card h4 {
  margin-top: 1rem;
  font-weight: 800;
}

.integration-card p {
  margin: 0;
  color: var(--ellira-muted);
  line-height: 1.65;
}

.integration-card img {
  max-height: 9rem;
  width: auto;
  object-fit: contain;
}

.btn-ellira {
  background-color: var(--ellira-primary-border);
  color: var(--ellira-primary-strong);
}

.btn-ellira:hover {
  background-color: var(--ellira-primary-hover);
  color: var(--ellira-primary-soft);
  hover: bg-primary/90 transition-colors;
}

.splide__slide {
  opacity: 0.6;
}

.splide__slide.is-active {
  opacity: 1;
}

.splide-thumbnails {
  display: flex;
  margin: 1rem auto 0;
  padding: 0;
  justify-content: center;
}

.splide-thumbnail {
  width: 70px;
  height: 70px;
  overflow: hidden;
  list-style: none;
  margin: 0 0.2rem;
  cursor: pointer;
}

.splide-thumbnail img {
  width: 100%;
  height: auto;
}

hr {
  color: var(--ellira-primary);
}

.ellira-screenshot-slide {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(36, 24, 66, 0.14);
}

.ellira-screenshot-slide img {
  display: block;
  /*width: 100%;*/
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
}

.ellira-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.75rem 1.5rem 1.25rem;
  color: #241842;
  background: linear-gradient( to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0) 100% );
}

.ellira-slide-caption h3 {
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.ellira-slide-caption p {
  margin: 0;
  max-width: 46rem;
  font-size: 0.95rem;
  color: #4f4568;
}

@media (max-width: 576px) {
  .ellira-slide-caption {
    padding: 0.75rem 0.9rem;
  }
}

@media (max-width: 576px) {
  .ellira-slide-caption h3 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .ellira-slide-caption p {
    font-size: 0.82rem;
  }
}

.ellira-screenshot-carousel, .ellira-screenshot-carousel .splide__track, .ellira-screenshot-carousel .splide__list, .ellira-screenshot-carousel .splide__slide {
  background: #fff;
}

.ellira-screenshot-carousel .splide__track {
  border-radius: 1.25rem;
  overflow: hidden;
}

.ellira-screenshot-carousel .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 0;
}

/* Hero product showcase */

.ellira-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, rgba(207, 182, 252, 0.42), transparent 28rem), radial-gradient(circle at 88% 8%, rgba(91, 55, 190, 0.12), transparent 30rem), linear-gradient(180deg, #fbf9ff 0%, #ffffff 82%);
}

.ellira-hero .container {
  z-index: 1;
}

.ellira-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.7;
  pointer-events: none;
}

.ellira-hero-orb-one {
  width: 18rem;
  height: 18rem;
  right: -6rem;
  top: 7rem;
  background: rgba(207, 182, 252, 0.38);
}

.ellira-hero-orb-two {
  width: 12rem;
  height: 12rem;
  left: 46%;
  bottom: 2rem;
  background: rgba(246, 241, 253, 0.9);
}

.ellira-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(91, 55, 190, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ellira-primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ellira-kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--ellira-primary);
  box-shadow: 0 0 0 0.35rem rgba(91, 55, 190, 0.11);
}

.btn-outline-ellira {
  border-color: var(--ellira-primary-border);
  color: var(--ellira-primary-strong);
  background: rgba(255, 255, 255, 0.64);
}

.btn-outline-ellira:hover {
  border-color: var(--ellira-primary-hover);
  color: var(--ellira-primary-hover);
  background: #fff;
}

.ellira-hero-primary {
  box-shadow: 0 0.9rem 1.9rem rgba(91, 55, 190, 0.16);
}

.ellira-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--ellira-muted);
  font-size: 0.95rem;
}

.ellira-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ellira-hero-points span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: #eadcff;
  color: var(--ellira-primary);
  font-size: 0.72rem;
  font-weight: 900;
}

.ellira-hero-showcase {
  position: relative;
  max-width: 58rem;
  margin-inline: auto;
}

.ellira-showcase-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(91, 55, 190, 0.18);
  border-radius: 1.45rem;
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(36, 24, 66, 0.18), 0 0 0 0.55rem rgba(255, 255, 255, 0.66);
  transform: perspective(1200px) rotateX(1.8deg) rotateY(-2.2deg);
  transform-origin: center;
}

.ellira-showcase-browser {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.2rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(91, 55, 190, 0.12);
  background: linear-gradient(180deg, rgba(246, 241, 253, 0.72), rgba(255, 255, 255, 0.82));
}

.ellira-showcase-browser span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(91, 55, 190, 0.26);
}

.ellira-showcase-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
}

.ellira-showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.018) translateY(0.35rem);
  transition: opacity 800ms ease, transform 1000ms ease;
}

.ellira-showcase-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 1;
}

.ellira-showcase-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.ellira-showcase-caption {
  position: absolute;
  left: clamp(1rem, 2vw, 1.4rem);
  right: clamp(1rem, 2vw, 1.4rem);
  bottom: clamp(1rem, 2vw, 1.4rem);
  z-index: 2;
  max-width: 34rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(207, 182, 252, 0.55);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1rem 2.4rem rgba(36, 24, 66, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ellira-showcase-caption h2 {
  margin: 0 0 0.25rem;
  color: var(--ellira-primary);
  font-size: clamp(1.05rem, 0.95rem + 0.42vw, 1.35rem);
  font-weight: 900;
}

.ellira-showcase-caption p {
  margin: 0;
  color: #4f4568;
  font-size: clamp(0.86rem, 0.82rem + 0.18vw, 0.98rem);
  line-height: 1.45;
}

.ellira-showcase-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.ellira-showcase-nav button {
  border: 1px solid rgba(91, 55, 190, 0.14);
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ellira-muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.ellira-showcase-nav button:hover, .ellira-showcase-nav button:focus-visible {
  border-color: rgba(91, 55, 190, 0.45);
  color: var(--ellira-primary);
  transform: translateY(-1px);
}

.ellira-showcase-nav button.is-active {
  border-color: var(--ellira-primary);
  background: var(--ellira-primary);
  color: #fff;
}

.ellira-showcase-progress {
  height: 0.18rem;
  max-width: 18rem;
  margin: 0.95rem auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(91, 55, 190, 0.12);
}

.ellira-showcase-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--ellira-primary-border), var(--ellira-primary));
  animation: ellira-showcase-progress 5200ms linear infinite;
}

@keyframes ellira-showcase-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 991.98px) {
  .ellira-showcase-frame {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .ellira-hero-points {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .ellira-showcase-browser {
    height: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .ellira-showcase-screen {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 575.98px) {
  .ellira-showcase-caption {
    position: static;
    max-width: none;
    border-width: 1px 0 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ellira-showcase-slide, .ellira-showcase-nav button {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ellira-showcase-progress span {
    animation: none;
    transform: scaleX(1);
  }
}

.ellira-story-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ellira-feature-shot {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--ellira-primary-border);
  border-radius: var(--ellira-radius);
  box-shadow: 0 1.5rem 3.5rem rgba(73, 46, 126, 0.16);
  background: #fff;
}

.integration-card h3 {
  margin: 0 0 .7rem;
  font-size: 1.15rem;
}

.business-section {
  overflow: hidden;
}

.reconciliation-highlight {
  margin: 1.5rem 0 2rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--ellira-primary-border);
  border-radius: var(--ellira-radius);
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(208, 190, 253, 0.18));
  box-shadow: 0 0.75rem 1.75rem rgba(73, 46, 126, 0.07);
}

.reconciliation-highlight h2 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.reconciliation-highlight p {
  margin-bottom: 0;
  max-width: 70rem;
}

.portal-gallery-section {
  border-top: 1px solid rgba(111, 66, 193, 0.08);
}

.automation-flow {
  text-align: left;
  position: relative;
  align-items: stretch;
}

.automation-step {
  height: 100%;
  padding: 1.8rem 1.1rem 1rem;
  border: 1px solid rgba(111,66,193,0.15);
  border-radius: 1rem;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 0.7rem 1.9rem rgba(73,46,126,0.06);
  position: relative;
  overflow: visible;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.automation-step h4 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  color: var(--ellira-primary-strong);
  padding-top: 0;
  line-height: 1.3;
  margin: 0.9rem 0 0.45rem;
}

.automation-step p {
  margin-bottom: 0;
  font-size: 0.91rem;
  line-height: 1.52;
  max-width: none;
  color: #544a6c;
  margin: 0;
  text-wrap: pretty;
}

.automation-outcome {
  margin: 0.7rem auto 0;
  font-weight: 500;
  color: #4e4169;
  text-align: left;
  max-width: 64rem;
  padding: 1.1rem 1.2rem;
  border-left: 1px solid rgba(111,66,193,0.12);
  border-radius: 0.85rem;
  background: rgba(250,247,255,0.84);
  line-height: 1.6;
  box-shadow: 0 0.5rem 1.25rem rgba(73,46,126,0.04);
  border: 1px solid rgba(111,66,193,0.12);
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix {
    margin: 0.75rem !important;
    padding: 0.75rem !important;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .ellira-gallery-frame {
    padding: 0.45rem !important;
    padding-bottom: 0.6rem !important;
    border-radius: 0.9rem !important;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .ellira-screenshot-carousel {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .ellira-screenshot-carousel .splide__track {
    width: 100%;
    border-radius: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .ellira-screenshot-carousel .splide__slide {
    width: 100%;
    max-width: 100%;
    border-radius: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .ellira-screenshot-carousel .splide__slide img {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: auto;
    object-fit: contain;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .ellira-slide-caption {
    position: static;
    padding: 0.7rem 0.75rem;
    background: #fff;
    border-top: 1px solid rgba(111, 66, 193, 0.10);
    color: #241842;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .ellira-slide-caption h3 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .ellira-slide-caption p {
    font-size: 0.76rem;
    line-height: 1.35;
    margin: 0;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .splide-thumbnails {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.35rem;
    margin-top: 0.6rem;
    padding: 0.15rem 0.1rem 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .splide-thumbnail {
    flex: 0 0 66px;
    width: 66px;
    height: 42px;
    margin: 0;
    border-radius: 0.4rem;
    border: 1px solid rgba(111, 66, 193, 0.16);
    background: #fff;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .splide-thumbnail.is-active {
    border-color: var(--ellira-primary-strong);
    box-shadow: 0 0 0 1px rgba(111, 66, 193, 0.18);
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .splide-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0.35rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix .splide__arrow {
    width: 2.25rem;
    height: 2.25rem;
    opacity: 0.92;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 0.25rem 0.75rem rgba(36,24,66,0.14);
  }
}

@media (max-width: 575.98px) {
  .gallery-mobile-fix hr {
    margin: 0.5rem 0;
    opacity: 0.25;
  }
}

.automation-step::before {
  content: attr(data-step);
  position: absolute;
  top: -0.9rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--ellira-primary),#8d63ec);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 0.55rem 1.35rem rgba(91,55,190,0.22);
  z-index: 2;
}

.automation-step:hover, .automation-step:focus-within {
  transform: translateY(-3px);
  border-color: rgba(111,66,193,0.28);
  box-shadow: 0 1rem 2.5rem rgba(73,46,126,0.11);
}

.automation-flow .col {
  position: relative;
  display: flex;
}

@media (min-width: 1200px) {
  .automation-flow .col:not(:last-child) .automation-step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 1rem;
    height: 2px;
    background: rgba(111, 66, 193, 0.22);
    transform: translateY(-50%);
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .automation-flow .col:not(:last-child) .automation-step::after {
    display: none;
  }
}

.automation-step.step-4 {
  background: rgba(255,255,255,0.96);
  border-color: rgba(111,66,193,0.15);
}

.automation-step.step-4 h4 {
  color: var(--ellira-primary-strong);
}

.automation-step.step-4::before {
  background: linear-gradient(135deg,var(--ellira-primary),#8d63ec);
}

.automation-outcome strong {
  font-weight: 800;
  color: var(--ellira-primary-strong);
}

@media (max-width: 575.98px) {
  .automation-step p {
    text-wrap: pretty;
  }
}

.automation-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.automation-section::before {
  content: none;
  display: none;
}

.automation-shell {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.automation-kicker {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(111,66,193,0.08);
  color: var(--ellira-primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52rem;
}

.automation-preview {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  margin-top: auto;
  border: 1px solid rgba(111,66,193,0.12);
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 0.35rem 0.9rem rgba(73,46,126,0.045);
}

@media (min-width: 1200px) {
  .automation-flow .col:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 50%;
    right: -1.05rem;
    transform: translateY(-50%);
    display: block;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #f4edff;
    border: 1px solid rgba(111,66,193,0.18);
    color: transparent;
    font-size: 0;
    font-weight: 400;
    box-shadow: 0 0.35rem 0.9rem rgba(73,46,126,0.08);
    background-color: #f8f4ff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27none%27 stroke=%27%235b37be%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M6 3.5 10.5 8 6 12.5%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.85rem 0.85rem;
  }
}

@media (max-width: 1199.98px) {
  .automation-flow .col:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .automation-section {
    padding: 3.75rem 0;
  }
}

@media (max-width: 575.98px) {
  .automation-flow {
    row-gap: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .automation-step {
    padding: 1.75rem 1rem 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .automation-preview {
    margin-top: auto;
    border-radius: 0.65rem;
  }
}

@media (max-width: 575.98px) {
  .automation-outcome {
    padding: 1rem;
    font-size: 0.94rem;
  }
}

.automation-section::after {
  content: none;
  display: none;
}

.automation-card-copy {
  margin-bottom: 1rem;
}

.automation-icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  margin: 0 0 0.7rem;
  border-radius: 0.85rem;
  background: rgba(111,66,193,0.075);
  color: var(--ellira-primary-strong);
}

.automation-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
}

@media (max-width: 575.98px) {
  .automation-card-copy {
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .automation-icon {
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: 0.55rem;
  }
}

@media (max-width: 575.98px) {
  .automation-icon svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.mtd-section .ellira-story-visual {
  display: flex;
  align-items: center;
  height: 100%;
}

.mtd-feature-shot {
  width: 100%;
  object-fit: contain;
  object-position: center top;
}

.mtd-note {
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(111,66,193,0.35);
  border-radius: 0.6rem;
  background: rgba(255,255,255,0.55);
  color: var(--ellira-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mtd-section .ellira-check-list {
  margin-bottom: 0;
}

.site-section[id] {
  scroll-margin-top: 5.5rem;
}

.integration-story-section .ellira-feature-shot {
  max-width: 34rem;
  margin: 0 auto;
}

.calendar-section .ellira-feature-shot {
  max-width: 34rem;
  margin: 0 auto;
}

.standards-card-row > .col {
  display: flex;
}

.standards-card {
  width: 100%;
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--ellira-primary-border);
  border-radius: var(--ellira-radius);
  background: rgba(246, 241, 253, 0.35);
}

.standards-card h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.standards-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.standards-card li {
  margin-bottom: 0.45rem;
}

.tools-band-section {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.tools-band-section h2 {
  margin-bottom: 0.5rem;
}

.tools-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tool-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--ellira-primary-border);
  border-radius: 999px;
  background: #fff;
  color: var(--ellira-primary);
  font-weight: 700;
  box-shadow: 0 0.45rem 1rem rgba(73, 46, 126, 0.06);
}

.integration-card-row > .col {
  display: flex;
}

.integration-card .integration-logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(106, 72, 220, 0.10);
}

.integration-card .integration-logo img {
  width: 40px;
  height: 40px;
  display: block;
}

.integration-card .integration-logo img, .integration-card .integration-logo svg {
  width: 64px;
  height: 64px;
  display: block;
}

.integration-logo--calendly {
  background: linear-gradient(135deg, #EEF6FF 0%, #E8F8FF 100%);
}

.integration-logo--google {
  background: #FFFFFF;
  border: 1px solid rgba(17,24,39,0.06);
}

.integration-logo--microsoft {
  background: #FFFFFF;
  border: 1px solid rgba(17,24,39,0.06);
}

.integration-logo--icloud {
  background: transparent;
}

.integration-logo--caldav {
  background: transparent;
}

.integration-logo--freeagent {
  background: transparent;
}

.integration-card {
  padding: 2rem 2rem 2.1rem;
  background: #fff;
  border: 1px solid rgba(110, 82, 213, 0.18);
  border-radius: 1.35rem;
  box-shadow: 0 16px 40px rgba(92, 67, 181, 0.06);
}

.integration-card .integration-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  border-radius: 20px;
  overflow: visible;
  box-shadow: none;
}

.integration-card .integration-logo svg {
  width: 72px;
  height: 72px;
  display: block;
}

.integration-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.integration-card p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ellira-muted);
}

.integration-logo--calendly svg {
  filter: drop-shadow(0 10px 20px rgba(29, 155, 240, 0.12));
}

.integration-logo--googlecal svg {
  filter: drop-shadow(0 10px 20px rgba(66, 133, 244, 0.12));
}

.integration-logo--freeagent svg {
  width: 72px;
  height: 72px;
}

.integration-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: contain;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.plan-text {
  font-size: 1rem;
}

.pricing-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem;
  border: 1px solid var(--ellira-primary-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 .5rem 1.25rem rgba(73,46,126,.06);
}

.pricing-billing-toggle__button {
  border: 0;
  border-radius: 999px;
  padding: .65rem 1.05rem;
  font-weight: 700;
  color: var(--ellira-muted);
  background: transparent;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.pricing-billing-toggle__button:hover {
  color: var(--ellira-primary);
}

.pricing-billing-toggle__button:focus-visible {
  outline: 3px solid rgba(91,55,190,.2);
  outline-offset: 2px;
}

.pricing-billing-toggle__button.is-active {
  color: #fff;
  background: var(--ellira-primary);
  box-shadow: 0 .35rem .9rem rgba(91,55,190,.22);
}

.pricing-billing-toggle__saving {
  display: inline-block;
  margin-left: .35rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  font-size: .72em;
  font-weight: 800;
  background: rgba(255,255,255,.18);
}

.ellira-plan-price {
  margin: 0 0 .5rem;
}

.ellira-plan-price__headline {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  flex-wrap: wrap;
  font-weight: 800;
  line-height: 1.05;
}

.ellira-plan-price__amount {
  font-size: 2.55rem;
  letter-spacing: -.04em;
  color: var(--ellira-dark, #212529);
}

.ellira-plan-price__unit {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ellira-muted);
}

.ellira-plan-price__annual {
  margin-top: .4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ellira-primary);
}

.ellira-plan-price.is-monthly .ellira-plan-price__annual {
  display: none;
}

