:root {
  --global-font: "Poppins", sans-serif;
  --primary-font: "Quicksand", sans-serif;
  --dark-color: #0f101a;
  --light-color: #ffffff;
  --primary-color: #ff54bb;
}

body{
  direction: ltr;
}

/* ==============================
   Attention Animations (Stickers)
   Subtle, continuous motion to catch attention without distracting
   Applies to pricing stickers only
   ============================== */
@keyframes ddFloatGentle {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-14px) rotate(1deg) scale(1.04);
  }

  50% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  75% {
    transform: translateY(14px) rotate(-1deg) scale(1.03);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes ddBobSideways {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }

  20% {
    transform: translateX(12px) rotate(0.8deg) scale(1.03);
  }

  40% {
    transform: translateX(0) rotate(0deg) scale(1);
  }

  60% {
    transform: translateX(-12px) rotate(-0.8deg) scale(1.02);
  }

  80% {
    transform: translateX(0) rotate(0deg) scale(1);
  }

  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}

@keyframes ddGlowPulse {
  0% {
    filter: drop-shadow(0 0 0 rgba(255, 84, 187, 0));
  }

  50% {
    filter: drop-shadow(0 8px 14px rgba(255, 84, 187, 0.25));
  }

  100% {
    filter: drop-shadow(0 0 0 rgba(255, 84, 187, 0));
  }
}

/* Apply animations to pricing stickers */
.dd-pricing__sticker--white-shirt {
  /* smooth out floating motion + soft glow pulse */
  animation: ddFloatGentle 5.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite,
    ddGlowPulse 4.4s ease-in-out infinite;
  will-change: transform, filter;
  transform-origin: center;
  backface-visibility: hidden;
}

.dd-pricing__sticker--junior {
  /* complementary subtle horizontal bob + soft glow pulse */
  animation: ddBobSideways 4.6s cubic-bezier(0.22, 0.61, 0.36, 1) infinite,
    ddGlowPulse 4.8s ease-in-out infinite;
  will-change: transform, filter;
  transform-origin: center;
  backface-visibility: hidden;
}

/*
 * High-impact 3D spectacle animation: combines jumping, dancing rotations,
 * scaling, and 3D translation. Apply with the utility class
 * `.dd-anim--3d-spectacle` (optionally add `.is-boosted` for extra shine).
 */
@keyframes dd3DSpectacle {
  0% {
    transform: perspective(900px) translate3d(0, 0, 0) rotateX(0) rotateY(0)
      rotateZ(0) scale(1);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
  }

  10% {
    transform: perspective(900px) translate3d(-6px, -12px, 20px) rotateX(8deg)
      rotateY(-10deg) rotateZ(-2deg) scale(1.06);
  }

  20% {
    transform: perspective(900px) translate3d(12px, -22px, 40px) rotateX(-6deg)
      rotateY(14deg) rotateZ(3deg) scale(1.08);
  }

  30% {
    transform: perspective(900px) translate3d(0px, 0px, 0px) rotateX(18deg)
      rotateY(0deg) rotateZ(-8deg) scale(0.98);
  }

  40% {
    transform: perspective(900px) translate3d(-14px, 10px, -20px)
      rotateX(-18deg) rotateY(22deg) rotateZ(8deg) scale(1.04);
  }

  50% {
    transform: perspective(900px) translate3d(0, -28px, 60px) rotateX(24deg)
      rotateY(-6deg) rotateZ(0deg) scale(1.12);
  }

  60% {
    transform: perspective(900px) translate3d(18px, 8px, -10px) rotateX(-16deg)
      rotateY(-18deg) rotateZ(-6deg) scale(0.94);
  }

  70% {
    transform: perspective(900px) translate3d(-8px, -14px, 30px) rotateX(8deg)
      rotateY(12deg) rotateZ(10deg) scale(1.1);
  }

  80% {
    transform: perspective(900px) translate3d(14px, 12px, -30px) rotateX(0deg)
      rotateY(-22deg) rotateZ(-10deg) scale(0.96);
  }

  90% {
    transform: perspective(900px) translate3d(0px, -6px, 20px) rotateX(10deg)
      rotateY(8deg) rotateZ(4deg) scale(1.06);
  }

  100% {
    transform: perspective(900px) translate3d(0, 0, 0) rotateX(0) rotateY(0)
      rotateZ(0) scale(1);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
  }
}

/* subtle light/shine sweep to enhance the 3D illusion */
@keyframes ddShineSweep {
  0% {
    filter: brightness(1) saturate(1)
      drop-shadow(0 8px 22px rgba(0, 0, 0, 0.12));
  }

  50% {
    filter: brightness(1.08) saturate(1.05)
      drop-shadow(0 16px 28px rgba(0, 0, 0, 0.16));
  }

  100% {
    filter: brightness(1) saturate(1)
      drop-shadow(0 8px 22px rgba(0, 0, 0, 0.12));
  }
}

/* quick bounce-pop you can trigger on hover or interaction */
@keyframes ddBouncePop {
  0%,
  100% {
    transform: translateZ(0) scale(1);
  }

  40% {
    transform: translateZ(30px) scale(1.14);
  }

  60% {
    transform: translateZ(-8px) scale(0.96);
  }
}

.dd-anim--3d-spectacle {
  animation: dd3DSpectacle 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform, filter;
  transform-origin: center;
  backface-visibility: hidden;
}

.dd-anim--3d-spectacle.is-boosted {
  animation: dd3DSpectacle 7.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite,
    ddShineSweep 4.8s ease-in-out infinite;
}

/* Optional interaction helpers */
.dd-anim--bounce-pop:hover {
  animation: ddBouncePop 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .dd-anim--3d-spectacle,
  .dd-anim--3d-spectacle.is-boosted,
  .dd-anim--bounce-pop:hover {
    animation: none !important;
  }
}

/* Language Selector Styles */
.dd-language-selector {
  position: relative;
  display: inline-block;
}

.dd-language-selector__button {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-color);
  font: 700 18px/1 var(--primary-font);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dd-language-selector__flag {
  width: 20px;
  height: auto;
}

.dd-language-selector__chevron {
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.dd-language-selector__button[aria-expanded="true"]
  .dd-language-selector__chevron {
  transform: rotate(180deg);
}

.dd-language-selector__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  min-width: 140px;
}

.dd-language-selector__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dd-language-selector__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0;
}

.dd-language-selector__option:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
}

.dd-language-selector__option.active {
  font-weight: 600;
  background: rgba(0, 0, 0, 0.08);
  color: #000000;
}

.dd-language-selector__option[data-lang="en"],
.dd-language-selector__option[data-lang="es"],
.dd-language-selector__option[data-lang="de"],
.dd-language-selector__option[data-lang="nl"] {
  font-weight: 600;
  background: rgba(0, 0, 0, 0.03);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dd-language-selector__dropdown {
    min-width: 120px;
  }

  .dd-language-selector__option {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Prefer reduced motion: turn off continuous attention animations */
@media (prefers-reduced-motion: reduce) {
  .dd-pricing__sticker--white-shirt,
  .dd-pricing__sticker--junior {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Mobile tuning: reduce amplitude on small screens */
@media (max-width: 767px) {
  .dd-pricing__sticker--white-shirt {
    animation-duration: 7.8s, 4.6s;
  }

  .dd-pricing__sticker--junior {
    animation-duration: 7.2s, 5s;
  }
}

/* Micro-shake: tiny organic jitter to catch attention without being harsh */
@keyframes ddMicroShake {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  10% {
    transform: translate3d(0.6px, -0.6px, 0) rotate(0.2deg) scale(1.002);
  }

  20% {
    transform: translate3d(-0.5px, 0.7px, 0) rotate(-0.2deg) scale(1.001);
  }

  30% {
    transform: translate3d(0.7px, 0.3px, 0) rotate(0.15deg) scale(1.002);
  }

  40% {
    transform: translate3d(-0.6px, -0.4px, 0) rotate(-0.15deg) scale(1.001);
  }

  50% {
    transform: translate3d(0.5px, -0.2px, 0) rotate(0.1deg) scale(1.001);
  }

  60% {
    transform: translate3d(-0.4px, 0.5px, 0) rotate(-0.1deg) scale(1.001);
  }

  70% {
    transform: translate3d(0.3px, 0.2px, 0) rotate(0.08deg) scale(1.001);
  }

  80% {
    transform: translate3d(-0.2px, -0.3px, 0) rotate(-0.08deg) scale(1.001);
  }

  90% {
    transform: translate3d(0.2px, 0.1px, 0) rotate(0.05deg) scale(1);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

/* Animation Classes */
/* 
 * Scroll Animation System
 * 
 * Usage:
 * 1. Add base class: dd-animate
 * 2. Add animation type: dd-animate--slideInLeft, dd-animate--slideInRight, dd-animate--fadeInUp, dd-animate--fadeIn, dd-animate--scaleIn
 * 3. Optional delays: dd-animate--delay-100 through dd-animate--delay-800
 * 4. Optional duration: dd-animate--duration-fast, dd-animate--duration-slow
 * 
 * Example: <div class="dd-animate dd-animate--fadeInUp dd-animate--delay-200">
 * 
 * Animations trigger when elements enter the viewport (10% visible)
 * Uses Intersection Observer API for optimal performance
 */
.dd-animate {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

.dd-animate.dd-animate--visible {
  opacity: 1;
}

/* Slide In Left Animation */
.dd-animate--slideInLeft {
  transform: translateX(-100px);
}

.dd-animate--slideInLeft.dd-animate--visible {
  transform: translateX(0);
}

/* Slide In Right Animation */
.dd-animate--slideInRight {
  transform: translateX(100px);
}

.dd-animate--slideInRight.dd-animate--visible {
  transform: translateX(0);
}

/* Fade In Up Animation */
.dd-animate--fadeInUp {
  transform: translateY(50px);
}

.dd-animate--fadeInUp.dd-animate--visible {
  transform: translateY(0);
}

/* Fade In Animation */
.dd-animate--fadeIn {
  opacity: 0;
}

.dd-animate--fadeIn.dd-animate--visible {
  opacity: 1;
}

/* Scale In Animation */
.dd-animate--scaleIn {
  transform: scale(0.8);
}

.dd-animate--scaleIn.dd-animate--visible {
  transform: scale(1);
}

/* Animation Delays */
.dd-animate--delay-100 {
  transition-delay: 0.1s;
}

.dd-animate--delay-200 {
  transition-delay: 0.2s;
}

.dd-animate--delay-300 {
  transition-delay: 0.3s;
}

.dd-animate--delay-400 {
  transition-delay: 0.4s;
}

.dd-animate--delay-500 {
  transition-delay: 0.5s;
}

.dd-animate--delay-600 {
  transition-delay: 0.6s;
}

.dd-animate--delay-700 {
  transition-delay: 0.7s;
}

.dd-animate--delay-800 {
  transition-delay: 0.8s;
}

/* Animation Duration Overrides */
.dd-animate--duration-fast {
  transition-duration: 0.4s;
}

.dd-animate--duration-slow {
  transition-duration: 1.2s;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .dd-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dd-animate--slideInLeft,
  .dd-animate--slideInRight,
  .dd-animate--fadeInUp,
  .dd-animate--scaleIn {
    transform: none;
  }
}

/* Mobile optimizations */
@media (max-width: 991px) {
  .dd-animate--slideInRight {
    transform: translateX(50px);
  }

  .dd-animate--slideInLeft {
    transform: translateX(-50px);
  }
}

@media (max-width: 767px) {
  .dd-animate--fadeInUp {
    transform: translateY(30px);
  }
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  font-family: var(--global-font);
}

body.mobile-menu-open {
  overflow: hidden;
}

figure {
  margin: 0;
}

i {
  line-height: 0;
  vertical-align: middle;
}

img,
iframe {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dd-flex-ctr {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dd-flex-ctr-spb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ************ */
/* ******  Main Styles  ******
/* ************ */
.dd-primary-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font: 700 18px/1.2 var(--primary-font);
  color: var(--light-color);
  background-color: var(--primary-color);
  padding: 16px 32px;
  letter-spacing: -0.2px;
  border-radius: 16px;
  transition: color 1.2s cubic-bezier(1, 0, 0.25, 0.995);
  box-shadow: inset 0px 1px 20px -1px rgba(255, 255, 255, 0.2),
    inset 0px 1px 6px -2px rgba(255, 255, 255, 0.4),
    inset 0px 0px 20px -3px rgba(255, 255, 255, 0.16);
  max-width: 100%;
}

.dd-primary-button i {
  position: relative;
}

.dd-primary-button:hover i svg:first-child {
  transform: translateX(100%);
  opacity: 0;
}

.dd-primary-button i svg {
  transition: 0.3s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

.dd-primary-button i svg:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  opacity: 0;
}

.dd-primary-button:hover i svg:last-child {
  transform: translateX(0);
  opacity: 1;
}

.dd-container {
  width: clamp(320px, 92%, 1230px);
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .dd-primary-button {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 12px;
  }
}

@media (max-width: 767px) {
  /* .dd-primary-button i svg {
    height: 18px;
    width: 18px;
  } */
}

@media (max-width: 575px) {
  .dd-container {
    width: 100%;
  }
}

/* ************ */
/* ******  Header Styles  ******
/* ************ */
.dd-root {
  position: relative;
  overflow-x: hidden;
}

.dd-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.dd-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(255, 255, 255, 0.2);
}

.dd-header__inner {
  gap: 30px;
}

.dd-header__logo-wrap {
  width: 165px;
}

.dd-header__logo {
  display: inline-block;
  width: 96px;
}

.dd-header__logo img {
  width: 100%;
  height: 100%;
}

.dd-header__nav-list {
  gap: 42px;
}

.dd-header__nav-link {
  font: 700 16px/1 var(--primary-font);
  color: var(--dark-color);
  transition: color 0.3s cubic-bezier(0.15, 0.75, 0.35, 1.2);
}

.dd-header__nav-link:hover {
  color: var(--primary-color);
}

.dd-header__actions {
  gap: 20px;
}

.dd-header__action {
  background-color: var(--dark-color);
  box-shadow: inset 0px 1px 20px -1px rgba(255, 255, 255, 0.2),
    inset 0px 1px 6px -2px rgba(255, 255, 255, 0.4),
    inset 0px 0px 20px -3px rgba(255, 255, 255, 0.16);
}

/* Mobile Toggle Button */
.dd-header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.dd-header__mobile-toggle-line {
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  transition: all 0.3s;
  transform-origin: 1px;
  display: inline-block;
}

.dd-header__mobile-toggle:hover .dd-header__mobile-toggle-line {
  background-color: var(--primary-color);
}

/* 
.dd-header__mobile-toggle.active .dd-header__mobile-toggle-line:first-child {
  transform: rotate(45deg);
}

.dd-header__mobile-toggle.active .dd-header__mobile-toggle-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.dd-header__mobile-toggle.active .dd-header__mobile-toggle-line:last-child {
  transform: rotate(-45deg);
} */

@media (max-width: 1500px) {
  .dd-header__nav-list {
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .dd-header__nav-list {
    gap: 20px;
  }

  .dd-header__logo-wrap {
    width: max-content;
  }

  .dd-header__action {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 12px;
  }
}

@media (max-width: 1023px) {
}

@media (max-width: 991px) {
  /* .dd-header__action {
    display: none;
  } */
  /* 
  .dd-header {
  padding: 12px 0;
}

.dd-header__logo-wrap {
  width: 165px;
}

.dd-header__logo {
  width: 96px;
}

.dd-header__nav-link {
16px
}

  */
}

@media (max-width: 767px) {
  .dd-header__inner {
    gap: 10px;
  }
}

@media (max-width: 575px) {
}

/* ************ */
/* ******  Mobile Offcanvas Menu  ******
/* ************ */
.dd-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.dd-offcanvas.active {
  visibility: visible;
  opacity: 1;
}

.dd-offcanvas__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 16, 26, 0.8);
  backdrop-filter: blur(4px);
}

.dd-offcanvas__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: var(--light-color);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.15, 0.75, 0.35, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.dd-offcanvas.active .dd-offcanvas__content {
  transform: translateX(0);
}

.dd-offcanvas__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e9eff7;
}

.dd-offcanvas__logo {
  width: 80px;
}

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

.dd-offcanvas__close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.dd-offcanvas__close:hover {
  background-color: #f8f9fa;
}

.dd-offcanvas__nav {
  flex: 1;
  padding: 16px 0;
}

.dd-offcanvas__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dd-offcanvas__nav-item {
  margin: 0;
}

.dd-offcanvas__nav-link {
  display: block;
  padding: 10px 20px;
  font: 600 15px/1.2 var(--primary-font);
  color: var(--dark-color);
  transition: all 0.3s ease;
  border-radius: 0;
}

.dd-offcanvas__nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(255, 84, 187, 0.1);
}

.dd-offcanvas__actions {
  padding: 12px 24px;
  border-top: 1px solid #e9eff7;
}

.dd-offcanvas__action {
  width: 100%;
  /* padding: 15px 20px; */
  justify-content: center;
  background-color: var(--dark-color);
  box-shadow: inset 0px 1px 20px -1px rgba(255, 255, 255, 0.2),
    inset 0px 1px 6px -2px rgba(255, 255, 255, 0.4),
    inset 0px 0px 20px -3px rgba(255, 255, 255, 0.16);
}

/* Mobile Responsive Styles */
@media (max-width: 1023px) {
  .dd-header__actions {
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .dd-header__nav {
    display: none;
  }

  .dd-header__mobile-toggle {
    display: flex;
  }

  .dd-header__action {
    font-size: 16px;
    padding: 12px 20px;
  }
}

@media (max-width: 767px) {
  .dd-offcanvas__content {
    width: 100%;
  }

  .dd-header__actions {
    gap: 8px;
  }

  .dd-offcanvas__nav-link {
    font-size: 16px;
    padding: 12px 24px;
  }

  .dd-header__action {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* ************ */
/* ******  Hero Section  ******
/* ************ */
.dd-hero {
  padding: 80px 0 75px;
  background: linear-gradient(rgb(166, 216, 255) 0%, rgb(254 253 255) 100%);
  position: relative;
  overflow: hidden;
}

.dd-hero__inner {
  gap: 130px;
}

.dd-hero__content {
  flex: 1;
  max-width: 590px;
  padding: 50px 0;
}

.dd-hero__title {
  font: 700 64px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.dd-hero__title-sticker {
  width: 70px;
  height: 70px;
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 50%;
}

.dd-hero__dsc {
  font: 500 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0 0 40px 0;
}

.dd-hero__actions {
  column-gap: 24px;
  row-gap: 16px;
  flex-wrap: wrap;
}

.dd-hero__demo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 18px/1 var(--primary-font);
  color: var(--dark-color);
  transition: color 0.3s;
}

.dd-hero__demo-link:hover {
  color: var(--primary-color);
}

/* .dd-hero__demo-link i {
  width: 20px;
  height: 20px;
} */

.dd-hero__visual {
  flex: 1;
  max-width: 575px;
  margin-right: -90px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .dd-hero__title {
    font-size: 60px;
  }

  .dd-hero__inner {
    gap: 50px;
  }

  .dd-hero__title-sticker {
    margin: 0;
  }

  .dd-hero__title-sticker {
    height: 60px;
    width: 60px;
  }
}

@media (max-width: 1023px) {
  .dd-hero__title {
    font-size: 52px;
    margin: 0 0 20px 0;
  }

  .dd-hero__dsc {
    font-size: 15px;
    margin: 0 0 30px 0;
  }

  .dd-hero {
    padding: 80px 0 60px;
  }
}

@media (max-width: 991px) {
  .dd-hero__title {
    font-size: 48px;
  }

  .dd-hero__title-sticker {
    height: 50px;
    width: 50px;
  }

  .dd-hero__demo-link {
    font-size: 16px;
  }

  .dd-hero {
    padding: 80px 0 50px;
  }
}

@media (max-width: 767px) {
  .dd-hero {
    padding: 80px 0 40px;
  }

  .dd-hero__title {
    font-size: 42px;
    margin: 0 0 16px 0;
  }

  .dd-hero__inner {
    gap: 30px;
    flex-direction: column-reverse;
  }

  .dd-hero__visual {
    margin: 0;
  }

  .dd-hero__dsc {
    font-size: 15px;
    margin: 0 0 24px 0;
  }

  .dd-hero__content {
    padding: 30px 0;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .dd-hero__content {
    padding-top: 0;
    text-align: center;
  }

  .dd-hero__title {
    font-size: 40px;
  }

  .dd-hero__dsc {
    font-size: 14px;
  }

  .dd-hero__actions {
    flex-direction: column;
    gap: 20px;
  }
}

/* ************ */
/* ******  Section Group  ******
/* ************ */
.dd-section-group {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    rgba(210, 204, 227, 0) 0%,
    rgba(210, 204, 227, 0.48) 100%
  );
}

/* ************ */
/* ******  Features Section  ******
/* ************ */
.dd-features {
  padding: 110px 0 135px;
  position: relative;
  z-index: 1;
}

.dd-features__cloud {
  position: absolute;
  max-width: 1600px;
  /* height: 200px; */
  width: 100%;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.dd-features__cloud img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dd-features__inner {
  gap: 70px;
}

.dd-features__visual {
  flex: 1;
  max-width: 760px;
  margin-left: -120px;
  position: relative;
  z-index: 1;
}

.dd-features__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle closest-side,
    rgb(173, 205, 222) 0%,
    rgb(221, 215, 255) 48.49%,
    rgba(221, 215, 255, 0) 100%
  );
  z-index: -1;
  filter: blur(100px);
}

.dd-features__content {
  max-width: 50%;
  flex: 1;
}

.dd-features__title {
  font: 700 50px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.dd-features__title-sticker {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.dd-features__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0 0 32px;
}

.dd-feature {
  gap: 16px;
  font: 700 20px/1.6 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 16px;
}

.dd-feature:last-child {
  margin: 0;
}

.dd-feature__icon {
  height: 40px;
  width: 40px;
  display: inline-block;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .dd-features__inner {
    gap: 50px;
  }
}

@media (max-width: 1023px) {
  .dd-features {
    padding: 80px 0 110px;
  }

  .dd-features__inner {
    gap: 30px;
  }

  .dd-features__title {
    font-size: 46px;
  }

  .dd-features__title-sticker {
    height: 60px;
    width: 60px;
  }

  .dd-feature {
    gap: 10px;
    font-size: 18px;
    margin: 0 0 12px;
  }

  .dd-features__visual {
    margin-left: -90px;
  }
}

@media (max-width: 991px) {
  .dd-features {
    padding: 60px 0 90px;
  }

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

  .dd-features__visual {
    margin-left: 0;
  }

  .dd-features__content {
    max-width: 100%;
  }

  .dd-features__title {
    font-size: 40px;
    margin: 0 0 20px 0;
  }

  .dd-features__title-sticker {
    height: 50px;
    width: 50px;
  }

  .dd-features__cloud {
    top: -60px;
    min-width: 800px;
  }

  /* 

.dd-features__cloud {
  max-width: 1600px;
  height: 200px;
}

   */
}

@media (max-width: 767px) {
  .dd-features {
    padding: 30px 0 60px;
  }

  .dd-features__title {
    font-size: 36px;
  }

  .dd-features__dsc {
    font-size: 15px;
  }

  .dd-feature {
    gap: 8px;
    margin: 0 0 10px;
  }

  .dd-feature__icon {
    height: 36px;
    width: 36px;
    min-width: 36px;
  }
}

@media (max-width: 575px) {
  .dd-features__visual::after {
    display: none;
  }

  .dd-features__dsc {
    font-size: 14px;
  }
}

/* ************* */
/* ******  Stories Section  ******
/* ************ */
.dd-stories {
  padding: 100px 0 90px;
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.dd-stories .dd-container {
  max-width: 1040px;
}

.dd-stories__cloud {
  position: absolute;
  width: 100%;
  max-width: 1440px;
  min-width: 1000px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.dd-stories__cloud--alt-img {
  display: none;
}

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

.dd-stories__header {
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
}

.dd-stories__title {
  font: 700 50px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.dd-stories__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.dd-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.dd-story {
  position: relative;
  text-align: center;
  padding: 4px;
  border-radius: 30px;
  background-color: var(--light-color);
  z-index: 1;
  margin-top: 30px;
}

.dd-story__subtitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -28px;
  z-index: 1;
}

.dd-story__subtitle svg {
  position: absolute;
  z-index: -1;
  width: 120%;
  height: 46px;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.dd-story__subtitle-text {
  background-color: #b6e2d3;
  display: inline-block;
  padding: 10px;
  border-radius: 8px;
  white-space: nowrap;
  font: 400 16px/1.2 "Caveat Brush";
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 12px 0 rgba(0, 0, 0, 0.16);
  width: 270px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dd-story__subtitle-text::before {
  content: "";
  height: 200px;
  width: 400px;
  background: radial-gradient(
    circle closest-side,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
  z-index: -1;
}

.dd-story:nth-child(2) .dd-story__subtitle-text {
  background-color: #fed0b6;
}

.dd-story:nth-child(3) .dd-story__subtitle-text {
  background-color: #878bb1;
}

.dd-story:nth-child(4) .dd-story__subtitle-text {
  background-color: #ffe97f;
}

.dd-story__visual {
  width: 100%;
  aspect-ratio: 1.25/1;
  border-radius: 26px;
  overflow: hidden;
}

.dd-story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-story__content {
  padding: 10px 20px 26px;
}

.dd-story__title {
  font: 700 24px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 8px;
}

.dd-story__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.dd-stories__btn {
  margin: 40px auto 0;
}

@media (max-width: 1023px) {
  .dd-stories__title {
    font-size: 46px;
  }

  .dd-stories {
    padding: 80px 0;
  }

  .dd-story-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .dd-stories {
    padding: 60px 0;
  }

  .dd-story-grid {
    gap: 16px;
  }

  .dd-stories__title {
    font-size: 40px;
  }

  .dd-story__subtitle-text {
    width: 220px;
    font-size: 15px;
  }

  .dd-stories__btn {
    margin: 30px auto 0;
  }

  /* 

.dd-stories__header {
  max-width: 580px;
  margin: 0 auto 40px;
}

.dd-story {
  border-radius: 30px;
  margin-top: 30px;
}

.dd-story__subtitle {
  top: -28px;
}

.dd-story__subtitle svg {
  min-width: 120%;
  width: auto;
}

.dd-story__subtitle-text::before {
  height: 200px;
  width: 400px;
}

.dd-story__visual {
  border-radius: 26px;
}

  */
}

@media (max-width: 767px) {
  .dd-stories {
    padding: 40px 0 50px;
  }

  .dd-stories__title {
    font-size: 36px;
    margin: 0 0 16px 0;
  }

  .dd-stories__cloud {
    margin-top: -30px;
  }

  .dd-stories__dsc {
    font-size: 15px;
  }

  .dd-story-grid {
    grid-template-columns: 1fr;
  }

  .dd-story__content {
    padding: 10px 15px 20px;
  }

  .dd-stories__btn {
    margin: 20px auto 0;
  }
}

@media (max-width: 575px) {
  .dd-stories__cloud img {
    display: none;
  }

  .dd-stories__cloud {
    width: 100%;
    /* max-width: 700px; */
    min-width: 100%;
    /* margin-top: 0; */
  }

  .dd-story__content {
    padding: 20px;
  }

  .dd-story__subtitle-text {
    font-size: 14px;
  }

  .dd-stories__dsc {
    font-size: 14px;
  }

  .dd-stories__cloud--alt-img {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .dd-stories__cloud {
    margin: 0;
  }
}

/* ************ */
/* ******  Categories Section  ******
/* ************ */
.dd-categories {
  padding: 130px 0 75px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dd-categories__sticker--left {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 300px;
  height: 80px;
  width: 80px;
}

.dd-categories__sticker--right {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 155px;
  height: 175px;
  width: 175px;
}

.dd-categories__cloud {
  position: absolute;
  width: 100%;
  max-width: 1440px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.dd-categories__header {
  max-width: 795px;
  margin: 0 auto 40px;
  text-align: center;
}

.dd-categories__sticker {
  height: 70px;
  width: 70px;
  margin: 0 auto 24px;
}

.dd-categories__title {
  font: 700 50px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.dd-categories__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.dd-category-wrapper {
  gap: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.dd-category {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  border-radius: 30px;
  background-color: var(--light-color);
}

.dd-category__visual {
  width: 100%;
  aspect-ratio: 1.71/1;
  border-radius: 16px;
  border: 1px solid #a6d8ff;
  overflow: hidden;
  box-shadow: inset 0 1px 20px -1px rgba(255, 255, 255, 0.2),
    inset 0 1px 6px -2px rgba(255, 255, 255, 0.4),
    inset 0 0 20px -3px rgba(255, 255, 255, 0.16);
  position: relative;
  z-index: 1;
}

.dd-category__visual__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font: 400 15px/1.2 "Caveat Brush";
  color: var(--dark-color);
  background-color: rgba(166, 216, 255, 1);
  padding: 8px;
  border-radius: 10px;
  z-index: 1;
}

.dd-category:nth-child(2) .dd-category__visual__badge {
  background-color: rgba(182, 226, 211, 1);
}

.dd-category:nth-child(3) .dd-category__visual__badge {
  background-color: rgba(255, 124, 139, 1);
}

.dd-category:nth-child(2) .dd-category__visual {
  border-color: #b6e2d3;
}

.dd-category__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-category__content {
  padding: 16px;
  text-align: center;
}

.dd-category__title {
  font: 700 24px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 6px;
}

.dd-category__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.dd-startegy-wrapper {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px 20px;
}

.dd-startegy {
  /* flex: 1; */
  position: relative;
  padding: 8px 40px;
  z-index: 1;
  text-align: center;
  min-width: 200px;
  max-width: max-content;
}

.dd-startegy:first-child,
.dd-startegy:last-child {
  /* flex: 1.5; */
  min-width: 270px;
}

.dd-startegy::before,
.dd-startegy::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 60px;
  top: 50%;
  z-index: -1;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}

.dd-startegy::before {
  left: 0;
  background-image: url(../images/left-laurel.webp);
}

.dd-startegy::after {
  right: 0;
  background-image: url(../images/right-laurel.webp);
}

.dd-startegy__title {
  font: 500 18px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0;
}

@media (max-width: 1200px) {
  .dd-startegy-wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 1023px) {
  .dd-categories {
    padding: 100px 0 75px;
  }

  .dd-categories__sticker {
    height: 60px;
    width: 60px;
    margin-bottom: 20px;
  }

  .dd-categories__title {
    font-size: 46px;
  }

  .dd-category-wrapper {
    gap: 20px;
  }

  .dd-startegy__title {
    font-size: 16px;
  }

  .dd-categories__sticker--left {
    top: 220px;
    height: 60px;
    width: 60px;
  }

  .dd-categories__sticker--right {
    top: 150px;
    height: 100px;
    width: 100px;
  }
}

@media (max-width: 991px) {
  .dd-categories {
    padding: 80px 0 70px;
  }

  .dd-categories__sticker {
    height: 50px;
    width: 50px;
    margin: 0 auto 16px;
  }

  .dd-categories__title {
    font-size: 40px;
    margin: 0 0 20px 0;
  }

  .dd-category {
    min-width: 280px;
    /* max-width: 320px; */
  }

  .dd-category-wrapper {
    gap: 16px;
  }

  .dd-startegy__title {
    font-size: 15px;
  }

  /* 

.dd-categories__header {
  max-width: 795px;
  margin: 0 auto 40px;}

.dd-category {
  min-width: 300px;
}

.dd-category__content {
  padding: 16px;
}

.dd-startegy {
  padding: 8px 40px;
}

.dd-startegy:first-child,
.dd-startegy:last-child {
  flex: 1.5;
}

.dd-startegy::before,
.dd-startegy::after {
  width: 40px;
}

  */
}

@media (max-width: 767px) {
  .dd-categories {
    padding: 60px 0;
  }

  /* .dd-category-wrapper {
    flex-direction: column;
  }*/

  .dd-startegy {
    max-width: 48%;
    min-width: 0 !important;
  }

  .dd-categories__title {
    font-size: 36px;
    margin: 0 0 16px 0;
  }

  .dd-categories__dsc {
    font-size: 15px;
  }

  .dd-categories__sticker--left {
    top: 190px;
    height: 48px;
    width: 48px;
  }

  .dd-categories__sticker--right {
    top: 170px;
    height: 85px;
    width: 85px;
  }

  .dd-startegy__title {
    font-size: 14px;
  }
}

@media (max-width: 673px) {
  .dd-category {
    max-width: 450px;
  }
}

@media (max-width: 575px) {
  .dd-categories {
    padding: 50px 0 30px;
  }

  .dd-categories__dsc,
  .dd-startegy__title {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .dd-startegy {
    max-width: 100%;
    width: 100%;
  }
}

/* ************ */
/* ******  Pricing Section  ******
/* ************ */
.dd-pricing {
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}

.dd-pricing__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.dd-pricing__sticker {
  position: absolute;
  height: 300px;
  z-index: -1;
  pointer-events: none;
}

.dd-pricing__sticker--white-shirt {
  top: 0;
  width: 180px;
  left: -195px;
}

.dd-pricing__sticker--junior {
  bottom: 0;
  width: 165px;
  right: -185px;
}

.dd-pricing__title {
  font: 700 50px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 40px 0;
  letter-spacing: -0.5px;
}

.dd-pricing-table-wrap {
  /* overflow-x: auto;
  scrollbar-width: thin; */
  margin: 0 0 40px 0;
}

.dd-pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 30px;
  overflow: hidden;
}

.dd-pricing-table__header {
  background-color: #a6d8ff;
}

.dd-pricing-table__header th {
  font: 700 24px/1.2 var(--primary-font);
  color: var(--dark-color);
  padding: 24px 20px;
  text-align: left;
  border: none;
  border: 1px solid var(--light-color);
}

.dd-pricing-table__row {
  background-color: var(--light-color);
  transition: background-color 0.3s ease;
}

.dd-pricing-table__row--highlighted {
  background-color: rgba(182, 226, 211, 0.4);
}

.dd-pricing-table__col {
  font: 400 16px/1.4 var(--global-font);
  color: var(--dark-color);
  padding: 23px 20px;
  text-align: left;
  border: none;
  border: 1px solid var(--light-color);
  background-color: rgba(182, 226, 211, 0.1);
}

tbody .dd-pricing-table__col:first-child {
  font: 600 20px/1.4 var(--primary-font);
}

.dd-pricing-table__row:first-child .dd-pricing-table__col {
  background-color: rgba(182, 226, 211, 0.2);
}

.dd-pricing-table__price {
  font: 700 30px/1.2 var(--primary-font);
  color: var(--dark-color);
}

.dd-pricing-table__period {
  font: 400 18px/1.2 "Open Sans";
  color: var(--dark-color);
}

.dd-pricing__btn {
  margin: 0 auto 40px;
}

.dd-pricing__advantages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-wrap: wrap;
}

.dd-pricing__advantage {
  gap: 5px;
}

.dd-pricing__advantage__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dd-pricing__advantage__text {
  font: 500 18px/1.2 var(--primary-font);
  color: var(--dark-color);
}

@media (max-width: 1200px) {
}

@media (max-width: 1023px) {
  .dd-pricing {
    padding: 70px 0;
  }

  .dd-pricing__title {
    font-size: 46px;
    margin: 0 0 30px 0;
  }

  .dd-pricing-table-wrap {
    margin: 0 0 30px 0;
  }

  .dd-pricing-table__header th {
    padding: 20px;
  }

  .dd-pricing-table__price {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .dd-pricing {
    padding: 60px 0;
  }

  .dd-pricing__sticker--white-shirt {
    top: 0;
    width: 124px;
    left: -100px;
  }

  .dd-pricing__sticker--junior {
    bottom: -100px;
    width: 120px;
    right: -100px;
  }

  .dd-pricing__title {
    font-size: 40px;
    margin: 0 0 24px 0;
  }

  .dd-pricing-table-wrap {
    margin: 0 0 24px 0;
  }

  .dd-pricing-table__header th {
    font-size: 22px;
    padding: 16px 20px;
  }

  .dd-pricing-table__col {
    padding: 20px;
  }

  tbody .dd-pricing-table__col:first-child {
    font-size: 18px;
  }

  .dd-pricing-table__price {
    font-size: 26px;
  }

  .dd-pricing__btn {
    margin: 0 auto 30px;
  }

  .dd-pricing__advantage__icon {
    width: 40px;
    height: 40px;
  }

  .dd-pricing__advantages {
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .dd-pricing {
    padding: 40px 0 50px;
  }

  .dd-pricing__sticker--white-shirt {
    top: 0;
    width: 80px;
    left: -50px;
  }

  .dd-pricing__sticker--junior {
    bottom: -180px;
    width: 70px;
    right: -50px;
  }

  .dd-pricing__title {
    font-size: 36px;
    margin: 0 0 20px 0;
  }

  .dd-pricing-table-wrap {
    margin: 0 0 20px 0;
  }

  .dd-pricing-table__header th {
    font-size: 20px;
    padding: 16px;
  }

  .dd-pricing-table__col {
    padding: 16px;
  }

  /* tbody .dd-pricing-table__col:first-child {
    font-size: 16px;
  } */
  .dd-pricing-table__price {
    font-size: 24px;
  }

  .dd-pricing-table__period {
    font-size: 16px;
  }

  .dd-pricing__btn {
    margin: 0 auto 24px;
  }

  .dd-pricing__advantage__icon {
    width: 36px;
    height: 36px;
  }

  .dd-pricing__advantage__text {
    font-size: 16px;
  }

  .dd-pricing__advantages {
    gap: 20px 30px;
  }
}

@media (max-width: 575px) {
  .dd-pricing__sticker--white-shirt {
    top: 20px;
    width: 50px;
    left: -20px;
  }

  tbody .dd-pricing-table__col:first-child {
    font-size: 16px;
  }

  .dd-pricing__sticker--junior {
    bottom: -250px;
    width: 50px;
    right: 0;
  }

  .dd-pricing-table__price {
    font-size: 22px;
  }

  .dd-pricing-table__col {
    font-size: 13px;
    padding: 12px;
  }
}

/* ************ */
/* ******  Get Started  ******
/* ************ */
.dd-get-started {
  padding: 65px 0;
}

.dd-get-started__inner {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(166, 216, 255, 0.3);
  gap: 75px;
  padding: 40px;
  background: linear-gradient(
    rgba(210, 204, 227, 0) 0%,
    rgba(210, 204, 227, 0.48) 100%
  );
  z-index: 1;
}

.dd-get-started__bg-cloud {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 450px;
  z-index: -1;
}

.dd-get-started__bg-cloud img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dd-get-started__content {
  padding-left: 20px;
  max-width: 50%;
}

.dd-get-started__title {
  font: 700 50px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.dd-get-started__dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0 0 40px;
  max-width: 400px;
}

.dd-get-started__visual {
  flex: 1;
  max-width: 50%;
}

@media (max-width: 1200px) {
  .dd-get-started__inner {
    gap: 40px;
    padding: 30px;
  }
}

@media (max-width: 1023px) {
  .dd-get-started {
    padding: 60px 0;
  }

  .dd-get-started__title {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .dd-get-started {
    padding: 50px 0;
  }

  .dd-get-started__inner {
    flex-direction: column;
  }

  .dd-get-started__content {
    max-width: 100%;
    padding-left: 0;
  }

  .dd-get-started__visual {
    max-width: 500px;
  }

  .dd-get-started__dsc {
    margin: 0 0 35px;
  }

  .dd-get-started__title {
    font-size: 40px;
    margin: 0 0 20px 0;
  }

  /* 
.dd-get-started__bg-cloud {
  width: 100%;
  height: 450px;
}

  */
}

@media (max-width: 767px) {
  .dd-get-started {
    padding: 40px 0;
  }

  .dd-get-started__dsc {
    font-size: 15px;
    margin: 0 0 32px;
  }

  .dd-get-started__title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .dd-get-started__inner {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .dd-get-started__btn {
    margin-inline: auto;
  }

  .dd-get-started__dsc {
    font-size: 14px;
  }
}

/* ************ */
/* ******  Testimonials Section  ******
/* ************ */
.dd-testimonials {
  padding: 190px 0 65px;
  background: linear-gradient(rgb(166, 216, 255) 0%, rgb(255, 255, 255) 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dd-testimonials__cloud {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(calc(-50% - 50px));
  z-index: -1;
  max-width: 1600px;
  min-width: 600px;
  /* height: 200px; */
  width: 100%;
}

.dd-testimonials__cloud img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dd-testimonials__title {
  font: 700 50px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0;
  text-align: center;
  letter-spacing: -0.5px;
}

.dd-testimonials__slider {
  position: relative;
}

.dd-testimonials-swiper {
  padding: 40px 0 85px !important;
  /* overflow: visible; */
  width: calc((100vw - 100%) / 2 + 100% + 10px);
}

.dd-testimonials-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.dd-testimonial {
  position: relative;
  background-color: var(--light-color);
  border-radius: 30px;
  padding: 24px;
  display: flex !important;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
  max-width: 585px;
  height: auto !important;
  overflow: hidden;
}

.dd-testimonial__content {
  display: flex;
  flex-direction: column;
  flex: 60%;
  z-index: 9;
}

.dd-testimonial__quote-icon {
  display: inline-block;
  margin-bottom: 33px;
}

.dd-testimonial__quote {
  font: 700 20px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 65px 0;
  flex: 1;
}

.dd-testimonial__author {
  font: 500 16px/1.4 var(--global-font);
  color: var(--dark-color);
  font-style: normal;
  margin: auto 0 8px;
  opacity: 0.6;
}

.dd-testimonial__thumb {
  flex: 40%;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #b6e2d3;
  aspect-ratio: 1/1;
  transform: rotate(6deg);
}

.dd-testimonial:nth-child(2n) .dd-testimonial__thumb {
  border-color: #ffe97f;
}

.dd-testimonial:nth-child(3n) .dd-testimonial__thumb {
  border-color: #a6d8ff;
}

.dd-testimonial__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-testimonial__dino {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 75px;
  height: 100px;
  z-index: 2;
}

.dd-testimonial__dino img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.dd-testimonials__navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}

.dd-testimonials__pagination {
  display: flex;
  align-items: center;
  font: 600 16px/1.4 var(--global-font);
  color: var(--dark-color);
}

/* .dd-testimonials__current {
  font-weight: 700;
} */

/* .dd-testimonials__separator {
  opacity: 0.6;
} */

.dd-testimonials__arrows {
  display: flex;
  gap: 16px;
}

.dd-testimonials__arrow {
  width: 60px;
  height: 60px;
  padding: 8px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--dark-color);
}

.dd-testimonials__arrow--prev:hover i svg:first-child {
  transform: translateX(-100%);
  opacity: 0;
}

.dd-testimonials__arrow--prev i svg:last-child {
  transform: translateX(100%);
}

.dd-testimonials__arrow--prev:hover i svg:last-child {
  transform: translateX(0);
  opacity: 1;
}

.dd-testimonials__arrow:hover {
  background-color: var(--primary-color);
}

.dd-testimonials__arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1200px) {
  .dd-testimonial {
    border-radius: 24px;
    padding: 20px;
    /* gap: 16px; */
    max-width: 500px;
  }

  .dd-testimonials__arrow {
    width: 50px;
    height: 50px;
    padding: 6px;
  }
}

@media (max-width: 1023px) {
  .dd-testimonials {
    padding: 150px 0 65px;
  }

  .dd-testimonials__title {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .dd-testimonials {
    padding: 120px 0 60px;
  }

  .dd-testimonials__title {
    font-size: 40px;
  }

  .dd-testimonial {
    max-width: 450px;
  }

  .dd-testimonial__quote {
    font-size: 18px;
    margin: 0 0 40px 0;
  }
}

@media (max-width: 767px) {
  .dd-testimonials {
    padding: 100px 0 50px;
  }

  .dd-testimonials__title {
    font-size: 36px;
  }

  .dd-testimonials__cloud {
    transform: translateX(calc(-50% - 30px));
  }

  .dd-testimonials__arrows {
    gap: 5px;
  }

  .dd-testimonial__quote {
    margin: 0 0 30px 0;
  }

  .dd-testimonials__pagination,
  .dd-testimonial__author {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .dd-testimonials {
    padding: 70px 0 40px;
  }

  .dd-testimonial {
    flex-direction: column-reverse;
    max-width: 320px;
  }

  .dd-testimonials-swiper {
    width: calc(100% + 15px);
    padding: 40px 0 70px !important;
  }

  .dd-testimonial__thumb {
    flex: initial;
    width: 80%;
    margin: 10px 0 30px;
  }

  .dd-testimonial__content {
    flex: 1;
  }

  .dd-testimonial__author {
    font-size: 14px;
  }

  .dd-testimonial__quote-icon {
    margin: -40px 0 12px;
    width: 24px;
    height: 24px;
  }

  .dd-testimonial__quote-icon svg {
    width: 100%;
    height: 100%;
  }

  .dd-testimonial__dino {
    right: 0;
    width: auto;
    /* height: 70px; */
    bottom: -36px;
  }

  .dd-testimonials__arrow {
    width: 48px;
    height: 48px;
  }

  .dd-testimonial__author {
    padding-right: 50px;
  }
}

/* ************ */
/* ******  Footer Styles  ******
/* ************ */
.dd-footer {
  padding: 65px 0 90px;
  position: relative;
  z-index: 1;
}

.dd-footer__cloud {
  position: absolute;
  /* height: 90px; */
  width: 100%;
  max-width: 1440px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dd-footer__inner {
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 80px;
}

.dd-footer__widget {
  flex: 1;
}

.dd-footer__brand {
  flex: 2;
}

.dd-footer__brand-logo {
  width: 92px;
  display: inline-block;
  margin: 0 0 16px 0;
}

.dd-footer__brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dd-footer__brand-dsc {
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-color);
  margin: 0 0 24px 0;
  max-width: 385px;
}

.dd-footer__download-buttons {
  gap: 10px;
  flex-wrap: wrap;
}

.dd-footer__app-store-btn,
.dd-footer__google-play-btn {
  width: 130px;
  display: inline-block;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.dd-footer__app-store-btn:hover,
.dd-footer__google-play-btn:hover {
  transform: translateY(-2px);
}

.dd-footer__widget-title {
  font: 700 20px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 24px 0;
}

.dd-footer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dd-footer__link {
  font: 400 16px/1.4 var(--global-font);
  color: var(--dark-color);
  transition: color 0.3s ease;
  display: inline-block;
}

.dd-footer__link:hover {
  color: var(--primary-color);
}

.dd-footer__form {
  margin: 0 0 16px 0;
}

.dd-footer__form-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c1d0e5;
  border-radius: 100px;
  padding: 4px 4px 4px 14px;
}

.dd-footer__form-field__icon {
  line-height: 0;
}

.dd-footer__form-input {
  flex: 1;
  border: none;
  outline: none;
  font: 500 14px/1.4 var(--global-font);
  color: var(--dark-color);
  background: transparent;
}

.dd-footer__form-input::placeholder {
  color: #899ab2;
}

.dd-footer__form-submit {
  width: 48px;
  height: 48px;
  border: none;
  padding: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--light-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* 
.dd-footer__form-submit svg {
  width: 16px;
  height: 16px;
} */

.dd-footer__form-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1.4 var(--global-font);
  color: var(--dark-color);
}

.dd-footer__form-sticker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
}

.dd-footer__form-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dd-footer__bottom {
  border-top: 1px solid #a6d8ff;
  padding-top: 20px;
}

.dd-footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.dd-footer__copyright {
  font: 500 16px/1.4 var(--primary -font);
  color: var(--dark-color);
  margin: 0;
}

.dd-footer__social {
  display: flex;
  gap: 10px;
}

.dd-footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #e9eff7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.dd-footer__social-link:hover {
  transform: translateY(-2px);
}

.dd-footer__social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Responsive Styles */
@media (max-width: 1200px) {
  .dd-footer__inner {
    gap: 60px;
  }

  .dd-footer__brand {
    flex: 1.8;
  }
}

@media (max-width: 1023px) {
  .dd-footer {
    padding: 60px 0 80px;
  }

  .dd-footer__inner {
    gap: 50px;
    margin-bottom: 60px;
  }

  .dd-footer__brand {
    flex: 1.5;
  }

  .dd-footer__brand-dsc {
    max-width: 350px;
  }

  .dd-footer__download-buttons {
    gap: 8px;
  }
}

@media (max-width: 991px) {
  .dd-footer {
    padding: 50px 0 70px;
  }

  .dd-footer__inner {
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
  }

  .dd-footer__brand {
    flex: 100%;
  }

  .dd-footer__brand-dsc {
    max-width: 100%;
    margin: 0 auto 24px;
  }

  /* .dd-footer__form-submit {
    width: 36px;
    height: 36px;
  } */

  .dd-footer__form-field {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .dd-footer {
    padding: 40px 0 50px;
  }

  .dd-footer__inner {
    gap: 48px;
    margin-bottom: 40px;
  }

  .dd-footer__form-field {
    padding: 3px 3px 3px 12px;
    max-width: 350px;
  }

  .dd-footer__form-input {
    font-size: 13px;
  }

  .dd-footer__copyright {
    font-size: 14px;
  }

  .dd-footer__social-link {
    width: 36px;
    height: 36px;
  }

  .dd-footer__social-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 575px) {
  .dd-footer__brand {
    text-align: center;
  }

  .dd-footer__inner {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .dd-footer__bottom-content,
  .dd-footer__download-buttons {
    justify-content: center;
  }

  .dd-footer__bottom {
    padding-top: 16px;
  }
}
