:root {
    /* Primary Color Palette */
    --primary: oklch(14% .085 240);
    --primary-light: #1a2540;
    --primary-dark: oklch(30% .08 260);
    --secondary: #4361ee;
    --secondary-light: #5a7af7;
    --secondary-dark: #3049c9;
    --accent: #ff6b6b;
    --accent-light: #ff8585;
    --accent-dark: #ff5151;
    --success: #2ecc71;
    --red: oklch(50% 0.04 210);
    --red-light: oklch(50% 0.04 210);
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-100: #1e293b;
    --dark-200: #334155;
    --dark-300: #475569;
    --light: #f8fafc;
    --light-100: #f1f5f9;
    --light-200: #e2e8f0;
    --light-300: #cbd5e1;
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-xs: 0.75rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    --font-size-8xl: 6rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    --spacing-32: 8rem;
    --spacing-40: 10rem;
    --spacing-48: 12rem;
    --spacing-64: 16rem;
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    /* Z-Index */
    --z-0: 0;
    --z-10: 10;
    --z-20: 20;
    --z-30: 30;
    --z-40: 40;
    --z-50: 50;
    --z-auto: auto;
  }

  /* Reset & Base Styles */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--light);
    background-color: var(--primary);
    overflow-x: hidden;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
  }

  /* Typography */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
  }

  h1 {
    font-size: var(--font-size-5xl);
  }

  h2 {
    font-size: var(--font-size-4xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }

  h4 {
    font-size: var(--font-size-xl);
  }

  p {
    margin-bottom: var(--spacing-4);
  }

  /* Layout */
  .wd-container {
    width: 100vw;
    margin: 0 auto;
    padding: 4vh var(--spacing-6);
  }

  section {
    position: relative;
    padding: var(--spacing-16) 0;
    overflow: hidden;
  }

  /* Section Backgrounds & Transitions */
  .wd-section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 1;
    pointer-events: none;
  }

  .wd-divider-dark-to-light {
    background: linear-gradient(to bottom, transparent, var(--light));
  }

  .wd-divider-light-to-dark {
    background: linear-gradient(to bottom, transparent, var(--primary));
  }

  .wd-diagonal-section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    transform: translateY(1px);
    overflow: hidden;
  }

  .wd-diagonal-section-divider.wd-dark-to-light::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    clip-path: polygon(0 100%, 100% 30%, 100% 100%, 0% 100%);
  }

  .wd-diagonal-section-divider.wd-light-to-dark::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  }

  .wd-diagonal-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
    background-color: var(--primary);
    transform: translateY(1px);
  }
 
      /* Clients */
      .clients {
        padding: 50px 0;
        background: radial-gradient(circle at CENTER, oklch(2.10% 0.24 220 / .95) 0%, oklch(1.8% 0.18 220 / .9) 14%, oklch(1.15% 0.2 220 / .78) 30%, oklch(1.30% 0.185 220 / .582) 45%, oklch(2% .2 220 / .43) 60%, oklch(0 0 0 / 0) 100%);
      }
      
      .clients-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: .5rem;
      }
      
      .client-logo {
        filter: brightness(1.2) saturate(2)contrast(1);
          opacity: 1;
         transition: all 0.3s ease;
        max-width: 120px;
      }  

  .wd-side {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    padding: var(--spacing-8) var(--spacing-6);
  }

  .wd-top {
    display: none;
  }

  @media (min-width: 768px) {
    .wd-side {
      display: none;
    }

    .wd-top {
      display: flex;
      justify-content: center;
      padding: var(--spacing-4) 0;
    }

    .wd-top a {
      padding: var(--spacing-4) var(--spacing-6);
      font-weight: var(--font-weight-medium);
      color: var(--light);
      position: relative;
    }

    .wd-top a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: var(--transition);
      transform: translateX(-50%);
    }

    .wd-top a:hover::after {
      width: 80%;
    }
  }

  /* Header & Navigation Button */

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: var(--z-40);
  }

  nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s ease;
  }

  nav a:hover {
    color: #4A90E2;
  }

  nav.wd-open {
    right: 0;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-6);
    z-index: var(--z-40);
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .wd-price-desc {
    color: oklch(88% .02 240) !important;
  }

  .wd-opennav {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-50);
  }

  .wd-icon {
    position: relative;
    width: 30px;
    height: 2px;
    background-color: var(--light);
    transition: var(--transition);
  }

  .wd-icon::before,
  .wd-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--light);
    transition: var(--transition);
  }

  .wd-icon::before {
    transform: translateY(-8px);
  }

  .wd-icon::after {
    transform: translateY(8px);
  }

  .wd-open .wd-icon {
    background-color: transparent;
  }

  .wd-open .wd-icon::before {
    transform: rotate(45deg);
  }

  .wd-open .wd-icon::after {
    transform: rotate(-45deg);
  }

  /* Buttons */
  .wd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6);
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
  }

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

  .wd-btn-primary {
    background-color: var(--secondary);
    color: var(--light);
    box-shadow: var(--shadow-md);
  }

  .wd-btn-primary:hover {
    background-color: var(--secondary-light);
    box-shadow: var(--shadow-lg);
  }

  .wd-btn-secondary {
    background-color: var(--accent);
    color: var(--light);
    box-shadow: var(--shadow-md);
  }

  .wd-btn-secondary:hover {
    background-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
  }

  .wd-btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
  }

  .wd-btn-outline:hover {
    background-color: var(--light);
    color: var(--primary);
  }

  .wd-btn-lg {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-lg);
  }

  /* Hero Section */
  .wd-hero {
    min-height: 100vh;
    padding-top:6.5vh;
    display: flex;    
    background: radial-gradient(circle at CENTER, oklch(2.10% 0.24 220 / .95) 0%, oklch(1.8% 0.18 220 / .9) 14%, oklch(1.15% 0.2 220 / .78) 30%, oklch(1.30% 0.185 220 / .582) 45%, oklch(2% .2 220 / .43) 60%, oklch(0 0 0 / 0) 100%);
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .wd-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     z-index: -2;
  }

  .wd-hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }

  .wd-hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .wd-line {
    position: absolute;
    top: 0;
    width: 1.3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(205, 205, 255, 0.6265), transparent);
  }

  .wd-line:nth-child(1) {
    left: 10%;
  }

  .wd-line:nth-child(2) {
    left: 20%;
  }

  .wd-line:nth-child(3) {
    left: 30%;
  }

  .wd-line:nth-child(4) {
    left: 40%;
  }

  .wd-line:nth-child(5) {
    left: 50%;
  }

  .wd-line:nth-child(6) {
    left: 60%;
  }

  .wd-line:nth-child(7) {
    left: 70%;
  }

  .wd-line:nth-child(8) {
    left: 80%;
  }

  .wd-line:nth-child(9) {
    left: 90%;
  }

  .wd-horizontal-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to right, transparent, rgba(125, 125, 155, 0.0275), transparent);
  }

  .wd-horizontal-line:nth-child(10) {
    top: 10%;
  }

  .wd-horizontal-line:nth-child(11) {
    top: 20%;
  }

  .wd-horizontal-line:nth-child(12) {
    top: 30%;
  }

  .wd-horizontal-line:nth-child(13) {
    top: 40%;
  }

  .wd-horizontal-line:nth-child(14) {
    top: 50%;
  }

  .wd-horizontal-line:nth-child(15) {
    top: 60%;
  }

  .wd-horizontal-line:nth-child(16) {
    top: 70%;
  }

  .wd-horizontal-line:nth-child(17) {
    top: 80%;
  }

  .wd-horizontal-line:nth-child(18) {
    top: 90%;
  }

  .wd-development-content {
    grid-template-columns: 35% 65%;
  }
  }

  .wd-development-text {
    position: relative;
    z-index: 1;
  }

  .wd-development-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    background-color: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.3);
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-sm);
  }

  .wd-development-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
    color: var(--light);
    letter-spacing: -0.02em;
  }

  .wd-development-description {
    color: var(--light-300);
    margin-bottom: var(--spacing-6);
    line-height: 1.7;
    font-size: var(--font-size-lg);
  }

  .wd-development-features {
    margin-bottom: var(--spacing-8);
  }

  /* Main image container */
  .wd-development-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: visible;
  }

  /*       MPL image   */
  .wd-development-image-wrapper {
    position: relative;
    z-index: 1;
    /*           background-image: url('https://7ohthough.com/wp-content/uploads/2025/05/plano-web-design-client-1-1.webp');
          background-size:55%;
          background-position: 99% 129%; */
    overflow: visible;
    background-repeat: no-repeat;
  }

  .wd-development-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: visible;
  }

  .wd-development-code {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 40%;
    height: 40%;
    background: var(--dark);
    border-radius: var(--radius-md);
    padding: var(--spacing-6);
    z-index: 1;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
  }

  /* Background image - positioned exactly like the previous code block */
  .wd-development-background-image {
    position: absolute;
    top: -30px;
    right: 30;
    /*             background: linear-gradient(30deg, oklch(5% .05 240)0%, oklch(99% .1 240 / .2)100%); */
    padding: 0 0 0 1.5vw;
    border-radius: var(--radius-md);
    z-index: -1;
    box-shadow: var(--shadow-lg);
    transform: rotate(4.3deg);
    height: auto;
    overflow: visible;
    border-left: outset 6px white;
    filter: saturate(1.3) brightness(.92);
  }

  .wd-development-image {
    position: absolute !important;
    display: block;
    top: 36% !important;
    left: 50%;
    right: 8% !important;
    width: 500px !important;
    z-index: 999 !important;
    box-shadow: 0 60px 13px 3px oklch(100% .001 60);
    border-left: outset 6px white;
    padding: 0;
    background-image: url('https://7ohthough.com/wp-content/uploads/2025/05/plano-web-design-client-1-1.webp');
    background-size: cover;
    background-position: 59% 100%;
    background-repeat: no-repeat;
    overflow: visible;
    height: 700px;
  }

  /*         .wd-development-background-image > img{
             width: 600px !important;
            height: auto;
            object-fit: contain;
            display: block;
        } */
  .wd-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
  }

  .wd-accent-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    background: var(--secondary);
    filter: blur(60px);
  }

  .wd-hero-visual .wd-accent-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    border-radius: 53% 47% 32% 68% / 44% 36% 64% 56%;
    animation: float 20s ease-in-out infinite;
  }

  .wd-hero-visual .wd-accent-shape:nth-child(3) {
    width: 400px;
    height: 400px;
    bottom: 15%;
    left: 5%;
    border-radius: 31% 69% 57% 43% / 44% 37% 63% 56%;
    animation: float 25s ease-in-out infinite reverse;
    opacity: 0.05;
  }

  @keyframes float {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }

    25% {
      transform: translate(20px, 30px) rotate(5deg);
    }

    50% {
      transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
      transform: translate(-30px, -20px) rotate(8deg);
    }

    100% {
      transform: translate(0, 0) rotate(0deg);
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.3;
    }

    50% {
      transform: scale(1.05);
      opacity: 0.4;
    }

    100% {
      transform: scale(1);
      opacity: 0.3;
    }
  }

  .wd-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .wd-hero-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-1) var(--spacing-4);
    border: 1px solid rgba(67, 97, 238, 0.3);
    border-radius: var(--radius-full);
    background-color: rgba(67, 97, 238, 0.05);
  }

  .wd-hero-title {
    font-size: var(--font-size-6xl);
    margin-bottom: var(--spacing-6);
    letter-spacing: -0.02em;
  }

  .wd-hero-title span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
  }

  .wd-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(67, 97, 238, 0.2);
    z-index: -1;
    border-radius: var(--radius);
  }

  .wd-hero-description {
    font-size: var(--font-size-xl);
    color: var(--light-300);
    margin-bottom: var(--spacing-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .wd-hero-cta {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    margin-bottom: var(--spacing-8);
  }

  .wd-hero-scroll {
    position: absolute;
    bottom: var(--spacing-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-300);
    font-size: var(--font-size-sm);
  }

  .wd-hero-scroll-text {
    margin-bottom: var(--spacing-2);
  }

  .wd-hero-scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-full);
    position: relative;
  }

  .wd-hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--light);
    border-radius: var(--radius-full);
    animation: scrollDown 2s infinite;
  }

  @keyframes scrollDown {
    0% {
      transform: translate(-50%, 0);
      opacity: 1;
    }

    100% {
      transform: translate(-50%, 20px);
      opacity: 0;
    }
  }

  /* Section Headings */
  .wd-section-heading {
    text-align: center;
    margin-bottom: var(--spacing-12);
    position: relative;
    z-index: 1;
  }

  .wd-section-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    background-color: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.3);
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-sm);
  }

  .wd-section-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
    letter-spacing: -0.02em;
  }

  .wd-section-title-highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
  }

  .wd-section-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(67, 97, 238, 0.2);
    z-index: -1;
    border-radius: var(--radius);
  }

  .wd-section-description {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  /* Services Section */
  .wd-services {
    position: relative;
    background-color: var(--light);
    color: var(--dark);
    z-index: 1;
  }

  .wd-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, var(--light-100) 0%, var(--light) 70%);
    z-index: -1;
  }

  .wd-services-grid {
    display: inline-flex;
    justify-self: center;
    align-content: center;
    align-items: center;
    flex-direction: row;
    grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
    gap: var(--spacing-6);
    position: relative;
    z-index: 1;
  }

  .wd-service-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-8);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: auto;
    width: auto;
  }

  .wd-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.305) 0%, oklch(14% .23 215 / .388) 100%);
    z-index: -1;
  }

  .wd-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
  }

  .wd-service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
  }

  .wd-service-icon {
    font-size: 24px;
    color: var(--secondary);
  }

  .wd-service-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
    color: var(--dark);
  }

  .wd-service-description {
    color: var(--dark-200);
    margin-bottom: var(--spacing-4);
    flex-grow: 1;
  }

  .wd-service-cta {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
  }

  .wd-service-cta i {
    margin-left: var(--spacing-2);
    transition: var(--transition);
  }

  .wd-service-cta:hover {
    color: var(--secondary-dark);
  }

  .wd-service-cta:hover i {
    transform: translateX(4px);
  }

  .wd-services-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--light-200) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.5;
  }

  /* Expertise Section */
  .wd-expertise {
    position: relative;
    background-color: var(--light);
    color: var(--dark);
    overflow: hidden;
    z-index: 1;
  }

  .wd-expertise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, var(--light-100) 0%, var(--light) 70%);
    z-index: -2;
  }

  .wd-expertise-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-10);
    position: relative;
    z-index: 1;
  }

  @media (min-width: 1400px) {

    /* Layout */
    .wd-container {
      width: 100vw;
      margin: 0 auto;
      padding: 4vh 5vw;
    }

    section {
      position: relative;
      padding: var(--spacing-16) 0;
      overflow: hidden;
    }
  }

  @media (min-width: 992px) {
    .wd-expertise-content {
      grid-template-columns: 1fr 1fr;
    }
  }

  .wd-expertise-text {
    position: relative;
    z-index: 1;
  }

  .wd-expertise-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--spacing-2);
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    background-color: rgba(67, 97, 238, 0.05);
    border: 1px solid rgba(67, 97, 238, 0.3);
  }

  .wd-expertise-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
    color: var(--dark);
  }

  .wd-expertise-description {
    color: var(--dark-200);
    margin-bottom: var(--spacing-6);
  }

  .wd-expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
  }

  @media (min-width: 768px) {
    .wd-expertise-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .wd-expertise-item {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .wd-expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, transparent 100%);
    z-index: -1;
  }

  .wd-expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .wd-expertise-item-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
  }

  .wd-expertise-item-icon i {
    font-size: 20px;
    color: var(--secondary);
  }

  .wd-expertise-item-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2);
    color: var(--dark);
  }

  .wd-expertise-item-description {
    color: var(--dark-200);
    font-size: var(--font-size-base);
  }

  .wd-expertise-image-wrapper {
    position: relative;
    z-index: 1;
  }

  .wd-expertise-image {
    position: relative;
    z-index: 3;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
  }

  .wd-expertise-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
  }

  .wd-expertise-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    background-color: var(--secondary);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 20s ease-in-out infinite alternate;
  }

  .wd-expertise-image-pattern {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--dark-200) 1px, transparent 1px);
    background-size: 15px 15px;
    z-index: 2;
    opacity: 0.3;
  }

  /* Development Section */
  .wd-development {
    position: relative;
    background-color: var(--primary);
    color: var(--light);
    overflow: hidden;
    z-index: 1;
  }

  .wd-development-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }

  .wd-development-visual .wd-accent-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -150px;
    border-radius: 44% 56% 52% 48% / 44% 59% 41% 56%;
    animation: float 20s ease-in-out infinite;
    background: var(--secondary);
    opacity: 0.1;
  }

  .wd-development-visual .wd-accent-shape:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: -100px;
    border-radius: 52% 48% 48% 52% / 38% 61% 39% 62%;
    animation: float 25s ease-in-out infinite reverse;
    background: var(--accent);
    opacity: 0.05;
  }

  .wd-development-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-10);
    position: relative;
    z-index: 1;
  }

  @media (min-width: 992px) {
    .wd-development-content {
      grid-template-columns: 1fr 1fr;
    }
  }

  .wd-development-text {
    position: relative;
    z-index: 1;
  }

  .wd-development-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    background-color: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.3);
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-sm);
  }

  .wd-development-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
    color: var(--light);
    letter-spacing: -0.02em;
  }

  .wd-development-description {
    color: var(--light-300);
    margin-bottom: var(--spacing-6);
    line-height: 1.7;
    font-size: var(--font-size-lg);
  }

  .wd-development-features {
    margin-bottom: var(--spacing-8);
  }

  .wd-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }

  .wd-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
  }

  .wd-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .wd-feature-icon i {
    font-size: 20px;
    color: var(--secondary);
  }

  .wd-feature-text {
    color: var(--light-300);
  }

  .wd-code-dots {
    display: flex;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-4);
  }

  .wd-code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--dark-200);
  }

  .wd-code-dot:nth-child(1) {
    background-color: #ff5f56;
  }

  .wd-code-dot:nth-child(2) {
    background-color: #ffbd2e;
  }

  .wd-code-dot:nth-child(3) {
    background-color: #27c93f;
  }

  /* SEO Section */
  .wd-seo {
    position: relative;
    background-color: var(--light);
    color: var(--dark);
    overflow: hidden;
    z-index: 1;
    padding: 4vh auto;
  }

  .wd-seo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom right, var(--light-100) 0%, var(--light) 70%);
    z-index: -1;
  }

  .wd-seo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-10);
    position: relative;
    z-index: 1;
  }

  @media (min-width: 992px) {
    .wd-seo-content {
      grid-template-columns: 1fr 1fr;
    }
  }

  .wd-seo-image-wrapper {
    position: relative;
    z-index: 1;
    order: 2;
  }

  .wd-seo-text {
    position: relative;
    z-index: 1;
    order: 1;
  }

  .wd-seo-image-wrapper {
    order: 1;
  }

  .wd-seo-text {
    order: 2;
  }
  }

  .wd-seo-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--spacing-2);
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    background-color: rgba(67, 97, 238, 0.05);
    border: 1px solid rgba(67, 97, 238, 0.3);
  }

  .wd-seo-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
    color: var(--dark);
  }

  .wd-seo-description {
    color: var(--dark-200);
    margin-bottom: var(--spacing-6);
  }

  .wd-seo-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
  }

  .wd-seo-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .wd-seo-image-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    opacity: 0.1;
    border-radius: 70% 30% 50% 50% / 50% 50% 50% 50%;
    z-index: 1;
    animation: float 15s ease-in-out infinite alternate;
  }

  .wd-seo-dashboard {
    position: absolute;
    top: 58%;
    right: -20px;
    width: 70%;
    max-width: 780px;
    height: auto;
    aspect-ratio: 16/9;
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-2) var(--spacing-2) var(--spacing-4);
    z-index: 3;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
  }

  .wd-dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-2);
  }

  .wd-dashboard-tabs {
    display: flex;
    gap: var(--spacing-2);
    font-size: var(--font-size-sm);
  }

  .wd-dashboard-tab {
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-medium);
    color: var(--dark-300);
    cursor: pointer;
  }

  .wd-dashboard-tab.wd-active {
    background-color: var(--secondary);
    color: white;
  }

  .wd-dashboard-content {
    height: calc(100% - 30px);
    background: var(--light-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
  }

  .wd-dashboard-chart {
    width: 100%;
    height: 100%;
    padding: var(--spacing-4);
    position: relative;
  }

  .wd-chart-line {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    opacity: 0.7;
  }

  .wd-chart-line::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.wd-org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='%234361ee' stroke-width='2' d='M0,160 C120,100 240,200 360,160 C480,120 600,220 720,180 C840,140 960,240 1080,200 C1200,160 1320,260 1440,220'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }

  .wd-seo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
  }

  .wd-stat-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
  }

  .wd-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .wd-stat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
  }

  .wd-stat-icon i {
    font-size: 24px;
    color: var(--secondary);
  }

  .wd-stat-number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    margin-bottom: var(--spacing-2);
  }

  .wd-stat-text {
    color: var(--dark-200);
    font-size: var(--font-size-sm);
  }

  .wd-badge-text {
    text-align: center;
    line-height: 1.2;
  }

  .wd-badge-heading {
    display: block;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
  }

  .wd-badge-subheading {
    display: block;
    font-size: var(--font-size-xs);
  }

  .wd-seo-tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .wd-seo-tier:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.08);
  }

  .wd-seo-tier.wd-featured-tier {
    border: 1px solid rgba(67, 97, 238, 0.3);
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0.05) 100%);
    transform: scale(1.05);
    z-index: 1;
  }

  .wd-seo-tier.wd-featured-tier:hover {
    transform: scale(1.05) translateY(-5px);
  }

  .wd-seo-tier-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-4);
  }

  .wd-seo-tier-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--secondary);
    font-size: var(--font-size-lg);
  }

  .wd-seo-tier-info h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin: 0 0 var(--spacing-1);
    color: var(--light);
  }

  .wd-seo-tier-info p {
    font-size: var(--font-size-sm);
    color: var(--light-300);
    margin: 0;
  }

  .wd-seo-tier-price {
    padding-top: var(--spacing-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-4);
    text-align: center;
  }

  .wd-price-amount {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--light);
    display: block;
    margin-bottom: var(--spacing-1);
  }

  .wd-price-note {
    font-size: var(--font-size-sm);
    color: var(--light-300);
  }

  .wd-custom-quote-btn {
    background-color: var(--accent);
    color: var(--light);
    display: inline-flex;
    padding: var(--spacing-4) var(--spacing-8);
  }

  .wd-custom-quote-btn:hover {
    background-color: var(--accent-light);
  }

  .wd-confidence-text {
    padding-bottom: 4vh;
    margin-bottom: 4vh;
  }

  /* CTA Section */
  .wd-cta {
    position: relative;
    background-color: var(--primary);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
  }

  .wd-cta-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .wd-cta-visual .wd-accent-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    border-radius: 35% 65% 31% 69% / 42% 52% 48% 58%;
    animation: float 20s ease-in-out infinite;
    background: var(--secondary);
    opacity: 0.1;
  }

  .wd-cta-visual .wd-accent-shape:nth-child(3) {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    border-radius: 65% 35% 69% 31% / 67% 39% 61% 33%;
    animation: float 25s ease-in-out infinite reverse;
    background: var(--accent);
    opacity: 0.05;
  }

  .wd-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-16) 0;
  }

  .wd-cta-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    background-color: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.3);
  }

  .wd-cta-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
    color: var(--light);
  }

  .wd-cta-description {
    font-size: var(--font-size-xl);
    color: var(--light-300);
    margin-bottom: var(--spacing-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .wd-cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
  }

  .wd-cta-btn {
    background-color: var(--accent);
    color: var(--light);
    box-shadow: var(--shadow-md);
  }

  .wd-cta-btn:hover {
    background-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
  }

  .wd-cta-btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
  }

  .wd-cta-btn-outline:hover {
    background-color: var(--light);
    color: var(--primary);
  }

  /* Contact Section */
  .wd-contact {
    position: relative;
    background-color: var(--light);
    color: var(--dark);
    z-index: 1;
    padding-bottom:
  }

  .wd-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom right, var(--light-100) 0%, var(--light) 70%);
    z-index: -1;
  }

  .wd-contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-10);
    position: relative;
    z-index: 1;
  }

  @media (min-width: 992px) {
    .wd-contact-content {
      grid-template-columns: 1fr 1fr;
    }
  }

  .wd-contact-info {
    position: relative;
    z-index: 1;
  }

  .wd-contact-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--spacing-2);
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    background-color: rgba(67, 97, 238, 0.05);
    border: 1px solid rgba(67, 97, 238, 0.3);
  }

  .wd-contact-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-6);
    color: var(--dark);
  }

  .wd-contact-description {
    color: var(--dark-200);
    margin-bottom: var(--spacing-8);
  }

  .wd-contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-8);
  }

  .wd-contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
  }

  .wd-contact-method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .wd-contact-method-icon i {
    font-size: 24px;
    color: var(--secondary);
  }

  .wd-contact-method-content h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2);
    color: var(--dark);
  }

  .wd-contact-method-content p {
    color: var(--dark-200);
    margin-bottom: var(--spacing-1);
  }

  .wd-contact-social {
    display: flex;
    gap: var(--spacing-4);
  }

  .wd-contact-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition);
  }

  .wd-contact-social a:hover {
    background-color: var(--secondary);
    color: var(--light);
    transform: translateY(-3px);
  }

  .wd-contact-form-wrapper {
    position: relative;
    z-index: 1;
  }

  .wd-contact-form {
    background-color: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
  }

  .wd-contact-form-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-6);
    color: var(--dark);
    text-align: center;
  }

  .wd-form-group {
    margin-bottom: var(--spacing-4);
  }

  .wd-form-label {
    display: block;
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--dark-200);
  }

  .wd-form-control {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-300);
    background-color: var(--light-100);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    transition: var(--transition);
  }

  .wd-form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.1);
  }

  .wd-form-control::placeholder {
    color: var(--dark-300);
  }

  textarea.wd-form-control {
    resize: vertical;
    min-height: 150px;
  }

  .wd-form-submit-btn {
    display: block;
    width: 100%;
    padding: var(--spacing-4);
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition);
  }

  .wd-form-submit-btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
  }

  .wd-contact-form-bg {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    opacity: 0.1;
    border-radius: var(--radius-xl);
    z-index: 1;
  }

  /* Footer */
  .wd-footer {
    position: relative;
    background-color: var(--dark);
    color: var(--light);
    padding: var(--spacing-16) 0 var(--spacing-8);
    z-index: 1;
  }

  .wd-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    z-index: 2;
  }

  .wd-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-10);
  }

  .wd-footer-branding {
    max-width: 350px;
  }

  .wd-footer-logo {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--light);
    margin-bottom: var(--spacing-2);
    display: inline-block;
  }

  .wd-footer-tagline {
    font-size: var(--font-size-base);
    color: var(--secondary);
    margin-bottom: var(--spacing-4);
  }

  .wd-footer-description {
    color: var(--light-300);
    margin-bottom: var(--spacing-6);
  }

  .wd-footer-social {
    display: flex;
    gap: var(--spacing-3);
  }

  .wd-footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: var(--transition);
  }

  .wd-footer-social a:hover {
    background-color: var(--secondary);
    color: var(--light);
    transform: translateY(-3px);
  }

  .wd-footer-nav h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--light);
    margin-bottom: var(--spacing-4);
    position: relative;
  }

  .wd-footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
  }

  .wd-footer-links {
    list-style: none;
  }

  .wd-footer-links li {
    margin-bottom: var(--spacing-2);
  }

  .wd-footer-links a {
    color: var(--light-300);
    transition: var(--transition);
    display: inline-block;
  }

  .wd-footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
  }

  .wd-footer-bottom {
    padding-top: var(--spacing-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-4);
  }

  .wd-footer-copyright {
    color: var(--light-300);
    font-size: var(--font-size-sm);
  }

  .wd-footer-links-secondary {
    display: flex;
    gap: var(--spacing-6);
  }

  .wd-footer-links-secondary a {
    color: var(--light-300);
    font-size: var(--font-size-sm);
    transition: var(--transition);
  }

  .wd-footer-links-secondary a:hover {
    color: var(--secondary);
  }

  /* Custom Particles Animation */
  .wd-dev-particle {
    position: absolute;
    background-color: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
  }

  /* Media Queries */
  @media (max-width: 992px) {
    .wd-hero-title {
      font-size: var(--font-size-5xl);
    }

    .wd-services-grid {
      display: block;
      justify-self: center;
      flex-direction: row;
      align-content: center;
      align-items: center;
      grid-template-columns: repeat(auto-fill, minmax(74%, 1fr));
      flex-wrap: wrap;
      gap: var(--spacing-6);
      position: relative;
      z-index: 1;
    }

    .wd-services-grid {
      display: flex;
    }

    .wd-services-grid::after {
      position: relative;
      display: flex;
      flex-direction: row;
      grid-template-row: minmax(50% 1fr);
    }

    .wd-section-title,
    .wd-expertise-title,
    .wd-development-title,
    .wd-seo-title,
    .wd-cta-title {
      font-size: var(--font-size-3xl);
    }

    .wd-hero-description,
    .wd-section-description,
    .wd-expertise-description,
    .wd-development-description,
    .wd-seo-description,
    .wd-cta-description {
      font-size: var(--font-size-lg);
    }
  }

  @media (max-width: 768px) {
    .wd-hero-title {
      font-size: var(--font-size-4xl);
    }

    .wd-hero-cta {
      flex-direction: column;
      gap: var(--spacing-4);
    }

    .wd-hero-cta .wd-btn {
      width: 100%;
    }

    .wd-cta-buttons {
      flex-direction: column;
      gap: var(--spacing-4);
    }

    .wd-cta-buttons .wd-btn {
      width: 100%;
    }

    .wd-service-card,
    .wd-expertise-item,
    .wd-contact-form {
      padding: var(--spacing-6);
    }
  }

  @media (max-width: 576px) {
    section {
      padding: var(--spacing-10) 0;
    }

    .wd-hero-title {
      font-size: var(--font-size-3xl);
    }

    .wd-section-title,
    .wd-expertise-title,
    .wd-development-title,
    .wd-seo-title,
    .wd-cta-title {
      font-size: var(--font-size-2xl);
    }
  }

  /* Why Us Section Revised Styles */
  .why-us {
    position: relative;
    background-color: var(--light);
    color: var(--dark);
    overflow: hidden;
    z-index: 1;
    padding: 6vh 0;
  }

  .why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, var(--light-100) 0%, var(--light) 70%);
    z-index: -1;
  }

  .why-us-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.07;
    z-index: -1;
    background-size: 12vmin 12vmin;
    background-image:
      radial-gradient(circle at 50% 50%, var(--dark-200) 0.5vmin, transparent 0.5vmin),
      radial-gradient(circle at 0% 0%, var(--dark-200) 0.5vmin, transparent 0.5vmin),
      radial-gradient(circle at 100% 0%, var(--dark-200) 0.5vmin, transparent 0.5vmin),
      radial-gradient(circle at 0% 100%, var(--dark-200) 0.5vmin, transparent 0.5vmin),
      radial-gradient(circle at 100% 100%, var(--dark-200) 0.5vmin, transparent 0.5vmin);
  }

  .why-us-content {
    position: relative;
    z-index: 2;
  }

  .why-us-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-us-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-8) var(--spacing-6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  }

  .why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    z-index: 1;
  }

  .why-us-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(67, 97, 238, 0.05), transparent);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .why-us-card:hover::after {
    opacity: 1;
  }

  .why-us-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .why-us-icon-wrapper {
    position: relative;
    margin-bottom: var(--spacing-4);
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 45% 55% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.15);
    animation: morphShape 8s ease-in-out infinite alternate;
  }

  @keyframes morphShape {
    0% {
      border-radius: 30% 70% 70% 30% / 30% 45% 55% 70%;
    }

    25% {
      border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
      border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
      border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }

    100% {
      border-radius: 30% 70% 70% 30% / 30% 45% 55% 70%;
    }
  }

  .why-us-icon {
    font-size: 28px;
    color: white;
  }

  .why-us-card-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xs);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
  }

  .why-us-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
    color: var(--dark);
    text-align: center;
    position: relative;
  }

  .why-us-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
  }

  .why-us-description {
    color: var(--dark-200);
    text-align: center;
    line-height: 1.7;
  }

  .why-us-quote {
    margin-top: var(--spacing-16);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: var(--spacing-10) var(--spacing-12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    overflow: hidden;
  }

  .why-us-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    color: rgba(67, 97, 238, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
  }

  .why-us-quote::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  }

  .why-us-quote-content {
    position: relative;
    z-index: 2;
    font-size: var(--font-size-lg);
    color: var(--dark-200);
    font-style: italic;
    text-align: center;
    line-height: 1.8;
  }

  .why-us-quote-author {
    display: block;
    margin-top: var(--spacing-4);
    text-align: center;
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    font-style: normal;
  }

  .why-us-cta {
    margin-top: var(--spacing-16);
    text-align: center;
  }

  .why-us-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4) var(--spacing-8);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .why-us-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
  }

  .why-us-cta-btn i {
    margin-left: var(--spacing-3);
    transition: transform 0.3s ease;
  }

  .why-us-cta-btn:hover i {
    transform: translateX(5px);
  }

  /* New circle background styles */
  .wd-circles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    --u: 2.5vmin;
    --c1: oklch(99% .01 0 / .97);
    --c2: oklch(90% .01 0);
    --c3: oklch(30% 0 0);
    --gp: 50%/calc(var(--u) * 5) calc(var(--u) * 10);
    --bp: calc(var(--u) * -2.5) calc(var(--u) * -5);
    --bg:
      radial-gradient(circle at 50% 25%, var(--c2) 23%, #fff0 25% 100%) var(--gp),
      conic-gradient(from 270deg at 34% 46%, var(--c2) 0 12.5%, #fff0 0 100%) var(--gp),
      conic-gradient(from 45deg at 66% 46%, var(--c2) 0 12.5%, #fff0 0 100%) var(--gp),
      conic-gradient(from 180deg at 50% 80%, var(--c2) 0 12.5%, #fff0 0 100%) var(--gp),
      conic-gradient(from 135deg at 50% 80%, var(--c2) 0 12.5%, #fff0 0 100%) var(--gp),
      conic-gradient(from 0deg at 0% 20%, var(--c2) 0 12.5%, #fff0 0 100%) var(--gp),
      conic-gradient(from -45deg at 100% 20%, var(--c2) 0 12.5%, #fff0 0 100%) var(--gp),
      linear-gradient(180deg, var(--c2) 0 4.5%, #fff0 0 45.25%, var(--c2) 0 50%, #fff0 0% 100%) var(--gp),
      radial-gradient(circle at 50% 25%, #fff0 0 25%, var(--c2) 26% 32%, #fff0 0 100%) var(--gp),
      linear-gradient(165deg, var(--c3) -15%, var(--c1) 44%, #fff0 0 100%) var(--gp),
      linear-gradient(180deg, var(--c1) 50%, #fff0 0 100%) var(--gp);
    background: var(--bg), var(--bg);
    background-position:
      var(--bp), var(--bp), var(--bp), var(--bp), var(--bp), var(--bp), var(--bp), var(--bp), var(--bp), var(--bp), var(--bp),
      0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    background-color: transparent;
  }

  /* Numbers counter for stats */
  .why-us-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-6);
    margin-top: var(--spacing-16);
  }

  .why-us-stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-6);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
  }

  .why-us-stat-item:hover {
    transform: translateY(-5px);
  }

  .why-us-stat-number {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--secondary);
    margin-bottom: var(--spacing-2);
    line-height: 1;
  }

  .why-us-stat-label {
    font-size: var(--font-size-base);
    color: var(--dark-200);
    text-align: center;
  }

  .why-us-stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-4);
  }

  .why-us-stat-icon i {
    font-size: 24px;
    color: var(--secondary);
  }

  /* Responsive adjustments for why-us section */
  @media (max-width: 992px) {
    .why-us-cards-container {
      gap: var(--spacing-6);
    }

    .why-us-card {
      max-width: 340px;
      min-height: auto;
    }

    .why-us-quote {
      padding: var(--spacing-8) var(--spacing-6);
    }

    .why-us-stat-number {
      font-size: var(--font-size-4xl);
    }
  }

  @media (max-width: 768px) {
    .why-us-cards-container {
      flex-direction: column;
      align-items: center;
      gap: var(--spacing-8);
    }

    .why-us-card {
      max-width: 90%;
    }

    .why-us-quote::before {
      font-size: 100px;
    }

    .why-us-stats {
      flex-direction: column;
      align-items: center;
      gap: var(--spacing-8);
    }

    .why-us-stat-item {
      width: 90%;
      max-width: none;
    }
  }

  @media (max-width: 576px) {
    .why-us-card {
      max-width: 100%;
    }

    .why-us-quote-content {
      font-size: var(--font-size-base);
    }

    .why-us-icon-wrapper {
      width: 60px;
      height: 60px;
    }

    .why-us-icon {
      font-size: 24px;
    }
  }

  /* PRICING SECTION REDESIGN */
  .wd-pricing {
    position: relative;
    background: url('https://i.ibb.co/cKdHMfD4/website-clients-mobile-copy-Photoroom.png') no-repeat center/cover;
    color: var(--light);
    overflow: hidden;
    z-index: 1;
    padding: 8vh 0;
  }

  .wd-pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--primary-light) 0%, var(--primary) 70%);
    z-index: -1;
  }

  .wd-pricing-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
  }

  .wd-pricing-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-8);
    position: relative;
  }

  .wd-pricing-section-title i {
    font-size: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(67, 97, 238, 0.1) 100%);
    border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-4);
    color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .wd-pricing-section-title h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--light);
    margin: 0;
    position: relative;
  }

  .wd-pricing-section-title h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
  }

  .wd-pricing-section-title.wd-seo-pricing-title {
    margin-top: var(--spacing-20);
  }

  .wd-pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
  }

  .wd-pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-6);
    position: relative;
    z-index: 1;
    margin-top: var(--spacing-12);
  }

  .wd-pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: linear-gradient(135deg, oklch(0.12 0.1599 221.65 / 0.95) 0%, oklch(0.14 0.1599 250 / 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 650px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .wd-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, oklch(0.16 0.1573 238.83) 100%);
    z-index: 1;
  }

  .wd-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  }

  .wd-pricing-card.wd-featured {
    transform: scale(1.05);
    border: 1px solid rgba(67, 97, 238, 0.3);
    z-index: 2;
  }

  .wd-pricing-card.wd-featured:hover {
    transform: scale(1.05) translateY(-10px);
  }

  .wd-pricing-card.wd-featured::after {
    content: 'Most Popular';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent);
    color: white;
    padding: var(--spacing-1) var(--spacing-6);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    transform: rotate(45deg);
    width: 150px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(255, 107, 107, 0.3);
    z-index: 2;
  }

  .wd-pricing-card-header {
    text-align: center;
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }

  .wd-pricing-plan {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-2);
    background: linear-gradient(to right, var(--light), #d0d0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .wd-pricing-description {
    color: var(--light-300);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-4);
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    line-height: 1.6;
  }

  .wd-pricing-price-container {
    margin: var(--spacing-4) 0;
  }

  .wd-pricing-price {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .wd-pricing-currency {
    font-size: var(--font-size-xl);
    margin-right: var(--spacing-1);
    align-self: flex-start;
    opacity: 0.9;
  }

  .wd-pricing-duration {
    font-size: var(--font-size-base);
    color: var(--light-300);
    margin-left: var(--spacing-2);
    align-self: flex-end;
    opacity: 0.7;
  }

  .wd-pricing-features {
    margin-bottom: var(--spacing-6);
    flex-grow: 1;
  }

  .wd-pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
    position: relative;
  }

  .wd-pricing-feature i {
    color: var(--secondary-light);
    font-size: var(--font-size-base);
    flex-shrink: 0;
    margin-top: 4px;
  }

  .wd-pricing-feature-text {
    color: var(--light-300);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .wd-pricing-btn {
    width: 100%;
    text-align: center;
    padding: var(--spacing-4);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
    position: relative;
    overflow: hidden;
  }

  .wd-pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
  }

  .wd-pricing-btn:hover::before {
    left: 100%;
  }

  .wd-pricing-btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--light);
    border: none;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
  }

  .wd-pricing-btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
  }

  .wd-pricing-btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .wd-pricing-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--light);
    transform: translateY(-3px);
  }

  /* SEO Pricing Container */
  .wd-seo-pricing-container {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-10) var(--spacing-8);
    margin-top: var(--spacing-20);
    margin-bottom: var(--spacing-12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .wd-seo-pricing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--red) 100%);
  }

  .wd-seo-pricing-content {
    position: relative;
    z-index: 2;
  }

  .wd-seo-pricing-heading {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-4);
    color: var(--light);
    text-align: center;
    background: linear-gradient(to right, var(--light), #d0d0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .wd-seo-pricing-text {
    color: var(--light-300);
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: var(--spacing-4);
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .wd-seo-highlight {
    color: var(--accent-light);
    font-weight: var(--font-weight-bold);
  }

  .wd-seo-pricing-badge {
    position: absolute;
    top: 30px;
    right: -40px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: white;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  }

  .wd-badge-text {
    text-align: center;
    line-height: 1.2;
  }

  .wd-badge-heading {
    display: block;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
  }

  .wd-badge-subheading {
    display: block;
    font-size: var(--font-size-xs);
  }

  .wd-seo-pricing-tiers {
    display: flex;
    gap: var(--spacing-6);
    margin: var(--spacing-8) 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .wd-seo-tier {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 220px;
  }

  .wd-seo-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    z-index: 1;
  }

  .wd-seo-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  }

  .wd-seo-tier.wd-featured-tier {
    border: 1px solid rgba(67, 97, 238, 0.3);
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0.05) 100%);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .wd-seo-tier.wd-featured-tier:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  }

  .wd-seo-tier-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-4);
    position: relative;
    z-index: 2;
  }

  .wd-seo-tier-icon {
    width: 50px;
    height: 50px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(67, 97, 238, 0.1) 100%);
    color: var(--secondary-light);
    font-size: var(--font-size-lg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: morphShape 8s ease-in-out infinite alternate;
  }

  .wd-seo-tier-info h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin: 0 0 var(--spacing-1);
    color: var(--light);
  }

  .wd-seo-tier-info p {
    font-size: var(--font-size-sm);
    color: var(--light-300);
    margin: 0;
    line-height: 1.5;
  }

  .wd-seo-tier-price {
    padding-top: var(--spacing-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .wd-price-amount {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--light);
    display: block;
    margin-bottom: var(--spacing-1);
    background: linear-gradient(to right, var(--light), #d0d0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .wd-price-note {
    font-size: var(--font-size-sm);
    color: var(--light-300);
  }

  .wd-seo-pricing-note {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-4);
    border-left: 3px solid var(--secondary);
    max-width: 900px;
    margin: var(--spacing-6) auto 0;
  }

  .wd-seo-pricing-note i {
    color: var(--secondary);
    font-size: var(--font-size-lg);
    margin-top: 2px;
  }

  .wd-seo-pricing-note p {
    color: var(--light-300);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
  }

  /* Custom Pricing Section */
  .wd-custom-pricing-section {
    margin-top: var(--spacing-20);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-10) var(--spacing-8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .wd-custom-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
  }

  .wd-custom-pricing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .wd-custom-pricing-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(67, 97, 238, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    color: var(--secondary-light);
    font-size: 36px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: morphShape 8s ease-in-out infinite alternate;
  }

  .wd-custom-pricing-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-4);
    color: var(--light);
    background: linear-gradient(to right, var(--light), #d0d0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .wd-custom-pricing-description {
    color: var(--light-300);
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: var(--spacing-8);
  }

  .wd-custom-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4) var(--spacing-8);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--light);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  }

  .wd-custom-quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
  }

  .wd-custom-quote-btn:hover::before {
    left: 100%;
  }

  .wd-custom-quote-btn:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
  }

  /* Responsive adjustments for pricing section */
  @media (max-width: 1200px) {
    .wd-pricing-grid {
      gap: var(--spacing-4);
    }

    .wd-pricing-card {
      min-width: 280px;
    }
  }

  @media (max-width: 992px) {
    .wd-pricing-grid {
      justify-content: center;
    }

    .wd-pricing-card {
      max-width: 350px;
      margin: 0 auto;
    }

    .wd-pricing-card.wd-featured {
      transform: scale(1);
    }

    .wd-pricing-card.wd-featured:hover {
      transform: translateY(-10px);
    }

    .wd-seo-pricing-tiers {
      justify-content: center;
    }

    .wd-seo-tier {
      min-width: 220px;
    }

    .wd-seo-tier.wd-featured-tier {
      transform: scale(1);
    }

    .wd-seo-tier.wd-featured-tier:hover {
      transform: translateY(-10px);
    }
  }

  @media (max-width: 768px) {
    .wd-pricing-section-title {
      flex-direction: column;
      text-align: center;
    }

    .wd-pricing-section-title i {
      margin-right: 0;
      margin-bottom: var(--spacing-4);
    }

    .wd-pricing-section-title h3::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .wd-seo-pricing-heading {
      font-size: var(--font-size-2xl);
    }

    .wd-seo-pricing-text {
      font-size: var(--font-size-base);
    }

    .wd-seo-pricing-badge {
      width: 150px;
      height: 30px;
      font-size: var(--font-size-xs);
    }

    .wd-seo-tier {
      min-width: 280px;
      max-width: none;
      width: 90%;
    }

    .wd-price-amount {
      font-size: var(--font-size-2xl);
    }
  }

  @media (max-width: 576px) {
    .wd-pricing-card {
      padding: var(--spacing-6);
      height: auto;
      min-height: 600px;
    }

    .wd-pricing-plan {
      font-size: var(--font-size-xl);
    }

    .wd-pricing-price {
      font-size: var(--font-size-3xl);
    }

    .wd-custom-pricing-title {
      font-size: var(--font-size-2xl);
    }

    .wd-custom-pricing-description {
      font-size: var(--font-size-base);
    }

    .wd-custom-pricing-icon {
      width: 70px;
      height: 70px;
      font-size: 28px;
    }
  }
  
  .custom-divide {
    position: relative;
    width: 100vw;
    height: 160px;
    display: inline-block;
    background: linear-gradient(180deg, oklch(6.2% .1 240 / .9) 0%, oklch(6.2% .1 240 /.74) 10%, oklch(26.2% .025 240 / .75) 10.5%, oklch(94% .005 70) 35%, oklch(96% .00125 72 / .75) 60%, oklch(99% .00125 72 / .5) 100%);
     z-index: 6;
    margin-top: -10.5vh !important;
    margin-bottom: 0;
  }