 /* Row Layout */
 
  .pricing-row {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      flex-wrap: wrap;
      max-width: 1295px !important;
      margin: auto;
    }

    /* Each Card */
    .plan-card {
      flex: 1 1 300px;
      max-width: 100% !important;
    }

    .card-inner {
      background-color: #fff;
      color: #2e2937;
      border-radius: 40px;
      padding: 50px 40px 65px;
      position: relative;
      text-align: center;
      transition: transform 0.3s ease;
      border: solid 1px #e8e8e8;
    }

    .card-inner:hover {
      transform: translateY(-5px);
  box-shadow: 0 0 11px rgba(33,33,33,.2); 

    }

    /* Badge */
    .plan-badge {
      background-color: #e5e5e5;
      color: #000;
      border-radius: 48px;
      font-weight: 700;
      font-size: 14px;
      padding: 8px 25px 9px;
      position: absolute;
      right: 20px;
      top: 30px;
    }

    /* Title */
    .plan-title {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -1px;
      margin: 0 0 10px;
    }

    /* Price */
    .plan-price {
      font-size: 42px;
      font-weight: 700;
      letter-spacing: -1px;
      margin: 16px 0 24px;
      line-height: 0.8em;
    }

    .plan-price .currency {
      font-size: 28px;
      vertical-align: super;
      margin-right: 5px;
    }

    .plan-price .period {
      font-size: 16px;
      vertical-align: sub;
      color: #555;
    }

    /* Features */
    .plan-features {
      list-style: none;
      padding: 30px 0 0;
      margin: 0;
      border-top: 2px dotted rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .plan-features li {
      margin-bottom: 10px;
      opacity: 0.8;
      display: flex;
      align-items: center;
      font-size: 15px;
    }

    .plan-features i {
      color: #ff6600;
      margin-right: 12px;
      font-size: 14px;
    }

    /* Highlights */
    .highlight .card-inner {
      border: 2px solid #ff6600;
    }

    .vip .card-inner {
      background-color: #fffaf5;
      border: 1px solid #ff6600;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .pricing-row {
        flex-direction: column;
        align-items: center;
      }
    }

    /* FAQ Section (Themed) */
    .lte-faq-section {
      /*  background: #fff5f7;  Light pink tint from your theme */
      padding: 100px 30px;
      text-align: center;
    }

    .lte-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    /* Heading styling - using theme typography */
    .lte-faq-title {
      font-size: 36px;
      font-weight: 700;
      color: var(--black, #111);
      margin-bottom: 60px;
      position: relative;
      display: inline-block;
    }

    .lte-faq-title::after {
      content: "";
      width: 70px;
      height: 4px;
      background: var(--main, #ff6600);
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .lte-faq-title:hover::after {
      width: 110px;
    }

    /* FAQ Items */
    .lte-faq-item {
      margin-bottom: 25px;
      text-align: left;
      border-radius: 20px;
      overflow: hidden;
      margin-left:20px;
      margin-right:20px;
    }

    .lte-faq-item details {
      background: #f8f9f9;
      border: 2px solid transparent;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      padding: 5px;
      border-color: rgba(255, 102, 102, 0.3);

    }

    .lte-faq-item details[open] {
      background: #fff0f3;
      border-color: rgba(255, 102, 102, 0.3);
      box-shadow: 0 0 30px rgba(255, 102, 102, 0.15);
    }

    /* Summary (Question) */
    .lte-faq-item summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 24px 35px;
      font-weight: 600;
      font-size: 18px;
      color: var(--black, #111);
      transition: color 0.3s ease;
      list-style: none;
      user-select: none;
    }

    .lte-faq-item summary:hover {
      color: var(--main, #ff6600);
    }

    .lte-faq-item summary i {
      font-size: 18px;
      color: var(--main, #ff6600);
      transition: transform 0.4s ease;
    }

    .lte-faq-item details[open] summary i {
      transform: rotate(45deg);
    }

    /* Answer content */
    .lte-faq-content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.6s ease, opacity 0.6s ease;
    }

    .lte-faq-item details[open] .lte-faq-content {
      max-height: 600px;
      opacity: 1;
    }

    .lte-faq-content p {
      padding: 0 35px 30px;
      margin: 0;
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-color, #333);
      opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .lte-faq-title {
        font-size: 28px;
      }

      .lte-faq-item summary {
        padding: 18px 22px;
        font-size: 16px;
      }

      .lte-faq-content p {
        padding: 0 22px 25px;
      }
    }

    /* SECTION BASE */
    #how-it-works {
      background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 120px 20px;
    }

    #how-it-works .demo-counter {
      position: absolute;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0.06;
      z-index: 0;
    }

    #how-it-works .number {
      font-weight: 800;
      color: #ff6699;
      text-transform: uppercase;
    }

    /* TITLE */
    #how-it-works .section-title {
      font-size: 42px;
      font-weight: 700;
      color: var(--black, #111);
      margin-bottom: 80px;
      line-height: 1.3;
    }

    #how-it-works .section-title .highlight {
      background: linear-gradient(90deg, #ff6600, #ff6699);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* STEPS */
    .how-steps-modern {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 80px;
      position: relative;
      z-index: 2;
    }

    .how-step {
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 8px 25px rgba(255, 102, 102, 0.15);
      padding: 50px 35px;
      width: 280px;
      position: relative;
      transition: all 0.4s ease;
    }

    .how-step:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 35px rgba(255, 102, 0, 0.25);
    }

    /* STEP NUMBER */
    .step-number {
      background: linear-gradient(135deg, #ff6600, #ff6699);
      color: #fff;
      font-size: 26px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      margin-bottom: 18px;
      transition: all 0.3s ease;
    }

    .how-step:hover .step-number {
      transform: scale(1.15);
    }

    /* TEXTS */
    .how-step h5 {
      font-size: 20px;
      font-weight: 600;
      color: var(--black, #111);
      margin-bottom: 12px;
    }

    .how-step p {
      color: var(--text-color, #333);
      line-height: 1.7;
      font-size: 15px;
      opacity: 0.85;
    }

    /* ARROWS BETWEEN STEPS */
    .arrow-flow {
      font-size: 30px;
      color: #ff6600;
      opacity: 0.6;
      transition: all 0.4s ease;
    }

    .arrow-flow i {
      transform: rotate(-20deg);
    }

    .how-step:hover~.arrow-flow i {
      opacity: 1;
      transform: rotate(0deg);
    }

    /* CTA */
    .how-cta {
      position: relative;
      z-index: 2;
    }

    .how-cta .lte-btn {
      font-size: 17px;
      font-weight: 700;
      padding: 20px 45px;
      border-radius: 50px;
      background: linear-gradient(90deg, #ff6600, #ff6699);
      border: none;
      color: #fff !important;
      transition: all 0.4s ease;
    }

    .how-cta .lte-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 102, 102, 0.4);
    }

    .trust-section {
      background: #fff;
      padding: 80px 20px;
      text-align: center;
    }

    .trust-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .trust-row {
      margin-bottom: 10px;
    }

    .trust-row .lte-subheader {
      font-size: 16px;
      color: #555;
      display: block;
      margin-bottom: 6px;
    }

    .trust-row .section-title {
      font-family: var(--font-headers, 'Figtree', sans-serif);
      font-weight: 700;
      font-size: 28px;
      color: var(--black, #111);
      margin-bottom: 10px;
    }

    /* STARS */
    .trust-stars {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-bottom: 25px;
    }

    .trust-star {
      width: 24px;
      height: 24px;
    }

    /* INFO LINE */
    .trust-info {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .trust-info .lte-text {
      font-size: 15px;
      color: var(--text-color, #333);
      opacity: 0.85;
      margin: 0;
    }

    /* LOGO */
    .trust-logo img {
      width: 300px;
      height: auto;
      display: inline-block;
      filter: grayscale(20%);
      transition: all 0.3s ease;
    }

    .trust-logo img:hover {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    /* RESPONSIVE */
    @media (max-width: 600px) {
      .trust-star {
        width: 20px;
        height: 20px;
      }

      .trust-row .section-title {
        font-size: 22px;
      }

      .trust-info .lte-text {
        font-size: 14px;
      }
    }

    .feature-list .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      font-size: 20px;
    }

    .project-by {
      color: #ec4813;
      font-weight: 600;
      font-size: 14px !important;
    }

    .brand-logo {
      width: 200px !important;
    }

    .footer-logo {
      width: 1200px !important;
    }

    /*schdule bookings*/



    .booking-section {
      background-color: #fef5f3;
      padding: 5rem 0;
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .booking-container {
      max-width: 1370px !important;
      margin: 0 auto;
      padding: 0 2.5rem;

    }



    .booking-content {
      display: flex;
      max-width: 1370px !important;
      flex-direction: column;
      justify-content: center;
      color: var(--text-light);
    }


    .booking-description {
      font-size: 1.125rem;
      line-height: 1.6;
      color: var(--text-secondary);
      margin: 0 0 3rem 0;
      max-width: 40ch;
    }

    .founders-collage {
      position: relative;
      width: 100%;
      max-width: 29rem;
      min-height: 500px;
    }

    .founder-image-wrapper {
      position: absolute;
      width: 43%;
      border-radius: 0.5rem;
      overflow: hidden;
      border: 2px solid var(--text-light);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 2;
    }

    .founder-image-wrapper:hover {
      transform: scale(1.05) translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .founder-1 {
      top: 1.25rem;
      left: 0;
    }

    .founder-2 {
      top: 27%;
      right: 3%;
    }

    .founder-image {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .deco-shape {
      position: absolute;
      z-index: 1;
      pointer-events: none;
    }

    .deco-circle {
      width: 56%;
      top: 18%;
      left: 20%;
      animation: spin 30s linear infinite;
    }

    .deco-path {
      width: 17%;
      top: 0;
      left: 55%;
    }

    .deco-path path {
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: draw 4s ease-out 0.5s forwards;
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .booking-form-wrapper {
      min-height: 725px;
      border-radius: 0.5rem;
      overflow: hidden;
    }

    .booking-iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 991px) {
      .booking-card {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 3rem 2rem;
      }

      .booking-content {
        align-items: center;
        text-align: center;
      }
    }

    @media (max-width: 767px) {
      .booking-section {
        padding: 2rem 1.5rem;
      }

      .booking-container {
        padding: 0 2.5rem;
      }

      .booking-card {
        padding: 2rem 1.5rem;
      }
    }

    .calendly-inline-widget iframe {
      border-radius: 20px;
    }

    @media (max-width: 479px) {
      .booking-container {
        padding: 0 1rem;
      }

      .booking-card {
        padding: 2rem 1rem;
      }

      .founder-1 {
        top: 0;
      }

      .founder-2 {
        top: 20%;
      }
    }
    