/*
Theme Name: Clever
Theme URI: https://clevertask.site
Author: Imran
Author URI: https://imrn.dev
Description: A custom WordPress theme built from scratch.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: clever
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-image: url(/wp-content/themes/clever/assets/images/background.png);
  background-position: center 500px;
  background-size: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

svg {
  vertical-align: sup;
}

/* ========== CSS Variables ========== */
:root {
  /* Main color scheme */
  --color-primary: rgb(74, 12, 223);
  --color-black: #101828;
  --color-white: rgb(255, 255, 255);

  /* Section specific colors */
  --purple: #300266;
  --text: #0C111D;
  --muted: #6B7280;
  --muted-alt: #5D5C6B;

  /* Background gradients */
  --bg-grad: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);

  /* Chips and borders */
  --chip: #ffffff;
  --chip-border: #D1D5DB;
  --chip-ghost: rgba(255, 255, 255, .25);

  /* Border radius */
  --radius: 16px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow: 0 20px 40px rgba(16, 24, 40, .12);
  --shadow-sm: 0 2px 6px rgba(16, 24, 40, .08);
  --shadow-btn: 0 8px 24px rgba(12, 17, 29, .35);
  --shadow-stories: 0 25px 60px rgba(0, 0, 0, .18);
  --shadow-stories-sm: 0 6px 18px rgba(0, 0, 0, .12);
}

/* ========== Body & Typography ========== */
body {
  font-family: "Aribau Grotesk TRIAL", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  padding-top: 4rem;
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
  border-radius: 4px;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: rgb(152 162 179);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(52 64 84);
}

/* ========== Container ========== */
.container {
  max-width: 1280px;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-inline: auto;
}

/* ========== Header Section ========== */
.site-header {
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: var(--color-white);
  width: 100%;
  box-shadow: 0px 4px 6px -2px #10182808, 0px 12px 16px -4px #10182814;
}

.header-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  height: 72px;
}

.brand-logo {
  margin-right: 1.25rem;
  position: relative;
  top: 2px;
}

/* Navigation */
.site-nav-list {
  display: flex;
}

.site-nav-menu {
  all: unset;
  display: block;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  padding: 1.5rem 0.65rem;
  cursor: pointer;
  color: var(--color-black);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.site-nav-menu:hover {
  color: var(--color-primary);
}

.site-nav-menu [aria-label="chevron-down"] {
  margin-left: 3px;
  transition: transform ease 0.35s;
  vertical-align: text-top;
}

.site-nav-menu[aria-expanded="true"] [aria-label="chevron-down"] {
  transform: rotate(-180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 1000;
  background-color: var(--color-white);
  width: 100%;
}

button[aria-expanded="true"]+.dropdown-menu {
  display: block;
  box-shadow: 0px -1px 0 0 #eaecf0, 0px 4px 6px -2px #10182808, 0px 12px 16px -4px #10182814;
}

.dropdown-left-view {
  width: 100%;
}

.dropdown-right-view {
  width: 33.333333%;
  position: relative;
}

.dropdown-right-view::after {
  content: "";
  background-color: #f9fafb;
  height: 100%;
  width: 100vw;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.dropdown-right-view .cols {
  position: relative;
  z-index: 1;
}

.dropdown-right-view-100 {
  width: 100%;
}

.dropdown-right-view-100::after {
  display: none;
}

.dropdown-right-view-50 {
  width: 50%;
}

.dropdown-left-view-50 {
  width: 50%;
}

.cols {
  gap: 1.5rem;
}

.col-33 {
  width: 33%;
}

.col-title {
  padding-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 800;
  color: rgb(102 112 133);
  font-size: 1rem;
  line-height: 1.5;
}

.col-list {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.col-list li a {
  color: var(--color-black);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.55;
  text-decoration: none;
  display: flex;
  gap: 0.75rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.col-list-icon {
  color: var(--color-primary);
}

.col-list-content {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: rgb(71 84 103);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.col-list-content span {
  color: var(--color-black);
}

.col-list-content small {
  font-weight: 300;
  font-size: 1rem;
}

.dropdown-alert {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background-color: #ece5f980;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.dropdown-alert-left {
  gap: 1rem;
  display: flex;
}

.dropdown-alert-icon {
  background-image: linear-gradient(160.83deg, #d9d5ff00 -18.43%, #7c30d9 75.62%),
    linear-gradient(0deg, #ffa4fb, #ffa4fb),
    linear-gradient(0deg, #101828, #101828);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  height: 2rem;
  width: 2rem;
}

.dropdown-alert-content {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  flex-direction: column;
}

.dropdown-alert-title {
  color: var(--color-black);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.55;
}

.dropdown-alert-sub-title {
  color: rgb(71 84 103);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.dropdown-alert-cta {
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.4;
  background-color: var(--color-primary);
  padding: 0.6rem 14px;
  border-radius: 50px;
  text-decoration: none;
}

.dropdown-card-image {
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}

.contact-us-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background-color: rgb(236 229 249);
  gap: 2rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-black);
}

.contact-us-bar a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.4;
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


@keyframes flipUpSmooth {
  0% {
    transform: rotateX(15deg);
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

button[aria-expanded="true"]+.dropdown-menu .dropdown-left-view>*,
button[aria-expanded="true"]+.dropdown-menu .dropdown-right-view>* {
  transform-origin: bottom center;
  animation: flipUpSmooth 600ms cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  backface-visibility: hidden;
}



/* Header Actions */
.site-header__actions {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.site-header__search {
  color: var(--color-black);
}

.site-header__lang {
  position: relative;
  color: var(--color-black);
  border-radius: 6px;
  padding: 0.25rem 6px;
  background-color: rgb(234 236 240);
  cursor: pointer;
  width: 56px;
  margin-left: -0.5rem;
}

.site-header__lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  color: rgb(71 84 103);
}

.site-header__lang-btn svg[aria-label="chevron-down"] {
  margin-left: 0.25rem;
  transition: transform ease 0.35s;
}

.site-header__lang.active .site-header__lang-btn svg[aria-label="chevron-down"] {
  transform: rotate(-180deg);
}

.site-header__lang-menu {
  position: absolute;
  top: 48px;
  bottom: auto;
  background-color: var(--color-white);
  border: 1px solid rgb(234, 236, 240);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  overflow-y: auto;
  max-height: 210px;
  width: 320px;
  z-index: 40;
  left: 50%;
  transform: translateX(-50%);
}

.site-header__lang:not(.active) .site-header__lang-menu {
  visibility: hidden;
}

.site-header__lang-option {
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  border-radius: 0.375rem;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__lang-option:not(.site-header__lang-option--selected):hover {
  background-color: rgb(249 250 251);
}

.site-header__lang-option:not(.site-header__lang-option--selected) svg {
  visibility: hidden;
}

.site-header__lang-option--selected {
  background-color: rgb(147 89 255 / 0.04);
}

.site-header__login {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.55;
  padding-block: 10px;
  white-space: nowrap;
  color: var(--color-black);
}

.site-header__login:hover {
  color: var(--color-primary);
}

.site-header__get-started {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5;
  padding: 11px 19px;
  border-radius: 46px;
  white-space: nowrap;
}

.site-header__get-started:hover {
  background-color: rgb(54 8 215);
}

/* Mobile Menu Toggle */
.toggle-sidebar {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.toggle-sidebar .line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-sidebar .line1 {
  stroke-dasharray: 60 207;
}

.toggle-sidebar .line2 {
  stroke-dasharray: 60 60;
}

.toggle-sidebar .line3 {
  stroke-dasharray: 60 207;
}

.toggle-sidebar.active .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.toggle-sidebar.active .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.toggle-sidebar.active .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

/* ========== Banner Section ========== */
.banner-section {
  background-image: linear-gradient(127deg, #5408ac -18.91%, #801ed7 44.07%, #ffa524 104.04%);
  position: relative;
  overflow: hidden;
  padding-bottom: 7.5rem;
}

.banner-content {
  display: flex;
}

.banner-content-left {
  padding-block: 6rem;
  width: 50%;
  padding-right: 2rem;
  max-width: 592px;
}

.banner-title {
  font-size: 3rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-white);
  font-weight: 800;
  padding-bottom: 1.5rem;
}

.banner-title sup {
  font-size: 1.10rem;
  line-height: 1.55;
  font-weight: 300;
  position: relative;
  top: 2px;
  left: -12px;
}

.banner-sub-title {
  color: var(--color-white);
  padding-bottom: 2rem;
  line-height: 27.9px;
  font-weight: 300;
}

.banner-content-right {
  width: 50%;
  max-width: 800px;
  height: calc(100% + 100px);
  top: 0;
  left: 50%;
  position: absolute;
  flex-grow: 1;
}

.banner-image-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
}

.banner-content-right .illustration {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;
  max-width: 610px;
  object-position: top;
}

.play-button {
  backdrop-filter: blur(4px);
  background: linear-gradient(180deg, #c9c4ff66, #801ed766 51.22%, #ffa52466) padding-box, linear-gradient(#f6f8fc05, #f6f8fc05) padding-box, radial-gradient(77.42% 81.02% at 61.37% 103.96%, #fffc 0, #fff0 100%) border-box, linear-gradient(0deg, #fff3, #fff3) border-box;
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  transform: translate(-50%, -48%);
  height: 6rem;
  width: 6rem;
  top: 42%;
  left: 50%;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  align-items: center;
  display: flex;
  justify-content: center;
}


.play-button:hover+.illustration {
  will-change: transform;
  transform: scale(105%);
}

.group-cta {
  gap: 1rem;
  flex-wrap: wrap;
  display: flex;
}

.group-cta .cta {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
  background-color: var(--color-white);
  color: var(--color-black);
  text-decoration: none;
  box-shadow: 0px 1px 2px 0px #1018280d;
  text-align: center;
  padding: 0.82rem 1.31rem;
  border-radius: 50px;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-overlay.active {
  display: flex;
}

.popup {
  background: linear-gradient(135deg, #8e2de2, #ff6a00);
  border-radius: 0.5rem;
  width: 984px;
  max-width: 90%;
  color: white;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.wistia_responsive_padding {
  border-radius: 0.5rem;
  overflow: hidden;
}

.popup-close {
  position: absolute;
  top: -0.8rem;
  right: -1.5rem;
  cursor: pointer;
}

/* ========== Stories Section ========== */
.stories {
  background-image: linear-gradient(323deg, #e9371f -.14%, #ffa524 49.92%, #ffa4fb 102.11%), linear-gradient(101deg, #c9c4ff -12.65%, #801ed7 41.93%, #ffa524 93.91%);
  padding: 64px 0 80px;
}

.intro {
  max-width: 70%;
}



/* Products details */
/* Sticky Navbar */

.sticky-navbar {
  position: sticky;
  top: 82px;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 50px;
  z-index: 998;
  padding: 10px 0;
  text-align: center;
  overflow-x: auto;
  white-space: nowrap;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.10);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sticky-navbar::-webkit-scrollbar {
  display: none;
}



@keyframes slideDown {
  from {
    top: -60px;
  }

  to {
    top: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sticky-navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sticky-navbar ul li {
  display: inline;
  margin: 0 2px;
}

.sticky-navbar ul li a {
  color: rgb(78 91 109);
  text-decoration: none;
  font-size: 14px;
  position: relative;
  display: inline-block;
  background-color: #eaecf0;
  border-radius: 50px;
  padding: 12px 30.5px;
  font-weight: 700;
  transition: all 0.3s;
}

.sticky-navbar ul li a:hover {
  color: #FFFFFF;
  background-color: #5711e5;

}

/* Section Styles */
.section {
  padding: 100px 0;
  text-align: center;
  font-size: 24px;
  color: #333;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#section1 {
  animation-delay: 0.2s;
}

#section2 {
  animation-delay: 0.4s;
}

#section3 {
  animation-delay: 0.6s;
}

#section4 {
  animation-delay: 0.8s;
}

.sticky-txtimg-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.row-reverse {
  flex-direction: row-reverse;
}

.sticky-txtimg-boxleft,
.sticky-txtimg-boxright {
  width: 45%;
}

.sticky-copy-block {
  text-align: left;
}

.sticky-copy-block h3 {
  font-size: 34px;
  line-height: 123%;
  color: #101828;
}

.sticky-copy-block p {
  font-size: 18px;
  line-height: 142%;
  color: rgb(52 64 84);
}

.sticky-copy-block p.light-purple {
  color: #faa8e0;
}

.sticky-copy-block p.txt-red {
  color: #c11574;
}

.sticky-copy-block p.txt-orange {
  color: #b54708;
}

.sticky-copy-block p.txt-gray {
  color: #667085;
}

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

.round-cta {
  display: inline-block;
  background-color: #000;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0px 4px 8px 4px rgb(202 184 218);
  transition: all 0.3s;
  margin-top: 30px;
}

.round-cta:hover {
  background-color: #1505c9;
}

.cert-block {
  padding: 40px 0;
}

.cert-block img {
  display: inline-block;
  margin: 0 10px;
}

/** Grid box **/
:root {
  --card-radius: 22px;
  --card-pad: 22px;
  --stroke: rgba(255, 255, 255, 0.75);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.scroll-fluid {
  background-color: #ececec;
  background-image: url(/wp-content/themes/clever/assets/images/Supergraphic-5.svg), linear-gradient(180deg, #f3f3fa, #f3f3fa00 10%), linear-gradient(0deg, #fff6, #fff6), linear-gradient(112deg, #d2f3f3 4.88%, #ffa4fb 61.95%, #ffa524 116.3%);
  background-position: center 100px, 50%, 50%, 50%, 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 120px 0;
}

.scrollsticky-wrap {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 20px;
}

.scrollsticky-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 260px 300px 220px;
  gap: 22px;
}

.scrollsticky-card {
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  backdrop-filter: blur(12px);
  background-color: #fff3;
  color: #300266;
}

.scrollsticky-media {
  overflow: hidden;
  border-radius: calc(var(--card-radius) - 6px);
  height: 100%;
  background-image: url(/wp-content/themes/clever/assets/images/bento-card-bg.svg);
  width: 100%;
}

.scrollsticky-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.scrollsticky-media--custom {
  background-image: url(/wp-content/themes/clever/assets/images/card2-img.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  backdrop-filter: blur(12px);
  background-color: #fff3;
}

.scrollsticky-media--custom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}



.scrollsticky-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: #0b0b0f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.scrollsticky-btn:hover {
  background-color: #5711e5;
}

.scrollsticky-logo {
  border-radius: var(--card-radius);
  background: linear-gradient(146deg, #7a3ff2 0%, #9136f2 40%, #f254a3 80%, #f9a33c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 58px;
  letter-spacing: 1px;
  text-transform: lowercase;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.scrollsticky-eyebrow {
  font-size: 14px;
  font-weight: 700;
  opacity: .8;
  margin: 0 0 6px;
}

.scrollsticky-title {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.scrollsticky-title-lg {
  font-size: 40px;
  line-height: 1.05;
  margin: 0;
}

#scrollsticky-card-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 0
}

#scrollsticky-card-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

#scrollsticky-card-3 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

#scrollsticky-card-4 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

#scrollsticky-card-5 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

#scrollsticky-card-6 {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

#scrollsticky-card-7 {
  grid-column: 4 / 5;
  grid-row: 2 / 4;
}

#scrollsticky-card-8 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

#scrollsticky-card-9 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

#scrollsticky-card-2 .scrollsticky-title {
  font-size: 22px;
  font-weight: 700;

}

#scrollsticky-card-2 .scrollsticky-eyebrow {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 15px;
}

#scrollsticky-card-9 .scrollsticky-title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 15px;
}

#scrollsticky-card-9 .scrollsticky-eyebrow {
  font-size: 26px;
  font-weight: 700;
}

#scrollsticky-card-8 .scrollsticky-title {
  font-size: 26px;
  font-weight: 700;
}

#scrollsticky-card-7 {
  padding: 0;
}

#scrollsticky-card-4 .scrollsticky-title {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 15px;
}

#scrollsticky-card-4 .scrollsticky-eyebrow {
  font-size: 26px;
  font-weight: 600;
}

.scroll-fluid-heading {
  font-size: 56px;
  font-weight: 700;
  color: #2f0c6b;
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
}

.scroll-fluidtxt {
  font-size: 20px;
  font-weight: 700;
  color: #2f0c6b;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
  line-height: 172%;
}



.wpcf7 {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
}

.wpcf7-form-control {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
}


.wpcf7 label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #444;
}

.wpcf7-submit {
  width: 100%;
  padding: 12px 20px;
  background-color: #0073aa;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #005a87;
}


.wpcf7-response-output {
  margin: 15px 0 0 0;
  padding: 10px;
  border-radius: 5px;
  font-weight: normal;
}

.wpcf7-validation-errors {
  border: 1px solid #dc3232;
  background: #fde4e4;
  color: #dc3232;
}

.wpcf7-mail-sent-ok {
  border: 1px solid #46b450;
  background: #e6f6e8;
  color: #2a7f31;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  margin-top: -10px;
  display: block;
}

@media screen and (min-width: 600px) {
  .wpcf7-submit {
    width: auto;
    min-width: 150px;
  }
}





/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .scrollsticky-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 260px;
  }

  .scrollsticky-grid>* {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  #scrollsticky-card-6 {
    /* min-height: 300px; */
  }
}

@media (max-width: 600px) {
  .scrollsticky-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}

/* Stories Header */
.stories .head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-block: 50px 30px;
}

.story .photo img {
  transition: transform 0.3s ease;
}

.story:hover .photo img {
  will-change: transform;
  transform: scale(105%);
}


@media (min-width: 768px) {
  .stories .head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

}

.stories .title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--purple);
  font-size: 3.75rem;
  line-height: 1.25;
}

.stories .sub {
  margin: 0;
  color: var(--purple);
  font-size: 18px;
}

.stories .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #0C111D;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.stories .cta:hover {
  transform: translateY(-1px);
}

/* Stories Tabs */
.tabs {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  overflow: auto;
  padding: 18px 0 8px;
}

.tab {
  white-space: nowrap;
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 800;
  backdrop-filter: blur(5px);
  background: var(--chip-ghost);
  color: #3b3b4e;
  transition: background .2s ease, color .2s ease;
}

.tab:hover {
  background: rgba(255, 255, 255, .4);
  color: var(--purple);
}

.tab.is-active {
  background: var(--purple);
  color: #fff;
}

/* Stories Panel */
.panel {
  margin-top: 16px;
}

.stories .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 992px) {
  .stories .grid {
    grid-template-columns: 3fr 1fr;
    gap: 24px;
    align-items: stretch;
    min-height: 520px;
  }
}


.products-section-header {
  font-size: 60px;
  text-align: center;
  line-height: 112%;
  font-weight: 900;
}

.product-section-para {
  font-size: 20px;
  text-align: center;
  color: #344054;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0 50px 0;
}


.sticky-copy-block h3 {
  font-size: 34px;
  line-height: 123%;
  color: #101828;
  padding: 15px 0 25px 0;
}





/* Story Card */
.story {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, .25);
  padding: 24px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  text-decoration: none;
  color: var(--purple);
  box-shadow: var(--shadow-stories-sm);
  overflow: hidden;
  justify-content: end;
}

.story:hover {
  background: rgba(255, 255, 255, .4);
}

.story .logo {
  height: 40px;
  margin-bottom: auto;
}

.story .logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.story .quote {
  font-size: 20px;
  font-weight: 800;
}

@media (min-width: 1024px) {
  .story .quote {
    max-width: 380px;
  }
}

.story .person {
  display: flex;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  max-width: 380px;
}

.story .name {
  padding-right: 12px;
  border-right: 2px solid var(--purple);
}

.story .role {
  padding-left: 12px;
  font-weight: 300;
}

.story .photo {
  position: absolute;
  inset: auto 0 0 auto;
  width: 53%;
  height: 100%;
  display: none;
}

@media (min-width: 1024px) {
  .story .photo {
    display: block;
  }
}

.story .photo img {
  -webkit-mask: url(/wp-content/themes/clever/assets/images/mask.svg);
  mask: url(/wp-content/themes/clever/assets/images/mask.svg);
  -webkit-mask-position: 0 center;
  mask-position: 0 center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.story .photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  -webkit-mask: radial-gradient(140px 140px at 0 0, transparent 98px, #000 100px) top left;
  -webkit-mask-composite: source-over;
  background: transparent;
}

/* Metrics */
.metrics {
  display: flex;
  gap: 12px;
}

@media (min-width: 768px) {
  .metrics {
    flex-direction: column;
  }
}

.metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(20px);
  color: var(--purple);
  box-shadow: var(--shadow-stories-sm);
}

.metric .value {
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 900;
  line-height: .95;
}

.metric .label {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}

/* ========== Resources Section ========== */
.resources {
  background: var(--bg-grad);
  padding: 24px 0 64px;
}

@media (min-width: 640px) {
  .resources {
    padding: 32px 0 80px;
  }
}

@media (min-width: 1024px) {
  .resources {
    padding: 40px 0 120px;
  }
}

.resources-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 24px 0;
}

.resources-title {
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
}

.resources-blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #0C111D;
  color: #fff;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: var(--shadow-btn);
  position: relative;
  top: 6px;
}

.resources-blog-btn:hover {
  transform: translateY(-2px);
}

.resources .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 100px;
}

@media (min-width: 768px) {
  .resources .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .resources .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .resources .grid>.card:nth-child(3n) {
    transform: translateY(-80px);
  }

  .resources .grid>.card:nth-child(3n+2) {
    transform: translateY(-40px);
  }
}

.resources .card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}

.resources .card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.resources .media {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #EEF2FF 0%, #F9FAFB 100%);
}

.resources .media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
  .resources .media img {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .resources .media img {
    height: 190px;
  }
}

.resources .content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.resources .meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.resources .badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 50px;
  background: var(--chip);
  border: 1px solid var(--chip-border);
  color: #111827;
  font-weight: 800;
  font-size: 14px;
}

.resources .reading-time {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.resources .card-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.resources .card-title:hover {
  color: #3608d7;
  transition: color 0.3s ease;
}



/* ========== CTA Hero Section ========== */
.cta-hero {
  position: relative;
  isolation: isolate;
  text-align: center;
  color: #fff;
  padding: 72px 16px 120px;
  background: linear-gradient(180deg, #6B21D9 0%, #6B21D9 40%, #6D28D9 70%, rgba(124, 29, 139, .85) 100%);
}

@media (min-width: 768px) {
  .cta-hero {
    padding: 120px 16px 160px;
  }
}

.cta-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(180% 60% at 50% 95%, rgba(60, 0, 60, .25) 0%, rgba(0, 0, 0, .25) 30%, transparent 60%),
    radial-gradient(140% 50% at 50% 100%, rgba(0, 0, 0, .12) 0%, transparent 60%);
  mix-blend-type: multiply;
  pointer-events: none;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-title {
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(36px, 7vw, 88px);
}

.cta-sub {
  margin: 0 auto 28px;
  max-width: 760px;
  font-size: clamp(16px, 2.1vw, 20px);
  opacity: .95;
}

.cta-actions {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 50px;
  color: #0C111D;
  background: #fff;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #EDE9FE;
  opacity: .95;
}

.btn-link:hover {
  opacity: 1;
}


/* slider */
.slider-section {
  padding-top: 5rem;
  padding-bottom: 4rem;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  margin-top: -4rem;
  background-color: rgb(249 250 251);
  overflow: hidden;
  position: relative;
}

.slider-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.slider-heading {
  min-width: 384px;
  color: #0d0d18;
  font-size: 3rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-weight: 800;
}

.slider-content {
  flex: 2;
  position: relative;
  overflow: hidden;
  min-width: 6080px;
  align-items: stretch;
  display: flex;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
  width: 800px;
  padding-bottom: 60px;
}

.slide {
  min-width: 100%;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, background-size 0.2s ease;
  background-image: url(/wp-content/themes/clever/assets/images/card-bg.svg);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 250px 250px;
  background-color: rgb(243 177 247);
  padding: .5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  height: 100%;
  width: 800px;
  margin-inline: 8px;
  position: relative;
}

.slide:hover {
  box-shadow: 0px 24px 48px -12px #1018282e;
  background-size: 300px 300px;
}

.slide-content {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.slide-content img {
  object-fit: contain;
  height: 18px;
  width: auto;
}

.slide-content .cta-button {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 800;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 10px 1rem;
  white-space: nowrap;
  border-radius: 50px;
  box-shadow: 0px 0px 20px 4px #801ed71a, 0px 33px 30px 0px #3002660d,
    0px 13.787px 33.422px 0px #30026617, 0px 7.371px 17.869px 0px #30026612,
    0px 4.132px 10.017px 0px #3002660f, 0px 2.195px 5.32px 0px #3002660d,
    0px 0.913px 2.214px 0px #30026608, 0px 1px 2px 0px #1018280d;
}

.slider-overlay {
  position: absolute;
  inset: 0;
}

@keyframes bgAnimationBack {
  0% {
    background-size: 300px 300px;
  }

  to {
    background-size: 250px 250px;
  }
}

.slide p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Navigation Tabs */
.slider-nav {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
  justify-content: center;
}

.nav-btn {
  border-radius: 50px;
  border: none;
  background-color: var(--color-white);
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  padding: 1.25rem 1rem;
  height: 64px;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn.active {
  background: var(--color-primary);
}

.nav-btn:not(.real-color).active img {
  filter: brightness(0) invert(100%);
}

.nav-btn:not(.active):hover {
  background-color: #30026640;
}

.nav-btn img {
  object-fit: contain;
  vertical-align: middle;
  height: 18px;
}

@media (max-width: 1280px) {

  .slide,
  .slides {
    width: 540px;
  }
}

@media (max-width: 1023px) {
  .slider-container {
    flex-direction: column;
  }

  .nav-btn {
    min-width: auto;
  }


}

@media (max-width: 768px) {
  .slides {
    width: 92vw;
    padding-right: 16px;
    margin-left: -0.5rem;
  }

  .slide {
    width: calc(92vw - 2rem);
  }

  .slider-nav {
    flex-direction: column;
  }

  .slider-content {
    min-width: unset;
  }

  .slider-thumbnail {
    display: none;
  }
}

@media (max-width: 500px) {
  .slides {
    width: calc(87vw);
  }
}



/* ========== Footer Section ========== */
.footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3ECFF 45%, #E8DAFA 100%);
  padding: 64px 0;
}


.footer .brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.footer .brand-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(28px, 4vw, 48px);
  color: #0C111D;
}

.footer .social {
  display: flex;
  gap: 16px;
}

.footer .social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: #0C111D;
}

.footer .social-link svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.footer .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .footer .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer .col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .ft-head {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 800;
  color: #0C111D;
}

.footer .space {
  margin-top: 24px;
}

.footer .ft-list {
  display: flex;
  flex-direction: column;
}

.footer .ft-link {
  padding: 6px 0;
  color: #0C111D;
  font-size: 14px;
}

.footer .ft-link:hover {
  color: #1505C9;
}

.footer .divider {
  border: 0;
  border-top: 1px solid #D1D5DB;
  margin: 16px 0 0;
}

.footer .badges {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 16px;
}

.footer .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #D1D5DB;
  border-radius: 50px;
  background: #fff;
  color: #111827;
  font-weight: 800;
  font-size: 12px;
}

.footer .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 28px;
  color: #0C111D;
  font-size: 12px;
}

.footer .legal-link {
  color: #0C111D;
}

.footer .separator {
  opacity: .4;
}

/* ========== Utility Classes ========== */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.text-small {
  font-size: 0.875rem;
}

.color-black {
  color: var(--color-black);
}

.color-primary {
  color: var(--color-primary);
}

/* Spacing utilities */
.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-2-5 {
  padding-top: 2.3rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}




.tabs {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}



/* ========== Media Queries ========== */
@media (max-width: 1280px) {
  .site-nav {
    display: none;
  }

  .toggle-sidebar {
    display: block;
  }
}

@media (max-width: 1023px) {
  .banner-content {
    flex-direction: column;
  }

  .banner-content-right {
    width: 100%;
    height: auto;
    position: unset;
  }

  .container {
    max-width: 768px;
  }

  .banner-content-left {
    width: 100%;
    max-width: unset;
  }
}

@media (max-width: 768px) {
  .intro {
    max-width: 100%;
  }

  .site-header__search,
  .site-header__lang,
  .site-header__login {
    display: none;
  }

  .site-header__get-started {
    padding: 10px 18px;
  }

  .banner-title {
    font-size: 2.1rem;
    letter-spacing: -.02em;
    line-height: 1.22;
    position: relative;
  }

  .banner-content-left {
    padding-block: 2rem;
    padding-right: 0;
  }

  .banner-content-right {
    padding-top: 4.5rem;
  }

  .group-cta .cta {
    width: 100%;
  }

  .tablist {
    display: flex;
    flex-direction: column-reverse;
  }

  .sticky-txtimg-boxleft,
  .sticky-txtimg-boxright {
    width: 100%;
  }

  .sticky-navbar {
    margin-inline: -2rem;
    width: calc(100% + 4rem);
    border-radius: 0;
  }

  .sticky-copy-block {
    padding-top: 50px;
  }

  .sticky-copy-block h3 {
    font-size: 24px;
  }

  .sticky-copy-block p {
    font-size: 18px;
  }

  .section {
    height: auto;
    padding: 20px 0;
  }

  .round-cta {
    margin-bottom: 50px;
    font-size: .875rem;
    line-height: 1.4;
    width: 100%;
    text-align: center;
  }

  .cert-block {
    text-align: center;
  }

  .cert-block img {
    margin: 20px 10px;
  }

  .products-section-header {
    font-size: 34px;
    padding: 50px 0 0 0;
    text-align: left;
  }

  .product-section-para {
    font-size: 16px;
    text-align: left;
  }

  h2.title,
  .stories .title {
    font-size: 2.25rem;
    line-height: 1.22;
  }

  .stories .sub {
    font-weight: 300;
  }

  .stories .cta {
    font-size: .875rem;
    line-height: 1.4;
    width: 100%;
  }

  .tabs {
    padding-top: 50px;
  }

  .slider-heading {
    font-size: 2.25rem;
    letter-spacing: -.02em;
    line-height: 1.22;
  }

  .slider-section {
    padding-top: 2.5rem;
    border-radius: 0;
  }

  #scrollsticky-card-2 .scrollsticky-title {
    font-size: 18px;
    font-weight: 700;
  }

  .resources-head {
    flex-direction: column;
  }

  .resources .grid {
    padding-top: 2rem;
  }

  .resources-blog-btn,
  .resources .badge {
    font-size: .875rem;
    line-height: 1.4;
  }

  .resources .badge {
    padding: 4px 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .resources-title {
    max-width: 70%;
  }

  .intro {
    max-width: 60%;
  }

  .tablist {
    display: flex;
    flex-direction: column-reverse;
  }
}