/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4f39f6;
  --secondary-color: #764ba2;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --circle-base-r: 58.5rem;
  --rec-b-w: 60.25rem;
  --rec-b-h: 31.25rem;
  --rec2-b-w: 71.25rem;
  --rec2-b-h: 28rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

/* Floating Navigation Bar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 100px);
  max-width: 1200px;
  background: transparent;
  border-radius: 50px;
  z-index: 1000;
  transition: all 0.6s ease;
  padding: 0;
  border: 1px solid transparent;
}

.navbar.active {
  top: 0;
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  height: 100%;
}

.navbar.scrolled.active {
  top: 0;
}

.navbar.scrolled {
  top: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.nav-container {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  padding-left: 1rem;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: #000;
}

.logo::first-letter {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center !important;
  gap: 2rem;
}
.nav-cta {
  margin: 0.25rem;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background-color: rgba(79, 57, 246, 0.7) !important;
}

.nav-li-cta {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  display: none !important;
  background-color: var(--primary-color);
}

.nav-link {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: #000;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(31, 24, 220, 0.9);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #000000;
  transition: all 0.3s ease;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 11.5rem;
  padding-bottom: 8rem;
  /* padding: 199px 0 234px 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-content-wrapper {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 244px;
  left: 67px;
  background-size: cover;
}

.hero-content {
  position: relative;
  display: grid;
  gap: 44px;
  z-index: 1;
  color: white;
}

.hero-mascot {
  height: 100%;
  width: 264px;
  overflow: hidden;
}

.hero-mascot img {
  height: 464px;
  position: relative;
  left: -300px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title-wrapper img {
  margin-left: 6rem;
}

.hero-subtitle {
  margin-top: -2rem;
  font-size: 1.5rem;
  color: #828282;
  max-width: 34rem;
}

.hero-subtitle .meet {
  color: #4f4f4f;
}

.sub-access {
  font-weight: 300;
  color: #219653;
}

.sub-intelli {
  font-weight: 300;
  color: #bb6bd9;
}

.sub-hci {
  font-weight: 300;
  color: var(--primary-color);
}

.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-kpi {
  white-space: nowrap;
  padding: 0.9rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  border-radius: 50px;
  background-color: #fafafa;
  border: 1px solid #c8c8c8;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.75px;
  color: #828282;
}

#hero-kpi-ticker {
  /* background: -webkit-linear-gradient(#fafafa 0%, #7676e2 50%, #fafafa 100%); */
  background-color: color(srgb 1 0.1858 0.4544);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 0.75;
}

.hero-cta {
  background-color: var(--primary-color);
  white-space: nowrap;
  font-size: 1.125rem;
  padding: 1.25rem 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.75px;
}

.cta-button {
  font-weight: 500;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

/* Hero Section */
.easy-container {
  padding: 4rem 0;
}

.easy-card {
  display: grid;
  place-items: center;
  gap: 4rem;
  overflow: auto;
  border-radius: 4.5rem;
  padding: 3.75rem 5.625rem 0 5.625rem;
  background: #070f67;
  background: linear-gradient(45deg, #070f67 0%, #200f69 100%);
}

.easy-header {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.easy-icon img {
  width: 12dvw;
}

.easy-title {
  font-size: 5dvw;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
}

.easy-body img {
  width: 100%;
}

/* it does Section */
.it-does {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 50.875rem;
}

.it-does-circles-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.does-mascot {
  position: absolute;
  transform: translate(-50%, 50%);
  bottom: 50%;
  left: 50%;
  z-index: 100;
}
.does-mascot img {
  width: 100%;
  max-width: 900px;
  min-width: 216px;
}

.it-does-circles {
  position: absolute;
  transform: translate(-50%, 50%);
  bottom: -64px;
  left: 50%;
}

.it-does-circles.circle1 {
  background-color: #219653;
  height: var(--circle-base-r);
  width: var(--circle-base-r);
  box-shadow: 0 0 24px 12px rgba(157, 45, 255, 0.25), inset 0 0 0 2px #9c2dff;
  border-radius: var(--circle-base-r);
  background: #210937;
  background: linear-gradient(0deg, #210937 61%, #5e1a9d 100%);
}

.it-does-circles.circle2 {
  border: solid 1px rgba(157, 45, 255, 0.25);
  height: calc(var(--circle-base-r) + 11.125rem);
  width: calc(var(--circle-base-r) + 11.125rem);
  border-radius: var(--circle-base-r);
}

.it-does-circles.circle3 {
  border: solid 1px rgba(157, 45, 255, 0.25);
  height: calc(var(--circle-base-r) + 29.5rem);
  width: calc(var(--circle-base-r) + 29.5rem);
  border-radius: var(--circle-base-r);
}

.it-does-circles.circle4 {
  border: solid 1px rgba(157, 45, 255, 0.25);
  height: calc(var(--circle-base-r) + 51.25rem);
  width: calc(var(--circle-base-r) + 51.25rem);
  border-radius: var(--circle-base-r);
}

.does-captions {
  position: absolute;
  height: 100%;
  width: 100%;
}

.d-card-wrapper {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  height: 100%;
  width: 100%;
}

.d-card {
  margin: 0.5rem;
  position: absolute;
  border-radius: 0.5rem;
  display: inline;
  text-align: center;
  padding: 0.75rem 1.125rem;
}

.d-card.track {
  background-color: var(--primary-color);
  color: #fff;
  transform: rotate(-20deg);
  top: 140px;
  left: 48px;
}

.d-card.track img {
  position: absolute;
  top: -2.5rem;
  left: 6rem;
}

.d-card.campaign {
  background-color: #e6edfe;
  color: #4533f5;
  transform: rotate(3deg);
  top: 380px;
  left: 98px;
}

.d-card.campaign img {
  position: absolute;
  top: -1.5rem;
  left: 6.25rem;
}

.d-card.posts {
  background-color: #e5d7f1;
  color: #9b51e0;
  transform: rotate(-9deg);
  top: 364px;
  right: 150px;
}

.d-card.posts img {
  position: absolute;
  width: 40px;
  top: -1.75rem;
  left: 1rem;
}

.d-card.publish {
  background: linear-gradient(90deg, #f04bb4, #6870ec);
  color: #fff;
  transform: rotate(16deg);
  top: 130px;
  right: 114px;
}

.d-card.publish img {
  position: absolute;
  width: 46px;
  top: -1.75rem;
  left: 8rem;
}

.d-card.approved {
  background-color: #d9f1e3;
  color: #219653;
  transform: rotate(-20deg);
  top: 228px;
  left: 410px;
}

.d-card.approved img {
  position: absolute;
  width: 36px;
  top: -1.25rem;
  left: 3rem;
}

.d-emoji.glasso img {
  position: absolute;
  width: 34px;
  top: 592px;
  right: 10rem;
}

.d-emoji.snoozy img {
  position: absolute;
  width: 36px;
  top: 726px;
  left: 200px;
}

.d-emoji.emjhalo img {
  position: absolute;
  width: 24px;
  top: 624px;
  left: 100px;
}

/* just one Section */
.just-one {
  background-color: #210937;
  display: grid;
  place-items: center;
  height: 53.5rem;
  width: 100%;
}
.just-one-container {
  display: grid;
  gap: 1rem;
  max-width: 47.375rem;
  text-align: center;
  text-transform: capitalize;
}

.just-one-header {
  margin: auto;
  background: linear-gradient(90deg, #2575fc 0%, #fff 50%, #be64cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.just-one-title {
  letter-spacing: -2px;
  line-height: 1;
  font-size: 6rem;
  font-weight: 600;
}

.just-one-sub {
  letter-spacing: -2px;
  line-height: 1.2;
  font-size: 3rem;
  font-weight: 600;
}

.just-one-sub-header {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
}

.just-one-sub-header span {
  font-size: 1.5rem;
  font-weight: 600;
}

.just-one-sub-header:first-letter {
  color: #2575fc;
}

/* Features Section */
.features {
  position: relative;
  height: 56.5rem;
  width: 100%;
}

.features-rec-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.features-rec {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.features-rec.rec1 {
  background-color: #219653;
  height: var(--rec-b-h);
  width: calc(100% - 24.127rem);
  min-width: 720px;
  border-radius: calc(var(--rec-b-h) / 2);
  background: #210937;
  background: linear-gradient(90deg, #2990f8 0%, #b670f8 100%);
  z-index: 30 !important;
}

.features-rec.rec2 {
  opacity: 0.75;
  background: linear-gradient(90deg, #8ec5fc 0%, #e0c3fc 100%);
  height: calc(var(--rec-b-h) + 7.375rem);
  width: calc(100% - 10.375rem);
  min-width: 886px;
  border-radius: calc((var(--rec-b-h) + 7.375rem) / 2);
  z-index: 20;
}

.f-rec-border2 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #fff;
  border-radius: calc((var(--rec-b-h) + 7.375rem) / 2);
}

.features-rec.rec3 {
  opacity: 0.75;
  background: linear-gradient(90deg, #8ec5fc 0%, #e0c3fc 100%);
  height: calc(var(--rec-b-h) + 18.875rem);
  width: 100%;
  min-width: 1106px;
  border-radius: calc((var(--rec-b-h) + 18.875rem) / 2);
}

.f-rec-border3 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: calc((var(--rec-b-h) + 18.875rem) / 2);
}

/* carousal container */
.features-container {
  z-index: 100;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 22.75rem;
  left: 50%;
  width: 100%;
}
.carousel-container {
  margin: auto;
  width: 100%;
  max-width: 1200px;
  height: 31.25rem;
  position: relative;
  perspective: 1000px;
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
  color: #fff;
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: 20px;
  border: solid 3px #2d37488b;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.card-cc {
  background: #2d3748;
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-rows: auto 1fr auto;
  gap: 0.75rem;
  padding: 1rem 0 1.125rem 1.125rem;
}

.card-c-head {
  display: flex;
  margin-right: 1.125rem;
}

.card-c-head img {
  margin-left: 1px;
  margin-bottom: 2px;
  height: 1rem;
  width: 1rem;
}
.card-c-img {
  height: 256px;
  overflow: hidden;
}
.card-c-img img {
  max-height: 100%;
  object-fit: contain;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-c-sub {
  font-size: 0.75rem;
  margin-right: 1.125rem;
}

.card.center {
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}

.card.center img {
  filter: none;
}

.card.left-2 {
  z-index: 1;
  transform: translateX(-400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.card.left-2 img {
  filter: grayscale(100%);
}

.card.left-1 {
  z-index: 5;
  transform: translateX(-200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.card.left-1 img {
  filter: grayscale(100%);
}

.card.right-1 {
  z-index: 5;
  transform: translateX(200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.card.right-1 img {
  filter: grayscale(100%);
}

.card.right-2 {
  z-index: 1;
  transform: translateX(400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.card.right-2 img {
  filter: grayscale(100%);
}

.card.hidden {
  opacity: 0;
  pointer-events: none;
}

.dot-wrap {
  display: grid;
  gap: 1.5rem;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(8, 42, 123, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: rgb(8, 42, 123);
  transform: scale(1.2);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 42, 123, 0.6);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: none;
  outline: none;
  padding-bottom: 4px;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
  left: 20px;
  padding-right: 3px;
}

.nav-arrow.right {
  right: 20px;
  padding-left: 3px;
}

@media (max-width: 768px) {
  .card {
    width: 200px;
    height: 280px;
  }

  .card.left-2 {
    transform: translateX(-250px) scale(0.8) translateZ(-300px);
  }

  .card.left-1 {
    transform: translateX(-120px) scale(0.9) translateZ(-100px);
  }

  .card.right-1 {
    transform: translateX(120px) scale(0.9) translateZ(-100px);
  }

  .card.right-2 {
    transform: translateX(250px) scale(0.8) translateZ(-300px);
  }
}

/* carousal end */
.does-it-all {
  margin-left: 1rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1.5px;
}

/* for pro Section */
.for-pro {
}

.for-pro-container {
  overflow: hidden;
  display: grid;
  gap: 5rem;
  padding: 9rem 0 6.5rem 0;
}

.for-pro-header {
  margin: auto;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.for-pro-title {
  margin: auto;
  font-size: 4.25rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -2px;
  line-height: 1;
  color: #333;
}

.for-pro-sub {
  margin: auto;
  max-width: 36rem;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #4f4f4f;
}

.for-pro-body {
  position: relative;
  height: 28.25rem;
  width: 100%;
}

.for-pro-rec {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.for-pro-rec.pro-rec1 {
  background-color: #219653;
  height: var(--rec2-b-h);
  width: calc(100% - 8.625rem);
  border-radius: 3rem;
  background: #724f96;
  background: linear-gradient(90deg, #724f96 0%, #c084fc 100%);
  z-index: 30 !important;
}

.for-pro-rec.pro-rec2 {
  opacity: 0.75;
  background: linear-gradient(90deg, #724f96 0%, #c084fc 100%);
  height: calc(var(--rec2-b-h) + 1rem);
  width: calc(100% - 4.75rem);
  border-radius: 3rem;
  z-index: 20;
}

.fp-rec-border2 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: 3rem;
}

.for-pro-rec.pro-rec3 {
  opacity: 0.75;
  background: linear-gradient(90deg, #724f96 0%, #c084fc 100%);
  height: calc(var(--rec2-b-h) + 2.25rem);
  width: 100%;
  border-radius: 3rem;
}

.fp-rec-border3 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: 3rem;
}

.for-card-wrapper {
  display: grid;
  place-content: center;
  overflow: hidden;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 100;
  width: calc(100% - 8.625rem);
}

.for-card-container {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  justify-content: space-evenly;
  gap: 2.625rem;
  /* padding: 3rem; */
  margin: auto;
  width: 100%;
}

.for-card {
  background-color: #fff;
  height: 20rem;
  width: 20rem;
  display: grid;
  gap: 0.625rem;
  border-radius: 1rem;
  padding: 1.125rem 1.25rem;
}

.for-title {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  line-height: 1.75;
}

.for-sub {
  font-size: 11px;
  font-weight: 400;
  color: #828282;
}

/* Footer Section */
.footer {
  display: grid;
  gap: 3.25rem;
  padding-top: 10.25rem;
}

.footer-cta-container {
  background: linear-gradient(90deg, #110a4c 0%, #2718b2 100%);
  padding: 4rem;
  border-radius: 1.875rem;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  align-items: center;
}

.footer-cta-header {
  display: grid;
  gap: 1.5rem;
  text-align: center;
  margin: auto;
}

.footer-cta-title {
  margin: auto;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
}

.footer-cta-sub {
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  text-transform: capitalize;
}

.footer-cta {
  display: flex;
  align-items: center;
  margin: auto;
  gap: 1.125rem;
  font-size: 1.125rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, #f8691c 28%, #f5ae3c 100%);
}

.footer-desc-links {
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 2rem;
}
.footer-descriptions {
  display: grid;
  gap: 0.75rem;
}

.footer-logo {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 600;
  color: #000;
  letter-spacing: -1.5px;
}
.footer-desc {
  font-size: 0.875;
  font-weight: 400;
  color: #9b9b9c;
}

.footer-content {
  display: grid;
  gap: 1.5rem;
}

.footer-cols {
  display: flex;
  gap: 1.5rem;
}

.footer-cols.mobile {
  display: none;
}

.footer-bottom.mobile {
  display: none;
}

.mobile-copywright {
  display: none;
}

.footer-col {
  display: grid;
  gap: 1rem;
}

.footer-col .title {
  font-size: 1.125rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 0.875;
  font-weight: 400;
  color: #9b9b9c;
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 0.875;
  font-weight: 400;
  color: #9b9b9c;
  transition: color 0.3s ease;
}

.footer-bottom {
  background-color: #363853;
  color: #f2f2f2;
  display: flex;
  gap: 1.5rem;
  padding: 1.125rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.footer-bottom span {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
}

.footer-bottom p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.footer-bottom p img {
  margin-bottom: -2px;
  margin-left: 4px;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(102, 126, 234, 0.3) 20%,
    rgba(102, 126, 234, 0.6) 50%,
    rgba(102, 126, 234, 0.3) 80%,
    transparent 100%
  );
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--text-dark);
  font-size: 24px;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.modal-close span {
  display: block;
  font-weight: 300;
}

.modal-content {
  padding: 3rem 2.5rem 2.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(90vh - 40px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.3);
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 126, 234, 0.5);
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
}

.form-wrap {
  max-height: 352px;
  overflow-y: auto;
  overflow-x: hidden;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group input {
  padding: 1rem 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  font-family: inherit;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input[type="tel"] {
  font-size: 16px; /* Prevents zoom on iOS */
}

.form-group input[type="email"] {
  font-size: 16px; /* Prevents zoom on iOS */
}

/* Mobile input wrapper */
.mobile-input-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.country-code-select {
  padding: 1rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d3748' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  min-width: 120px;
  font-size: 16px; /* Prevents zoom on iOS */
}

.country-code-select:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.country-code-select:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.mobile-input-wrapper input[type="tel"] {
  flex: 1;
  border-radius: 12px;
  font-size: 16px; /* Prevents zoom on iOS */
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.error-message {
  color: #e53e3e;
  font-size: 0.85rem;
  min-height: 1.2rem;
  display: block;
}

.modal-submit-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

.modal-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-submit-btn.loading .btn-text {
  opacity: 0;
}

.modal-submit-btn.loading .btn-loader {
  display: block;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Success State */
.modal-content.success .modal-form {
  display: none;
}

.modal-success-message {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.modal-content.success .modal-success-message {
  display: block;
}

.modal-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.modal-success-message h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.modal-success-message p {
  color: var(--text-light);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

.fade-in-delay {
  animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  transition: all 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 20px);
    top: 15px;
  }

  .navbar.active {
    height: 98%;
  }

  .nav-cta {
    display: none !important;
  }

  .nav-menu.active .cta-button.nav-li-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 0.75rem;
  }

  .navbar.scrolled {
    top: 10px;
  }

  .nav-container {
    padding: 0.8rem 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translate3d(-50%, -40px, 0);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    background: #fff;
    backdrop-filter: inherit;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    width: min(500px, calc(100% - 30px));
    margin: 0 auto;
    text-align: center;
    transition: transform 0.35s ease, opacity 0.3s ease;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    padding: 2.25rem 1.5rem 1.75rem;
    gap: 0.75rem;
    z-index: 1200;
  }

  .nav-menu.active {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-content-wrapper {
    gap: 32px;
  }

  .hero-mascot {
    width: 264px;
  }

  .hero-mascot img {
    height: 432px;
    position: relative;
    left: -316px;
  }

  .hero-title-wrapper img {
    height: 200px;
  }

  .hero-content {
    gap: 28px;
  }

  .hero-kpi,
  .hero-cta {
    margin: 0 1rem;
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }

  /* easy container */

  .easy-card {
    gap: 2.5rem;
    border-radius: 2rem;
    padding: 2rem 3rem 0 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .carousel-container {
    padding: 60px 0;
    perspective: 800px;
  }

  .carousel-wrapper {
    height: 450px;
  }

  .carousel-card {
    min-width: 240px;
    max-width: 260px;
    width: 240px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .modal-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }

  .modal-container {
    max-width: 90%;
    margin: 0;
    max-height: calc(100vh - 40px);
  }

  .modal-content {
    padding: 2rem 1.5rem 2rem;
    max-height: calc(100vh - 120px);
  }

  .modal-title {
    font-size: 1.75rem;
  }

  .form-group input {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .mobile-input-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .country-code-select {
    width: 100%;
    min-width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-cta {
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta-container {
    padding: 2rem;
    gap: 2rem;
  }

  .footer-cta-title {
    font-size: 2.5rem;
  }

  .footer-cta-sub {
    font-size: 1rem;
  }
}

/* just-one */

/* .d-card.publish {
  top: 80px;
  right: 0px;
} */

/* .d-card.posts {
  right: 40px;
} */

/* .d-card.approved {
  left: 240px;
} */

/* .d-card.campaign {
  left: 58px;
} */

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content-wrapper {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-mascot {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 412px;
  }

  .hero-mascot img {
    height: 200px;
    position: relative;
    left: -100px;
  }

  .hero-title-wrapper img {
    height: 200px;
  }

  .hero-content {
    gap: 28px;
  }

  /* easy container */

  .easy-card {
    gap: 1.5rem;
    border-radius: 0;
    padding: 0rem 2.5rem 0 1.75rem;
    background: transparent;
  }
  .easy {
    background: linear-gradient(45deg, #070f67 0%, #200f69 100%);
    z-index: 50;
    margin: 4rem 0;
  }

  .easy-container {
    padding: 4rem 0 0 0;
  }

  /* just one */

  .just-one {
    height: unset;
    padding-bottom: 5rem;
  }

  .just-one-title {
    font-size: 4.5rem;
    letter-spacing: -1px;
  }
  .just-one-sub {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }
  .just-one-sub-header {
    font-size: 1rem;
    letter-spacing: -1px;
  }
  .just-one-sub-header span {
    font-size: 1rem;
    letter-spacing: -1px;
  }

  /* it does */
  .d-card.track {
    top: 220px;
    left: 14px;
  }

  .d-card.posts {
    top: 624px;
    right: 240px;
  }

  .d-card.publish {
    top: 94px;
    right: 0px;
  }

  .d-card.campaign {
    top: 500px;
    left: 238px;
  }

  .d-card.approved {
    top: 254px;
    left: 254px;
  }

  .d-emoji.emjhalo img {
    top: 534px;
  }

  /* does it all */
  .features-main {
    background: #2990f8;
  }

  .features-rec-container {
    display: none;
  }
  .features {
    height: 44rem;
  }
  .dot-wrap {
    margin-top: -3rem;
  }
  .does-it-all {
    font-size: 2.5rem;
  }

  /* for pro  */

  .for-card-container {
    gap: 1rem;
  }

  .for-pro {
    background: #a32bd3;
  }

  .for-pro-container {
    gap: 0;
    padding: 8rem 0 3.5rem 0;
  }

  .for-pro-rec {
    display: none;
  }

  .for-card-wrapper {
    width: 100%;
  }

  .for-pro-title {
    font-size: 2.75rem;
    color: #fff;
  }
  .for-pro-sub {
    font-size: 1rem;
    color: #fff;
  }

  .carousel-container {
    padding: 40px 0;
    perspective: 600px;
  }

  .carousel-wrapper {
    height: 400px;
  }

  .carousel-card {
    min-width: 220px;
    max-width: 240px;
    width: 220px;
  }

  .modal-overlay {
    padding: 5px;
    padding-top: 10px;
  }

  .modal-container {
    max-width: 95%;
    border-radius: 20px;
    max-height: calc(100vh - 20px);
  }

  .modal-content {
    padding: 2rem 1.25rem 1.75rem;
    max-height: calc(100vh - 100px);
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-subtitle {
    font-size: 0.9rem;
  }

  .form-group input {
    padding: 0.9rem 1rem;
    font-size: 16px; /* Prevents zoom on iOS - must be 16px or larger */
  }

  .mobile-input-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .country-code-select {
    width: 100%;
    min-width: 100%;
    padding: 0.9rem 1rem;
    padding-right: 2.5rem;
    font-size: 16px;
  }

  .modal-submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-cta-container {
    padding: 2rem;
    gap: 2rem;
  }

  .footer-cta-title {
    font-size: 2rem;
  }

  .footer-cta-sub {
    font-size: 0.8rem;
  }

  .footer-cols {
    display: none;
  }

  .footer-desc-links {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: unset;
  }

  .footer-logo {
    font-size: 1.125rem;
    letter-spacing: -1px;
  }
  .footer-desc {
    display: none;
  }

  .footer-bottom {
    display: none;
  }

  .footer-content {
    gap: 1rem;
  }

  .mobile-copywright {
    margin-top: -0.25rem;
    display: block;
  }

  .footer-cols.mobile {
    display: block;
    width: 100%;
  }

  .footer-bottom.mobile {
    display: grid;
  }

  .footer-cols.mobile ul {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
  }
}
