/* Layout Styles
======================================= */
.plaud-container > div {
  margin-bottom: 40px;
}

.plaud-button-primary {
  padding: 0.625rem 1rem;
  background: #39f672;
  border: 1px solid #39f672;
  color: #111111;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.plaud-button-secondary {
  padding: 0.625rem 1rem;
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.plaud-button-primary:hover {
  background: #30d462;
  border-color: #30d462;
}

.plaud-button-secondary:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.8);
}

.plaud-section-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin: 32px;
}

.plaud-logo {
  width: 180px;
  margin: 16px 32px 0;
}

.plaud-hero {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.plaud-hero-content {
  position: absolute;
  inset: 0;
  margin: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.plaud-hero-content h1 {
  color: #ffffff;
}

.plaud-products-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
}

.plaud-product-card {
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 10px;
}

.plaud-product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.plaud-product-swatches {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

.plaud-product-swatch {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  display: inline-block;
  cursor: pointer;
  box-sizing: content-box;
}

.plaud-product-swatch.selected {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7);
}

.plaud-product-swatch::after,
.plaud-product-swatch::before {
  position: absolute;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    visibility 0.16s ease;
  z-index: 10;
}

.plaud-product-swatch::after {
  content: attr(data-tooltip);
  bottom: 100%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1.2;
  border-radius: 4px;
  white-space: nowrap;
}

.plaud-product-swatch::before {
  content: "";
  bottom: calc(120%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.9);
}

.plaud-product-swatch:hover::after,
.plaud-product-swatch:focus-visible::after,
.plaud-product-swatch:hover::before,
.plaud-product-swatch:focus-visible::before {
  opacity: 1;
  visibility: visible;
}

.plaud-product-link {
  display: inline-block;
  transition: transform 0.5s ease;
}

.plaud-product-link:hover,
.plaud-product-link:focus-visible {
  transform: scale(1.08);
}

.plaud-product-link img {
  display: block;
  max-width: 100%;
  transition: transform 0.5s ease;
}

.plaud-real-work-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  cursor: grab;
  width: auto;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.plaud-real-work-content::-webkit-scrollbar {
  display: none;
}

.plaud-real-work-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 20px;
  z-index: 1;
}

.plaud-card-nav {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #000000;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.plaud-card-nav svg {
  display: block;
}

.plaud-card-nav:hover:not(:disabled) {
  color: #39f672;
}

.plaud-card-nav:disabled {
  opacity: 0.35;
}

.plaud-card {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  border-radius: 10px;
  height: 100vw;
  width: 100%;
  transition:
    width 600ms ease,
    min-width 600ms ease,
    height 600ms ease,
    transform 600ms ease;
}

.plaud-card.expanded {
  width: 100%;
  height: 100vh;
}

.plaud-card-image {
  height: 120%;
  width: 120%;
  object-fit: cover;
  object-position: left;
  transition: all 600ms ease;
}

.plaud-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0000, #00000082);
  pointer-events: none;
  z-index: 0;
}

.plaud-card.expanded .plaud-card-image {
  height: 100%;
  width: 100%;
}

.plaud-card-content {
  position: absolute;
  inset: 20px;
  z-index: 1;
}

.plaud-card-content-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  width: 100%;
}

.plaud-card-content * :not(svg) {
  color: #ffffff;
}

.plaud-card-top {
  display: flex;
  justify-content: space-between;
}

.plaud-card-expand {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 600ms ease;
}

.plaud-card-expand:hover {
  background-color: white;
}

.plaud-card-expand:hover svg,
.plaud-card-expand:hover svg path {
  stroke: black !important;
  fill: black !important;
  color: black !important;
}

.plaud-card-expand svg {
  transition: transform 600ms ease;
  color: inherit;
  fill: currentColor;
}

.expanded .plaud-card-expand svg {
  transform: rotate(45deg);
}

.plaud-card-detail {
  display: flex;
  flex-direction: column;
  gap: 0px;
  max-width: 420px;
  transition: all 0.8s ease;
}

.expanded .plaud-card-detail {
  gap: 15px;
}

.plaud-card-heading {
  display: flex;
  justify-content: space-between;
  font-size: 20px !important;
  transition: all 600ms ease;
}

.expanded .plaud-card-heading {
  font-size: 24px !important;
}

.plaud-card-description {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease 0.2s,
    transform 0.8s ease 0.2s,
    max-height 0.8s ease 0.2s,
    visibility 0s linear 0s;
  height: 0;
}

.expanded .plaud-card-description {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition:
    opacity 0.8s ease 0.2s,
    transform 0.8s ease 0.2s,
    max-height 0.8s ease 0.2s,
    visibility 0s linear 0s;
  height: 100%;
}

.plaud-card-widget {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 360px;
  opacity: 0;
  transform: translate(50px);
  visibility: hidden;
  transition:
    opacity 0.4s ease 0.1s,
    transform 1s cubic-bezier(0.2, 0, 0.2, 1) 0.2s,
    visibility 0s linear 0.3s;
}

.expanded .plaud-card-widget {
  opacity: 1;
  transform: translate(0px);
  visibility: visible;
  transition:
    opacity 0.8s ease 0.3s,
    transform 1s cubic-bezier(0.2, 0, 0.2, 1) 0.3s,
    visibility 0s linear 0.3s;
}

.plaud-user-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.plaud-user-image {
  width: 44px;
  height: 44px;
  border-radius: 100px;
}

.plaud-user-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.plaud-user-name {
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 400;
}

.plaud-user-role {
  font-size: 14px;
}

.plaud-user-quote {
  margin-top: 15px;
}

.plaud-user-features {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}

.plaud-user-feature-1 {
  position: relative;
}

.plaud-user-feature-1:after {
  content: " ";
  height: 100%;
  width: 1px;
  position: absolute;
  background-color: white;
  display: block;
  right: -15px;
  top: 0;
}

.plaud-card-heading {
  color: #ffffff !important;
  font-weight: 400;
}

.plaud-work-smarter-tab-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 2.5rem 0;
  padding: 10px 0;
}

.plaud-work-smarter-description {
  text-align: center;
  font-size: 24px;
  margin-bottom: 32px;
}

.plaud-work-smarter-tab {
  font-size: 24px;
  font-weight: 600;
}

.plaud-work-smarter-content-desktop > div {
  display: none;
}

.plaud-work-smarter-content-desktop > div.active {
  display: block;
}

.plaud-work-smarter-content-desktop .plaud-work-smarter-tab {
  cursor: pointer;
}

.plaud-work-smarter-capture .active,
.plaud-work-smarter-capture.active {
  color: #39f672;
}
.plaud-work-smarter-extract .active,
.plaud-work-smarter-extract.active {
  color: #00d0ff;
}
.plaud-work-smarter-utilise .active,
.plaud-work-smarter-utilise.active {
  color: #8f53ed;
}

.plaud-work-smarter-video {
  display: flex;
  justify-content: center;
}

.plaud-blur {
  padding: 0.625rem 1rem;
  border-radius: 5px;
  backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(0, 0, 0, 0.1);
}

.plaud-intelligence-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
  align-content: space-between;
}

.plaud-intelligence-card {
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
  gap: 32px;
  border-radius: 10px;
}

.plaud-intelligence-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plaud-intelligence-card-stack div {
  gap: 0;
  padding-bottom: 8px;
  flex: 1 1 0;
}

/* Font Styles
======================================= */

.plaud-container h1 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 32px;
}

.plaud-container h2 {
  font-size: 42px;
  line-height: 1.2;
}

.plaud-container h3 {
  font-size: 24px;
  line-height: 1.2;
}

.plaud-container h4 {
  font-size: 22px;
  line-height: 1.4;
}

.section-heading {
  margin: 0;
  text-align: center;
  font-weight: 400;
}

.section-sub-heading {
  margin: 0;
  text-align: center;
  font-weight: 400;
  color: #7a7a7a;
}

sup {
  font-size: 12px !important;
  vertical-align: super;
  margin-left: 3px;
}

.plaud-intelligence-card h2 {
  font-size: 14px;
}

@media screen and (min-width: 990px) {
  .plaud-container h1 {
    font-size: 48px;
  }
}

@media screen and (min-width: 768px) {
  .plaud-container h1 {
    font-size: 32px;
  }

  .plaud-intelligence-card h2 {
    font-size: 18px;
  }
}

/* Media Queries
======================================= */
@media screen and (max-width: 767px) {
  .plaud-real-work-pagination {
    display: flex;
  }

  .plaud-card-content-inner {
    justify-content: flex-start;
    gap: 16px;
  }

  .plaud-card-detail {
    margin-top: auto;
    max-width: 100%;
  }

  .plaud-card-widget {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 16px;
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  .plaud-card.expanded .plaud-card-widget {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 768px) {
  .plaud-real-work-pagination {
    display: none;
  }

  .plaud-logo {
  width: 220px;
  margin: 40px 64px 0;
}

  .plaud-hero-content {
    width: 40%;
    margin: 0 64px;
    align-items: flex-start;
    justify-content: center;
  }

  .plaud-products-content {
    flex-direction: row;
  }

  .plaud-intelligence-content {
    flex-direction: row;
  }

  .plaud-work-smarter-tab-list {
    background: #f7f7f7b3;
  }

  .plaud-card {
    height: clamp(300px, 300px + 20vw, 500px);
    width: calc(41.67% - 15px * 0.5833);
  }

  .plaud-card.expanded {
    width: 80%;
    height: clamp(300px, 300px + 20vw, 500px);
  }
}
