/* Custom index sections matching client-provided layout */
:root{
  --ck-primary: #f47e42;
  --ck-secondary: #10244a;
  --ck-surface: #f3f4f7;
  --ck-border: #9a5f45;
}

.client-sections{
  background: var(--ck-surface);
  padding-top: 89px;
}

.client-block{
  padding: 120px 0;
}

.client-block:first-child{
  padding-top: 24px;
}

.growth-card{
  background: var(--ck-surface);
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.growth-media{
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  background: url("../img/project/project-1.jpg") center/cover no-repeat;
}

.growth-media:after{
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 45%;
  height: 100%;
  background: linear-gradient(to left, rgba(243,244,247,0), var(--ck-surface) 86%);
}

.growth-outline{
  position: absolute;
  top: 18px;
  right: 34px;
  width: 280px;
  height: 392px;
  border: 1px solid rgba(154,95,69,.65);
  border-radius: 22px;
}

.growth-content{
  position: relative;
  z-index: 2;
  margin-left: 0;
  margin-right: auto;
  width: min(100%, 470px);
  padding: 70px 56px 62px;
}

.growth-title{
  color: var(--ck-secondary);
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 22px;
}

.growth-points{
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  color: var(--ck-border);
  font-weight: 600;
}

.growth-points li{
  position: relative;
  padding-inline-end: 18px;
}

.growth-points li:not(:last-child):after{
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 4px;
  width: 1px;
  height: 20px;
  background: var(--ck-secondary);
  opacity: .45;
}

.client-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 46px;
  padding: 10px 26px;
  border-radius: 999px;
  border: 0;
  background: var(--ck-primary);
  color: #fff;
  font-weight: 600;
}

.provide-title{
  text-align: center;
  color: var(--ck-primary);
  font-size: 22px;
  margin-bottom: 30px;
}

.provide-wrap{
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  grid-template-areas: "list mock";
  gap: 28px;
  align-items: start;
}

.provide-mock{
  grid-area: mock;
  --provide-accent: var(--ck-primary);
  position: relative;
  border: 8px solid var(--provide-accent);
  border-radius: 24px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 14px 40px rgba(16,36,74,.12);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.mock-browser{
  background: #f3f4f7;
  border-radius: 14px;
  min-height: 392px;
  padding: 8px 10px 10px;
  position: relative;
}

.mock-top-dots{
  height: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 8px;
}

.mock-top-dots span{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0aa0b6;
}

.mock-stage{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px;
  align-items: stretch;
}

.mock-sidebar{
  background: #0ca1b9;
  color: #143255;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  padding: 12px 5px;
}

.mock-main{
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px 12px;
  position: relative;
  overflow: hidden;
}

.mock-nav{
  border-bottom: 1px solid rgba(244,126,66,.45);
  padding-bottom: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mock-nav strong{
  color: #0aa0b6;
  font-size: 21px;
}

.mock-nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #967b65;
  font-size: 10px;
}

.mock-lock-chip{
  position: absolute;
  top: 48px;
  right: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  min-height: 30px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  color: #111827;
  font-size: 11px;
}

.mock-lock-chip i{
  font-size: 14px;
}

.mock-gallery{
  position: relative;
  height: 258px;
}

.mock-gallery img{
  width: 74%;
  height: 186px;
  object-fit: cover;
  border-radius: 42px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 46px;
  transition: transform .45s ease;
  z-index: 2;
}

.provide-mock:hover .mock-gallery img{
  transform: translateX(-50%) scale(1.03);
}

.mock-blur{
  width: 62px;
  height: 132px;
  border-radius: 16px;
  position: absolute;
  top: 68px;
  background: rgba(145,115,92,.24);
  filter: blur(3px);
  z-index: 1;
}

.mock-blur.left{ left: 6px; }
.mock-blur.right{ right: 6px; }

.mock-cta{
  text-align: center;
  color: #0aa0b6;
  font-size: 22px;
  font-weight: 600;
  margin-top: 2px;
}

.mock-palette{
  position: absolute;
  left: -16px;
  bottom: 78px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
  padding: 7px 8px 9px;
  width: 184px;
  z-index: 4;
}

.mock-palette-title{
  color: #7a7a7a;
  font-size: 11px;
  margin-bottom: 6px;
}

.mock-palette-grid{
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
}

.mock-palette-grid span{
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
}

.mock-palette-grid span:nth-child(1){ background:#b9af90; }
.mock-palette-grid span:nth-child(2){ background:#11a4ba; }
.mock-palette-grid span:nth-child(3){ background:#4d88a9; }
.mock-palette-grid span:nth-child(4){ background:#355f92; }
.mock-palette-grid span:nth-child(5){ background:#4d4ca4; }
.mock-palette-grid span:nth-child(6){ background:#2a2f55; }
.mock-palette-grid span:nth-child(7){ background:#ffffff; border:1px solid #cfcfcf; }
.mock-palette-grid span:nth-child(8){ background:#1f2937; }
.mock-palette-grid span:nth-child(9){ background:#ba6eb4; }
.mock-palette-grid span:nth-child(10){ background:#6a47a8; }
.mock-palette-grid span:nth-child(11){ background:#f39b1e; }
.mock-palette-grid span:nth-child(12){ background:#c7d529; }
.mock-palette-grid span:nth-child(13){ background:#76af43; }
.mock-palette-grid span:nth-child(14){ background:#1e9d52; }
.mock-palette-grid span:nth-child(15){ background:#06a24a; }
.mock-palette-grid span:nth-child(16){ background:#00b08f; }

.mock-star{
  position: absolute;
  right: -26px;
  bottom: -22px;
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mock-star i{
  font-size: 122px;
  color: #f39b63;
  filter: drop-shadow(0 8px 6px rgba(0,0,0,.26));
}

.provide-preview-meta{
  margin-top: 10px;
  margin-inline-start: 48px;
  min-height: 36px;
  border-radius: 12px;
  background: rgba(16,36,74,.06);
  border: 1px solid rgba(16,36,74,.10);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  color: #12254d;
  font-size: 13px;
  font-weight: 700;
}

.provide-meta-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--provide-accent);
}

.provide-list{
  grid-area: list;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.provide-item{
  min-height: 70px;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #12254d;
  font-size: 22px;
  font-weight: 700;
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  transition: all .25s ease;
}

[dir="ltr"] .provide-item{
  flex-direction: row-reverse;
}

.provide-item > i{
  color: var(--ck-primary);
  font-size: 29px;
}

.provide-item.active{
  background: #c9c8d0;
  padding-inline: 12px;
  border-color: rgba(16,36,74,.12);
  box-shadow: 0 8px 24px rgba(16,36,74,.12);
}

.provide-item.active .provide-arrow{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ck-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.provide-item.active .provide-arrow i{
  color: #fff;
  font-size: 25px;
}

[dir="rtl"] .provide-item.active .provide-arrow i,
.rtl .provide-item.active .provide-arrow i{
  transform: rotate(180deg);
}

.provide-item .provide-arrow{
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
  transition: opacity .2s ease;
}

.provide-item.active .provide-arrow{
  opacity: 1;
  pointer-events: auto;
}

.how-wrap{
  background: #0f1f4f;
  color: #fff;
  padding: 72px 0 86px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.how-wrap:after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -82px;
  transform: translateX(-50%);
  width: 1px;
  height: 82px;
  background: rgba(16,36,74,.85);
}

.how-wrap:before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -92px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10244a;
}

.how-title{
  color: var(--ck-primary);
  font-size: 32px;
  margin-bottom: 8px;
}

.how-subtitle{
  color: #f6f6f9;
  opacity: .92;
  margin-bottom: 30px;
  font-size: 16px;
}

.how-grid{
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px 26px;
  margin-bottom: 36px;
}

.how-pill{
  background: #fff;
  border-radius: 18px;
  min-height: 58px;
  color: #11244c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 16px;
  font-size: 15px;
  font-weight: 700;
}

.how-pill i{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ck-primary);
  color: #fff;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-title{
  color: var(--ck-secondary);
  text-align: center;
  font-size: 32px;
  margin-bottom: 34px;
}

.testi-frame{
  position: relative;
  max-width: 980px;
  margin: 0 auto 34px;
}

.testi-card{
  background: #0f1f4f;
  color: #fff;
  border-radius: 30px;
  padding: 40px 52px;
  text-align: center;
  width: min(100%,560px);
  margin: 0 auto;
}

.testi-card p{
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 10px;
  color: #fff;
}

.testi-card h5{
  color: #fff;
  margin: 0;
  font-size: 15px;
}

.testi-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: var(--ck-primary);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-nav.prev{ left: 36px; }
.testi-nav.next{ right: 36px; }

.testi-line{
  width: 2px;
  height: 92px;
  background: var(--ck-primary);
  margin: 0 auto;
  position: relative;
}

.testi-line:after{
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ck-primary);
}

.testi-cta{
  text-align: center;
  margin: 22px 0 66px;
}

.faq-divider{
  height: 1px;
  background: var(--ck-primary);
  margin: 14px auto 56px;
  max-width: 84%;
}

.faq-title{
  text-align: center;
  color: var(--ck-secondary);
  font-size: 29px;
  margin: 0;
}

.faq-drop{
  text-align: center;
  color: var(--ck-secondary);
  font-size: 38px;
  line-height: 1;
  margin-top: 10px;
}

.faq-wrap{
  max-width: 980px;
  margin: 30px auto 0;
}

.faq-accordion .accordion-item{
  border: 1px solid rgba(16,36,74,.08);
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16,36,74,.08);
}

.faq-accordion .accordion-button{
  background: #fff;
  color: #0f1f4f;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 14px !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 52px;
  direction: ltr;
  line-height: 1.35;
  position: relative;
}

.faq-accordion .accordion-button:not(.collapsed){
  color: #0f1f4f;
  background: rgba(244,126,66,.10);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus{
  box-shadow: none;
}

.faq-accordion .accordion-button::after{
  display: none;
}

.faq-q-text{
  flex: 1;
  text-align: left;
  line-height: 1.35;
  position: static !important;
  min-width: 0 !important;
  height: auto !important;
  top: auto !important;
  right: auto !important;
  padding: 0 !important;
  display: block !important;
}

.faq-toggle-icon{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(244,126,66,.16);
  color: var(--ck-primary);
  font-size: 15px;
  flex: 0 0 28px;
  transition: all .2s ease;
  margin-top: 0;
  margin-left: auto;
  position: static !important;
  min-width: 28px !important;
  top: auto !important;
  right: auto !important;
  padding: 0 !important;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-toggle-icon{
  background: var(--ck-primary);
  color: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-toggle-icon i{
  transform: rotate(45deg);
}

.faq-toggle-icon i{
  position: static !important;
  top: auto !important;
  right: auto !important;
  line-height: 1 !important;
  font-size: 15px !important;
  color: currentColor !important;
}

.faq-accordion .accordion-body{
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  padding: 0 16px 14px;
}

.rtl .growth-media{
  inset: 0 auto 0 0;
}

.rtl .growth-media:after{
  right: -2px;
  left: auto;
  background: linear-gradient(to right, rgba(243,244,247,0), var(--ck-surface) 86%);
}

.rtl .growth-outline{
  left: 34px;
  right: auto;
}

.rtl .growth-content{
  margin-left: auto;
  margin-right: 0;
}

.rtl .provide-wrap{
  direction: ltr;
  grid-template-areas: "mock list";
}

[dir="rtl"] .provide-wrap{
  direction: ltr;
  grid-template-areas: "mock list";
}

.rtl .provide-list,
[dir="rtl"] .provide-list{
  display: flex;
  flex-direction: column;
}

.rtl .provide-item{
  direction: rtl;
  text-align: right;
  flex-direction: row-reverse;
}

[dir="rtl"] .provide-item{
  direction: rtl;
  text-align: right;
  flex-direction: row-reverse;
}

.rtl .provide-preview-meta{
  margin-inline-start: 0;
  margin-inline-end: 58px;
}

.rtl .faq-q-text{
  text-align: left;
}

.rtl .testi-nav.prev{ right: 36px; left: auto; }
.rtl .testi-nav.next{ left: 36px; right: auto; }
[dir="rtl"] .testi-nav.prev i,
.rtl .testi-nav.prev i{
  transform: rotate(180deg);
}
[dir="rtl"] .testi-nav.next i,
.rtl .testi-nav.next i{
  transform: rotate(180deg);
}

/* Dark Theme Support For Custom Sections */
.theme-dark .client-sections{
  background: #111827;
}

.theme-dark .growth-card{
  background: #1f2937;
  border-color: rgba(244,126,66,.55);
}

.theme-dark .growth-media:after{
  background: linear-gradient(to left, rgba(31,41,55,0), #1f2937 86%);
}

.theme-dark .growth-outline{
  border-color: rgba(244,126,66,.4);
}

.theme-dark .growth-title{
  color: #f3f4f6;
}

.theme-dark .growth-points{
  color: #f3b186;
}

.theme-dark .growth-points li:not(:last-child):after{
  background: #e5e7eb;
  opacity: .35;
}

.theme-dark .provide-title,
.theme-dark .testi-title,
.theme-dark .faq-title{
  color: #f3f4f6;
}

.theme-dark .provide-mock{
  background: #1f2937;
  box-shadow: 0 16px 46px rgba(0,0,0,.45);
}

.theme-dark .provide-screen{
  background: #111827;
  border-color: rgba(255,255,255,.12);
}

.theme-dark .provide-preview-meta{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #e5e7eb;
}

.theme-dark .mock-browser{
  background: #111827;
}

.theme-dark .mock-main{
  background: #1f2937;
}

.theme-dark .mock-nav{
  border-color: rgba(244,126,66,.35);
}

.theme-dark .mock-nav ul{
  color: #d1d5db;
}

.theme-dark .mock-lock-chip{
  background: #0f172a;
  color: #e5e7eb;
}

.theme-dark .mock-palette{
  background: #1f2937;
}

.theme-dark .mock-palette-title{
  color: #d1d5db;
}

.theme-dark .provide-item{
  color: #e5e7eb;
}

.theme-dark .provide-item.active{
  background: #374151;
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.theme-dark .how-wrap{
  background: #0b1538;
}

.theme-dark .how-wrap:after{
  background: rgba(244,126,66,.8);
}

.theme-dark .how-wrap:before{
  background: #f47e42;
}

.theme-dark .how-subtitle{
  color: #d1d5db;
}

.theme-dark .how-pill{
  background: #1f2937;
  color: #f3f4f6;
}

.theme-dark .testi-card{
  background: #0b1538;
}

.theme-dark .faq-drop{
  color: #f3f4f6;
}

.theme-dark .faq-divider{
  background: rgba(244,126,66,.9);
}

.theme-dark .faq-accordion .accordion-item{
  background: #1f2937;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.theme-dark .faq-accordion .accordion-button{
  background: #1f2937;
  color: #f3f4f6;
}

.theme-dark .faq-accordion .accordion-button:not(.collapsed){
  background: rgba(244,126,66,.16);
  color: #fff;
}

.theme-dark .faq-accordion .accordion-body{
  color: #d1d5db;
}

.theme-dark .faq-toggle-icon{
  background: rgba(244,126,66,.2);
  color: #ffb182;
}

.theme-dark .faq-accordion .accordion-button:not(.collapsed) .faq-toggle-icon{
  background: var(--ck-primary);
  color: #fff;
}

.theme-dark .rtl .growth-media:after,
.theme-dark [dir="rtl"] .growth-media:after{
  background: linear-gradient(to right, rgba(31,41,55,0), #1f2937 86%);
}

@media (max-width: 991px){
  .client-sections{
    padding-top: 44px;
  }

  .client-block{
    padding: 58px 0;
  }

  .growth-card{
    min-height: unset;
  }

  .growth-media{
    position: relative;
    width: 100%;
    height: 320px;
  }

  .growth-media:after{
    display: none;
  }

  .growth-outline{
    display: none;
  }

  .growth-content{
    width: 100%;
    padding: 30px 24px 36px;
  }

  .growth-title,.provide-title,.how-title,.testi-title,.faq-title{
    font-size: 32px;
  }

  .provide-preview-meta{
    margin-inline-start: 0;
    width: 100%;
    justify-content: center;
  }

  .rtl .provide-preview-meta{
    margin-inline-end: 0;
  }

  .provide-wrap{
    grid-template-columns: 1fr;
    grid-template-areas:
      "mock"
      "list";
    gap: 28px;
  }

  .mock-browser{
    min-height: 400px;
  }

  .mock-gallery{
    height: 274px;
  }

  .mock-gallery img{
    width: 82%;
    height: 204px;
    top: 48px;
  }

  .mock-star{
    right: -16px;
    bottom: -14px;
    width: 110px;
    height: 110px;
  }

  .mock-star i{
    font-size: 108px;
  }

  .mock-palette{
    left: -8px;
    bottom: 74px;
    width: 192px;
  }

  .provide-item,.how-pill,.testi-card p,.testi-card h5{
    font-size: 16px;
  }

  .faq-accordion .accordion-button{
    font-size: 12px;
    padding: 10px 12px;
  }

  .faq-accordion .accordion-body{
    font-size: 12px;
    padding: 0 12px 12px;
  }

  .faq-wrap{
    margin-top: 22px;
  }

  .faq-toggle-icon{
    width: 26px;
    height: 26px;
    font-size: 14px;
    flex-basis: 26px;
  }

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

  .how-wrap:after{
    bottom: -54px;
    height: 54px;
  }

  .how-wrap:before{
    bottom: -64px;
  }

  .testi-nav{
    width: 52px;
    height: 52px;
    font-size: 27px;
  }

  .testi-nav.prev{ left: 0; }
  .testi-nav.next{ right: 0; }
  .rtl .testi-nav.prev{ right: 0; }
  .rtl .testi-nav.next{ left: 0; }
}

@media (max-width: 991px){
  .rtl .provide-wrap,
  [dir="rtl"] .provide-wrap{
    grid-template-columns: 1fr;
    grid-template-areas:
      "mock"
      "list";
  }
}




/* React Home Hero Refresh (first section only) */
.home-growth-hero .container{
  max-width: 100%;
  padding: 0 !important;
}

.home-growth-hero .growth-card{
  min-height: 600px;
  border: 0;
  background: #101828;
  box-shadow: 0 20px 48px rgba(10, 18, 33, .22);
}

.home-growth-hero .growth-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hero/hero-bg-2.jpg") center/cover no-repeat;
}

.home-growth-hero .growth-media:after,
.home-growth-hero .growth-outline{
  display: none;
}

.home-growth-hero .growth-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 20, 33, var(--home-hero-overlay-opacity, .70)) 0%, rgba(14, 20, 33, calc(var(--home-hero-overlay-opacity, .70) * .8)) 26%, rgba(14, 20, 33, calc(var(--home-hero-overlay-opacity, .70) * .43)) 50%, rgba(14, 20, 33, calc(var(--home-hero-overlay-opacity, .70) * .14)) 72%, rgba(14, 20, 33, calc(var(--home-hero-overlay-opacity, .70) * .11)) 100%),
    radial-gradient(80% 100% at 18% 52%, rgba(255,255,255,.16), rgba(255,255,255,0));
  z-index: 1;
}

.home-growth-hero .growth-content{
  position: absolute;
  top: 50%;
  left: clamp(20px, 4.6vw, 74px);
  transform: translateY(-50%);
  z-index: 2;
  width: min(560px, 64%);
  margin: 0;
  padding: 0;
}

.rtl .home-growth-hero .growth-content,
[dir="rtl"] .home-growth-hero .growth-content{
  left: auto;
  right: clamp(20px, 4.6vw, 74px);
}

.home-growth-hero .growth-title{
  color: #fff;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-shadow: 0 6px 18px rgba(0,0,0,.28);
}

.home-growth-hero .growth-points{
  margin: 0 0 28px;
  gap: 10px 18px;
  color: rgba(255,255,255,.94);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 27px);
}

.home-growth-hero .growth-points li:not(:last-child):after{
  background: rgba(255,255,255,.58);
  top: 3px;
  height: 18px;
}

.home-growth-hero .client-btn{
  min-width: 210px;
  min-height: 50px;
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(244,126,66,.35);
}

.theme-dark .home-growth-hero .growth-card{
  background: #101828;
}

@media (max-width: 1199px){
  .home-growth-hero .growth-card{
    min-height: 540px;
  }

  .home-growth-hero .growth-content{
    width: min(500px, 72%);
  }
}

@media (max-width: 991px){
  .home-growth-hero .growth-card{
    min-height: 470px;
  }

  .home-growth-hero .growth-media{
    position: absolute;
    height: 100%;
  }

  .home-growth-hero .growth-content{
    top: 50%;
    transform: translateY(-50%);
    left: 22px;
    right: auto;
    width: min(460px, 86%);
  }

  .rtl .home-growth-hero .growth-content,
  [dir="rtl"] .home-growth-hero .growth-content{
    left: auto;
    right: 22px;
  }

  .home-growth-hero .growth-title{
    font-size: clamp(30px, 7vw, 44px);
    margin-bottom: 14px;
  }

  .home-growth-hero .growth-points{
    margin-bottom: 18px;
    font-size: 14px;
  }
}

@media (max-width: 767px){
  .home-growth-hero .growth-card{
    min-height: 410px;
    border-radius: 16px;
  }

  .home-growth-hero .growth-card::before{
    background:
      linear-gradient(180deg, rgba(14, 20, 33, .56) 0%, rgba(14, 20, 33, .44) 52%, rgba(14, 20, 33, .30) 100%),
      radial-gradient(85% 95% at 30% 18%, rgba(255,255,255,.10), rgba(255,255,255,0));
  }

  .home-growth-hero .growth-content{
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    right: auto;
    width: calc(100% - 32px);
    padding: 0;
  }

  .rtl .home-growth-hero .growth-content,
  [dir="rtl"] .home-growth-hero .growth-content{
    left: auto;
    right: 16px;
  }

  .home-growth-hero .growth-title{
    font-size: clamp(24px, 9vw, 34px);
    margin-bottom: 10px;
  }

  .home-growth-hero .growth-points{
    margin-bottom: 14px;
    font-size: 11px;
    gap: 7px 10px;
  }

  .home-growth-hero .growth-points li{
    padding-inline-end: 12px;
  }

  .home-growth-hero .growth-points li:not(:last-child):after{
    top: 2px;
    height: 14px;
  }

  .home-growth-hero .client-btn{
    min-width: 158px;
    min-height: 36px;
    font-size: 11px;
    padding: 8px 14px;
  }
}
/* React Home Provide Section Refresh */
.client-sections .provide-wrap{
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  grid-template-areas: "list mock";
  gap: 24px;
  align-items: start;
}

.client-sections .provide-list{
  grid-area: list;
  gap: 10px;
  margin-top: 6px;
}

.client-sections .provide-item{
  min-height: 58px;
  border-radius: 12px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  justify-content: start;
  text-align: left;
  color: #0f2a58;
  font-size: 22px;
  font-weight: 700;
}

.client-sections .provide-item i{
  color: var(--ck-primary);
  font-size: 21px;
  line-height: 1;
}

.client-sections .provide-item .provide-item-text{
  font-size: 21px;
  line-height: 1.34;
}

.client-sections .provide-item .provide-arrow{
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.client-sections .provide-item.active{
  background: #c8c9d1;
  border-color: rgba(16,36,74,.14);
  box-shadow: 0 9px 24px rgba(16,36,74,.12);
}

.client-sections .provide-item.active .provide-arrow{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ck-primary);
  color: #fff;
  opacity: 1;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.client-sections .provide-mock{
  grid-area: mock;
  border-width: 6px;
  border-radius: 20px;
  padding: 10px;
  overflow: visible;
}

.client-sections .provide-stage{
  position: relative;
}

.client-sections .provide-desktop{
  background: #f3f4f7;
  border-radius: 14px;
  padding: 8px 10px 10px;
  min-height: 370px;
}

.client-sections .desktop-topbar{
  height: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 8px;
}

.client-sections .desktop-topbar span{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0aa0b6;
}

.client-sections .desktop-body{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  align-items: stretch;
}

.client-sections .desktop-sidebar{
  background: #0ca1b9;
  color: #143255;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  padding: 10px 5px;
}

.client-sections .desktop-main{
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px 12px;
  position: relative;
  overflow: hidden;
}

.client-sections .desktop-nav{
  border-bottom: 1px solid rgba(244,126,66,.45);
  padding-bottom: 7px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.client-sections .desktop-nav strong{
  color: #0aa0b6;
  font-size: 26px;
}

.client-sections .desktop-nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #967b65;
  font-size: 9px;
}

.client-sections .desktop-lock-chip{
  position: absolute;
  top: 43px;
  right: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,.24);
  min-height: 28px;
  padding: 6px 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  z-index: 3;
  color: #111827;
  font-size: 10px;
}

.client-sections .desktop-lock-chip i{
  font-size: 13px;
}

.client-sections .desktop-preview{
  position: relative;
  height: 226px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
}

.client-sections .desktop-preview img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-sections .desktop-cta{
  text-align: center;
  color: #0aa0b6;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
}

.client-sections .provide-mobile{
  position: absolute;
  right: -20px;
  bottom: -18px;
  width: 120px;
  height: 220px;
  border-radius: 24px;
  border: 4px solid #2f3647;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(10,18,33,.28);
  z-index: 6;
}

.client-sections .provide-mobile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-sections .provide-mobile .mobile-notch{
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(17,24,39,.34);
  z-index: 3;
}

.client-sections .provide-mobile .mobile-ui-dot{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,24,39,.18);
}

.rtl .client-sections .provide-item,
[dir="rtl"] .client-sections .provide-item{
  grid-template-columns: auto 1fr 24px;
  text-align: right;
}

.rtl .client-sections .provide-item i:last-child,
[dir="rtl"] .client-sections .provide-item i:last-child{
  order: 3;
}

.rtl .client-sections .provide-item .provide-item-text,
[dir="rtl"] .client-sections .provide-item .provide-item-text{
  order: 2;
}

.rtl .client-sections .provide-item .provide-arrow,
[dir="rtl"] .client-sections .provide-item .provide-arrow{
  order: 1;
}

.rtl .client-sections .provide-mobile,
[dir="rtl"] .client-sections .provide-mobile{
  right: auto;
  left: -20px;
}

@media (max-width: 991px){
  .client-sections .provide-wrap{
    grid-template-columns: 1fr;
    grid-template-areas:
      "mock"
      "list";
    gap: 20px;
  }

  .client-sections .provide-desktop{
    min-height: 350px;
  }

  .client-sections .desktop-preview{
    height: 208px;
  }

  .client-sections .provide-mobile{
    width: 102px;
    height: 188px;
    right: -10px;
    bottom: -12px;
  }

  .rtl .client-sections .provide-mobile,
  [dir="rtl"] .client-sections .provide-mobile{
    left: -10px;
  }

  .client-sections .provide-item{
    font-size: 21px;
    min-height: 54px;
  }

  .client-sections .provide-item .provide-item-text{
    font-size: 18px;
  }
}

@media (max-width: 575px){
  .client-sections .provide-mock{
    padding: 8px;
    border-width: 4px;
  }

  .client-sections .desktop-nav strong{
    font-size: 19px;
  }

  .client-sections .desktop-nav ul{
    font-size: 8px;
    gap: 7px;
  }

  .client-sections .desktop-cta{
    font-size: 29px;
  }

  .client-sections .provide-mobile{
    position: static;
    margin: 12px auto 0;
    width: 92px;
    height: 168px;
  }

  .rtl .client-sections .provide-mobile,
  [dir="rtl"] .client-sections .provide-mobile{
    left: auto;
  }

  .client-sections .provide-item{
    grid-template-columns: 20px 1fr auto;
    padding: 10px 12px;
  }

  .rtl .client-sections .provide-item,
  [dir="rtl"] .client-sections .provide-item{
    grid-template-columns: auto 1fr 20px;
  }

  .client-sections .provide-item .provide-item-text{
    font-size: 15px;
  }
}

/* React Home Provide Section v2 (HoneyBook-style) */
.provide-renew-wrap .provide-title{
  margin-bottom: 18px;
}

.provide-renew-grid{
  grid-template-columns: minmax(300px, .88fr) minmax(420px, 1.12fr) !important;
  grid-template-areas: "list mock" !important;
  align-items: start;
  gap: 24px;
}

.provide-renew-left{
  padding-top: 2px;
}

.provide-renew-heading{
  color: #0f172a;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 14px;
}

.provide-renew-list{
  gap: 10px;
}

.provide-renew-list .provide-item{
  min-height: 56px;
  border-radius: 12px;
  padding: 9px 12px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-size: 15px;
  text-align: left;
}

.provide-renew-list .provide-item i{
  font-size: 15px;
  color: #101828;
}

.provide-renew-list .provide-item-copy{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.provide-renew-list .provide-item-title{
  font-size: 15px;
  font-weight: 700;
  line-height: 1.24;
}

.provide-renew-list .provide-item-subtitle{
  font-size: 11px;
  color: #6b7280;
  line-height: 1.32;
  font-weight: 500;
}

.provide-renew-list .provide-item.active{
  background: #f6eae5;
  box-shadow: 0 10px 22px rgba(16,24,40,.12);
  border-color: rgba(16,24,40,.08);
}

.provide-renew-list .provide-item.active .provide-arrow{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ck-primary);
  color: #fff;
  font-size: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
}

.provide-renew-right{
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.provide-renew-right .mock-palette,
.provide-renew-right .mock-star,
.provide-renew-right .provide-preview-meta{
  display: none;
}

.provide-renew-screen{
  position: relative;
  min-height: 350px;
  border-radius: 12px;
}

.invoice-shell{
  position: absolute;
  top: 16px;
  left: 10px;
  right: 30px;
  background: #fff;
  border: 1px solid #d4dbe6;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(15,23,42,.12);
  padding: 10px 12px 12px;
  z-index: 3;
}

.invoice-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.invoice-top strong{
  font-size: 11px;
  letter-spacing: .04em;
  color: #111827;
}

.invoice-chip{
  background: #ffe165;
  color: #111827;
  font-size: 9px;
  font-weight: 700;
  border-radius: 6px;
  padding: 3px 7px;
}

.invoice-table{
  display: grid;
  grid-template-columns: 1.7fr .6fr .8fr;
  gap: 6px 8px;
  font-size: 9px;
  color: #374151;
  margin-bottom: 10px;
}

.invoice-table div:nth-child(-n+3){
  font-size: 8px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
}

.invoice-pay-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.invoice-total{
  color: #111827;
  font-weight: 800;
  font-size: 14px;
}

.invoice-pay-row button{
  border: 0;
  border-radius: 6px;
  background: #4aa158;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-height: 24px;
  padding: 0 10px;
}

.invoice-desktop-image{
  position: absolute;
  inset: 58px 0 0 78px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(15,23,42,.14);
}

.invoice-desktop-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invoice-mobile-float{
  position: absolute;
  right: 8px;
  bottom: 34px;
  width: 150px;
  height: 283px;
  border-radius: 20px;
  border: 3px solid #111827;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15,23,42,.24);
  z-index: 4;
  background: #fff;
}

.invoice-mobile-float img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provide-renew-meta{
  text-align: center;
  margin-top: 18px;
}

.provide-renew-meta .client-btn{
  min-width: 136px;
  min-height: 36px;
  font-size: 13px;
  background: var(--ck-primary);
}

.provide-renew-meta p{
  margin: 7px 0 0;
  font-size: 12px;
  color: #6b7280;
}

.rtl .provide-renew-grid,
[dir="rtl"] .provide-renew-grid{
  grid-template-areas: "mock list" !important;
}

.rtl .provide-renew-list .provide-item,
[dir="rtl"] .provide-renew-list .provide-item{
  grid-template-columns: auto 1fr 20px;
  text-align: right;
}

.rtl .invoice-shell,
[dir="rtl"] .invoice-shell{
  left: 30px;
  right: 10px;
}

.rtl .invoice-desktop-image,
[dir="rtl"] .invoice-desktop-image{
  inset: 58px 78px 0 0;
}

.rtl .invoice-mobile-float,
[dir="rtl"] .invoice-mobile-float{
  right: auto;
  left: 8px;
}

@media (max-width: 991px){
  .provide-renew-grid{
    grid-template-columns: 1fr !important;
    grid-template-areas: "list" "mock" !important;
    gap: 20px;
  }

  .provide-renew-heading{
    font-size: 29px;
  }

  .invoice-shell{
    right: 18px;
  }

  .invoice-desktop-image{
    inset: 64px 0 0 56px;
  }

  .invoice-mobile-float{
    width: 84px;
    height: 146px;
  }
}

@media (max-width: 575px){
  .provide-renew-heading{
    font-size: 25px;
  }

  .provide-renew-list .provide-item{
    min-height: 52px;
    padding: 8px 10px;
  }

  .provide-renew-list .provide-item-title{
    font-size: 14px;
  }

  .provide-renew-list .provide-item-subtitle{
    font-size: 10px;
  }

  .provide-renew-screen{
    min-height: 300px;
  }

  .invoice-shell{
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0 0 10px;
  }

  .invoice-desktop-image{
    position: relative;
    inset: auto;
    height: 186px;
    margin-inline: 16px;
  }

  .invoice-mobile-float{
    position: absolute;
    right: 4px;
    bottom: 10px;
    width: 72px;
    height: 126px;
  }

  .rtl .invoice-mobile-float,
  [dir="rtl"] .invoice-mobile-float{
    left: 4px;
    right: auto;
  }
}

/* Provide Section v2 Cleanup (no invoice card) */
.provide-renew-heading,
.invoice-shell,
.invoice-top,
.invoice-chip,
.invoice-table,
.invoice-pay-row,
.invoice-total{
  display: none !important;
}

.provide-renew-wrap .provide-wrap.provide-renew-grid{
  grid-template-columns: minmax(320px, .9fr) minmax(520px, 1.1fr) !important;
  grid-template-areas: "list mock" !important;
  gap: 28px;
  align-items: center;
}

.provide-renew-list .provide-item{
  min-height: 66px;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  padding: 10px 14px;
}

.provide-renew-list .provide-item i{
  font-size: 19px;
}

.provide-renew-list .provide-item-title{
  font-size: 18px;
}

.provide-renew-list .provide-item-subtitle{
  font-size: 12px;
}

.provide-renew-right{
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.provide-renew-screen{
  min-height: 410px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f7f8fb, #eef1f7);
  border: 1px solid rgba(16,36,74,.10);
  box-shadow: 0 16px 34px rgba(16,36,74,.12);
  padding: 16px;
}

.invoice-desktop-image{
  position: absolute;
  inset: 16px 34px 16px 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(16,24,40,.14);
}

.invoice-mobile-float{
  right: -14px;
  bottom: 22px;
  width: 150px;
  height: 283px;
  border: 4px solid #0f172a;
  border-radius: 24px;
  box-shadow: 0 14px 28px rgba(15,23,42,.26);
}

.rtl .invoice-mobile-float,
[dir="rtl"] .invoice-mobile-float{
  right: auto;
  left: -14px;
}

.provide-renew-meta{
  text-align: center;
  margin-top: 22px;
}

.provide-renew-meta .client-btn{
  min-width: 154px;
  min-height: 40px;
}

@media (max-width: 991px){
  .provide-renew-wrap .provide-wrap.provide-renew-grid{
    grid-template-columns: 1fr !important;
    grid-template-areas: "list" "mock" !important;
    align-items: start;
  }

  .provide-renew-screen{
    min-height: 350px;
  }

  .invoice-desktop-image{
    inset: 14px 16px 14px 14px;
  }

  .invoice-mobile-float{
    right: 8px;
    width: 116px;
    height: 206px;
  }

  .rtl .invoice-mobile-float,
  [dir="rtl"] .invoice-mobile-float{
    left: 8px;
    right: auto;
  }
}

@media (max-width: 575px){
  .provide-renew-list .provide-item{
    min-height: 60px;
    padding: 9px 12px;
  }

  .provide-renew-list .provide-item i{
    font-size: 18px;
  }

  .provide-renew-list .provide-item-title{
    font-size: 15px;
  }

  .provide-renew-list .provide-item-subtitle{
    font-size: 11px;
  }

  .provide-renew-screen{
    min-height: 300px;
    padding: 12px;
  }

  .invoice-desktop-image{
    inset: 12px 12px 12px 12px;
  }

  .invoice-mobile-float{
    width: 92px;
    height: 168px;
    right: 4px;
    bottom: 14px;
  }

  .rtl .invoice-mobile-float,
  [dir="rtl"] .invoice-mobile-float{
    left: 4px;
    right: auto;
  }
}

/* Home How Section: Horizontal Card Slider Redesign */
.how-slider-wrap{
  background: #0f1f4f;
  color: #fff;
  padding: 72px 0 82px;
  position: relative;
}

.how-slider-wrap .how-title{
  color: var(--ck-primary);
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 10px;
}

.how-slider-wrap .how-subtitle{
  color: rgba(243, 244, 246, 0.92);
  margin-bottom: 28px;
  font-size: clamp(14px, 1.8vw, 18px);
}

.how-scroll-track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(244,126,66,.55) rgba(255,255,255,.12);
}

.how-scroll-track::-webkit-scrollbar{
  height: 8px;
}

.how-scroll-track::-webkit-scrollbar-track{
  background: rgba(255,255,255,.14);
  border-radius: 999px;
}

.how-scroll-track::-webkit-scrollbar-thumb{
  background: rgba(244,126,66,.78);
  border-radius: 999px;
}

.how-slide-card{
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 0;
  overflow: hidden;
  background: #f5f1ee;
  color: #111827;
  border: 1px solid rgba(16,36,74,.10);
  box-shadow: 0 16px 34px rgba(7, 16, 40, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.how-slide-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(7, 16, 40, .28);
}

.how-slide-media{
  height: 210px;
  overflow: hidden;
}

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

.how-slide-body{
  padding: 16px 14px 18px;
  min-height: 162px;
  background: #f5f1ee;
}

.how-slide-body h3{
  color: #111827;
  font-size: 35px;
  line-height: 1.14;
  margin: 0 0 8px;
}

.how-slide-body p{
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.how-scroll-cta{
  text-align: center;
  margin-top: 30px;
}

.rtl .how-slide-body,
[dir="rtl"] .how-slide-body{
  text-align: right;
}

@media (min-width: 1200px){
  .how-slide-card{
    flex-basis: 340px;
  }

  .how-slide-media{
    height: 228px;
  }
}

@media (max-width: 991px){
  .how-slider-wrap{
    padding: 58px 0 66px;
  }

  .how-scroll-track{
    gap: 14px;
  }

  .how-slide-card{
    flex-basis: 272px;
  }

  .how-slide-media{
    height: 194px;
  }

  .how-slide-body{
    min-height: 148px;
    padding: 14px 12px 16px;
  }

  .how-slide-body h3{
    font-size: 22px;
  }

  .how-slide-body p{
    font-size: 13px;
  }
}

@media (max-width: 575px){
  .how-slider-wrap .how-title{
    font-size: 29px;
  }

  .how-scroll-track{
    gap: 12px;
    padding-bottom: 8px;
  }

  .how-slide-card{
    flex-basis: 238px;
  }

  .how-slide-media{
    height: 168px;
  }

  .how-slide-body{
    min-height: 132px;
  }

  .how-scroll-cta{
    margin-top: 22px;
  }
}


/* Third Section Slider refinement: side arrows + compact cards */
.how-scroll-shell{
  position: relative;
  padding-inline: 48px;
}

.how-scroll-nav{
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(244,126,66,.35);
  background: #ffffff;
  color: var(--ck-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(7,16,40,.2);
}

.how-scroll-nav.prev{ left: 0; }
.how-scroll-nav.next{ right: 0; }

.how-scroll-nav:hover{
  background: var(--ck-primary);
  color: #fff;
}

.how-scroll-track{
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 10px;
}

.how-scroll-track::-webkit-scrollbar{
  display: none;
}

.how-slide-card{
  flex: 0 0 258px;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 12px 28px rgba(7,16,40,.18);
}

.how-slide-media{
  height: 178px;
}

.how-slide-body{
  min-height: 146px;
  padding: 14px 14px 16px;
}

.how-slide-body h3{
  font-size: 39px;
  margin-bottom: 6px;
}

.how-slide-body p{
  font-size: 14px;
  line-height: 1.4;
}

.rtl .how-scroll-nav.prev,
[dir="rtl"] .how-scroll-nav.prev{
  left: auto;
  right: 0;
}

.rtl .how-scroll-nav.next,
[dir="rtl"] .how-scroll-nav.next{
  right: auto;
  left: 0;
}

@media (max-width: 991px){
  .how-scroll-shell{
    padding-inline: 36px;
  }

  .how-scroll-nav{
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .how-slide-card{
    flex-basis: 230px;
    border-radius: 28px 28px 0 0;
  }

  .how-slide-media{
    height: 154px;
  }

  .how-slide-body{
    min-height: 132px;
    padding: 12px 12px 14px;
  }
}

@media (max-width: 575px){
  .how-scroll-shell{
    padding-inline: 32px;
  }

  .how-slide-card{
    flex-basis: 206px;
  }

  .how-slide-media{
    height: 140px;
  }

  .how-slide-body h3{
    font-size: 32px;
  }

  .how-slide-body p{
    font-size: 12px;
  }
}

/* Third section final match (arched cards + centered max-width row) */
.how-slider-wrap{
  background: #efeff2;
  color: #111827;
  padding: 72px 0 84px;
}

.how-slider-wrap .how-title{
  color: #111827;
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 8px;
}

.how-slider-wrap .how-subtitle{
  color: #3f3f46;
  font-size: clamp(14px, 1.6vw, 18px);
  margin-bottom: 26px;
}

.how-scroll-shell{
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 56px;
}

.how-scroll-track{
  gap: 18px;
  padding: 4px 0 6px;
}

.how-slide-card{
  flex: 0 0 258px;
  border-radius: 150px 150px 0 0;
  background: #e9e6e3;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.how-slide-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(17,24,39,.10);
}

.how-slide-media{
  height: 388px;
}

.how-slide-body{
  min-height: 228px;
  padding: 24px 26px 22px;
  background: #e9e6e3;
}

.how-slide-body h3{
  font-size: 52px;
  line-height: 1.06;
  margin: 0 0 14px;
  color: #0f172a;
}

.how-slide-body p{
  font-size: 29px;
  line-height: 1.42;
  color: #3f3f46;
}

.how-scroll-nav{
  top: 48%;
  width: 46px;
  height: 46px;
  border: 0;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .18);
}

.how-scroll-nav:hover{
  background: var(--ck-primary);
  color: #fff;
}

.how-scroll-cta{
  margin-top: 26px;
}

@media (max-width: 1199px){
  .how-scroll-shell{
    max-width: 1020px;
    padding-inline: 50px;
  }

  .how-slide-card{
    flex-basis: 232px;
    border-radius: 130px 130px 0 0;
  }

  .how-slide-media{
    height: 336px;
  }

  .how-slide-body{
    min-height: 206px;
    padding: 20px 20px 18px;
  }

  .how-slide-body h3{
    font-size: 44px;
    margin-bottom: 10px;
  }

  .how-slide-body p{
    font-size: 25px;
  }
}

@media (max-width: 991px){
  .how-slider-wrap{
    padding: 56px 0 66px;
  }

  .how-scroll-shell{
    padding-inline: 40px;
  }

  .how-slide-card{
    flex-basis: 220px;
    border-radius: 120px 120px 0 0;
  }

  .how-slide-media{
    height: 300px;
  }

  .how-slide-body{
    min-height: 188px;
    padding: 16px 16px 14px;
  }

  .how-slide-body h3{
    font-size: 38px;
  }

  .how-slide-body p{
    font-size: 21px;
  }
}

@media (max-width: 575px){
  .how-scroll-shell{
    padding-inline: 34px;
  }

  .how-scroll-nav{
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .how-slide-card{
    flex-basis: 200px;
    border-radius: 104px 104px 0 0;
  }

  .how-slide-media{
    height: 258px;
  }

  .how-slide-body{
    min-height: 172px;
  }

  .how-slide-body h3{
    font-size: 32px;
    margin-bottom: 8px;
  }

  .how-slide-body p{
    font-size: 18px;
  }
}


/* Third section reference match override */
.how-slider-wrap .container{max-width:1240px;}
.how-scroll-shell{max-width:1160px;padding-inline:52px;}
.how-scroll-track{gap:16px;padding:4px 0 4px;}
.how-scroll-track::-webkit-scrollbar{display:none;}
.how-slide-card{
  flex:0 0 258px;
  border-radius:140px 140px 0 0;
  background:#e9e6e3;
  box-shadow:none;
  border:0;
}
.how-slide-media{height:318px;}
.how-slide-body{
  min-height:212px;
  padding:29px 22px 20px;
  background:#f6eae5;
}
.how-slide-body h3{
  font-size:35px;
  line-height:1.08;
  margin:0 0 30px;
  color:#121826;
}
.how-slide-body p{
  font-size:26px;
  line-height:1.38;
  margin:0;
  color:#3f3f46;
}
.how-scroll-nav{top:46%;width:44px;height:44px;}
.how-scroll-nav.prev{left:2px;}
.how-scroll-nav.next{right:2px;}

@media (max-width: 1199px){
  .how-scroll-shell{max-width:1020px;padding-inline:46px;}
  .how-slide-card{flex-basis:234px;border-radius:122px 122px 0 0;}
  .how-slide-media{height:286px;}
  .how-slide-body{min-height:188px;padding:16px 16px 16px;}
  .how-slide-body h3{font-size:42px;margin-bottom:8px;}
  .how-slide-body p{font-size:23px;}
}

@media (max-width: 991px){
  .how-scroll-shell{padding-inline:36px;}
  .how-slide-card{flex-basis:214px;border-radius:108px 108px 0 0;}
  .how-slide-media{height:246px;}
  .how-slide-body{min-height:172px;padding:14px 14px 14px;}
  .how-slide-body h3{font-size:35px;}
  .how-slide-body p{font-size:19px;}
}

@media (max-width: 575px){
  .how-scroll-shell{padding-inline:30px;}
  .how-scroll-nav{width:34px;height:34px;font-size:18px;}
  .how-slide-card{flex-basis:198px;border-radius:96px 96px 0 0;}
  .how-slide-media{height:220px;}
  .how-slide-body{min-height:154px;padding:12px 12px 12px;}
  .how-slide-body h3{font-size:30px;margin-bottom:6px;}
  .how-slide-body p{font-size:16px;}
}

/* Section 3 only: wider cards area, no arrow buttons, cursor-scroll only */
.how-slider-wrap .container{
  max-width: 1460px;
}

.how-scroll-shell{
  max-width: 1500px;
  padding-inline: 10px;
}

.how-scroll-nav{
  display: none !important;
}

.how-scroll-track{
  cursor: grab;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.how-scroll-track:active{
  cursor: grabbing;
}

.how-scroll-track::-webkit-scrollbar{
  display: none;
}

.how-slide-card{
  flex: 0 0 334px;
}

@media (max-width: 1199px){
  .how-scroll-shell{
    max-width: 1120px;
    padding-inline: 8px;
  }

  .how-slide-card{
    flex-basis: 290px;
  }
}

@media (max-width: 991px){
  .how-scroll-shell{
    padding-inline: 6px;
  }

  .how-slide-card{
    flex-basis: 248px;
  }
}

@media (max-width: 575px){
  .how-slide-card{
    flex-basis: 220px;
  }
}

/* Review section tone softening (light mode only) */
.client-sections .testi-title{
  color: #27436d;
}

.client-sections .testi-card{
  background: #2a4673;
}

.client-sections .how-wrap:after{
  background: rgba(56, 90, 135, .62);
}

.client-sections .how-wrap:before{
  background: #2c4d7f;
}

/* Section 2 subtle size tune (balanced increase) */
.provide-renew-wrap .provide-title{
  font-size: 24px;
}

.provide-renew-list .provide-item{
  min-height: 62px;
  padding: 10px 14px;
}

.provide-renew-list .provide-item i{
  font-size: 17px;
}

.provide-renew-list .provide-item-title{
  font-size: 17px;
  line-height: 1.24;
}

.provide-renew-list .provide-item-subtitle{
  font-size: 12px;
  line-height: 1.34;
}

.provide-renew-list .provide-item.active .provide-arrow{
  width: 38px;
  height: 38px;
  font-size: 21px;
}

.provide-renew-screen{
  min-height: 430px;
}

.invoice-mobile-float{
  width: 156px;
  height: 290px;
}

.provide-renew-meta .client-btn{
  min-width: 162px;
  min-height: 42px;
  font-size: 14px;
}

@media (max-width: 991px){
  .provide-renew-list .provide-item{
    min-height: 58px;
  }

  .provide-renew-list .provide-item i{
    font-size: 16px;
  }

  .provide-renew-list .provide-item-title{
    font-size: 16px;
  }

  .provide-renew-list .provide-item-subtitle{
    font-size: 11px;
  }

  .provide-renew-screen{
    min-height: 360px;
  }

  .invoice-mobile-float{
    width: 120px;
    height: 214px;
  }
}

/* Section 3 container scale-up (safe, non-breaking) */
.how-slider-wrap{
  padding: 92px 0 104px;
}

.how-slider-wrap .container{
  max-width: 1300px;
}

.how-scroll-shell{
  max-width: 1480px;
  padding-inline: 20px;
}

.how-slide-card{
  flex: 0 0 360px;
}

.how-slide-media{
  height: 346px;
}

.how-slide-body{
  min-height: 236px;
}

@media (max-width: 1199px){
  .how-slider-wrap{
    padding: 78px 0 90px;
  }

  .how-slider-wrap .container{
    max-width: 1260px;
  }

  .how-scroll-shell{
    max-width: 1180px;
    padding-inline: 14px;
  }

  .how-slide-card{
    flex-basis: 308px;
  }

  .how-slide-media{
    height: 300px;
  }

  .how-slide-body{
    min-height: 206px;
  }
}

@media (max-width: 991px){
  .how-slider-wrap{
    padding: 62px 0 72px;
  }

  .how-scroll-shell{
    padding-inline: 10px;
  }

  .how-slide-card{
    flex-basis: 262px;
  }

  .how-slide-media{
    height: 258px;
  }

  .how-slide-body{
    min-height: 180px;
  }
}

@media (max-width: 575px){
  .how-slider-wrap{
    padding: 52px 0 60px;
  }

  .how-slide-card{
    flex-basis: 228px;
  }

  .how-slide-media{
    height: 224px;
  }

  .how-slide-body{
    min-height: 162px;
  }
}

/* Testimonials redesign (reference style) */
.testi-title{
  text-align: center;
  color: #1f1f1f;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.testi-subtitle{
  text-align: center;
  color: #2f2f2f;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  margin: 0 0 30px;
}

.testi-grid{
  max-width: 1260px;
  margin: 90px auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testi-card{
  background: #ffffff;
  border-radius: 0;
  padding: 72px 28px 28px;
  text-align: center;
  position: relative;
  min-height: 455px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, .08);
  width: 100%;
}

.testi-avatar-wrap{
  position: absolute;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
}

.testi-avatar{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-card h3{
  color: #151515;
  font-size: clamp(20px, 1.8vw, 34px);
  line-height: 1.22;
  margin: 18px 0 14px;
  font-weight: 700;
}

.testi-card p{
  color: #4d4d4d;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.65;
  margin: 0 0 18px;
}

.testi-card h5{
  color: #28324a;
  margin: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
}

/* hide legacy elements if any remain */
.testi-frame,
.testi-line,
.testi-cta,
.testi-nav{ display:none !important; }

@media (max-width: 991px){
  .testi-grid{
    grid-template-columns: 1fr;
    gap: 76px;
    max-width: 520px;
  }

  .testi-card{
    min-height: 0;
    padding: 74px 22px 24px;
  }

  .testi-avatar-wrap{
    width: 144px;
    height: 144px;
    top: -50px;
  }
}

.theme-dark .testi-title,
.theme-dark .testi-subtitle{
  color: #f3f4f6;
}

.theme-dark .testi-card{
  background: #1f2937;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
}

.theme-dark .testi-card h3,
.theme-dark .testi-card h5{
  color: #f3f4f6;
}

.theme-dark .testi-card p{
  color: #d1d5db;
}

/* Testimonials card polish per reference */
.testi-grid{
  gap: 28px;
  align-items: start;
}

.testi-card{
  background: #f6eae5 !important;
  border-radius: 0;
  min-height: 520px;
  padding: 193px 28px 34px;
  box-shadow: none;
  border: 0;
}

.testi-avatar-wrap{
  top: -54px;
  width: 196px;
  height: 196px;
}

.testi-card h3{
  margin-top: 0;
  margin-bottom: 30px;
  color: #121212;
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1.22;
}

.testi-card p{
  color: #4a4a4a;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.62;
  margin: 0 0 40px;
}

.testi-card h5{
  color: #1f1f1f;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 500;
}

@media (max-width: 991px){
  .testi-grid{
    gap: 84px;
  }

  .testi-card{
    min-height: 0;
    padding: 128px 22px 26px;
  }

  .testi-avatar-wrap{
    width: 176px;
    height: 176px;
    top: -50px;
  }
}

/* Section 2 mobile fix: keep desktop preview image fully visible */
@media (max-width: 575px){
  .provide-renew-screen{
    position: relative;
    min-height: 320px;
    overflow: hidden;
  }

  .provide-renew-screen .invoice-desktop-image{
    position: absolute !important;
    inset: 12px 12px 12px 12px !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 12px;
    overflow: hidden;
  }

  .provide-renew-screen .invoice-desktop-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .provide-renew-screen .invoice-mobile-float{
    position: absolute;
    right: 6px;
    bottom: 14px;
  }

  .rtl .provide-renew-screen .invoice-mobile-float,
  [dir="rtl"] .provide-renew-screen .invoice-mobile-float{
    right: auto;
    left: 6px;
  }
}

/* Section 3 small reduction: card width + typography */
.how-slide-card{
  flex: 0 0 296px;
}

.how-slide-body h3{
  font-size: clamp(32px, 2.1vw, 40px);
}

.how-slide-body p{
  font-size: clamp(14px, 0.98vw, 18px);
}

@media (max-width: 1199px){
  .how-slide-card{ flex-basis: 280px; }
  .how-slide-body h3{ font-size: clamp(28px, 1.9vw, 36px); }
  .how-slide-body p{ font-size: clamp(13px, 0.95vw, 17px); }
}

@media (max-width: 991px){
  .how-slide-card{ flex-basis: 246px; }
  .how-slide-body h3{ font-size: 30px; }
  .how-slide-body p{ font-size: 15px; }
}

@media (max-width: 575px){
  .how-slide-card{ flex-basis: 220px; }
  .how-slide-body h3{ font-size: 26px; }
  .how-slide-body p{ font-size: 14px; }
}

/* Dark mode alignment for updated Section 2 + Section 3 palettes */
.theme-dark .provide-renew-list .provide-item{
  background: rgba(31, 41, 55, 0.55);
  border-color: rgba(255,255,255,.12);
  color: #e5e7eb;
}

.theme-dark .provide-renew-list .provide-item-title{
  color: #f3f4f6;
}

.theme-dark .provide-renew-list .provide-item-subtitle{
  color: #cbd5e1;
}

.theme-dark .provide-renew-list .provide-item i{
  color: #ffb182;
}

.theme-dark .provide-renew-list .provide-item.active{
  background: #1f2937;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 26px rgba(0,0,0,.32);
}

.theme-dark .provide-renew-screen{
  background: #111827;
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 16px 34px rgba(0,0,0,.38);
}

.theme-dark .how-slider-wrap{
  background: #111827;
  color: #e5e7eb;
}

.theme-dark .how-slide-card{
  background: #1f2937;
  border-color: rgba(255,255,255,.10);
}

.theme-dark .how-slide-body{
  background: #1f2937;
}

.theme-dark .how-slide-body h3{
  color: #f3f4f6;
}

.theme-dark .how-slide-body p{
  color: #cbd5e1;
}

.theme-dark .testi-card{
  background: rgba(31, 41, 55, 0.72) !important;
}

/* RTL fix: Home section 2 should be points on right, preview on left */
[dir="rtl"] .client-sections .provide-wrap.provide-renew-grid,
.rtl .client-sections .provide-wrap.provide-renew-grid{
  grid-template-areas: "mock list" !important;
}

/* RTL final fix: Home section 2 item layout + arrow direction */
[dir="rtl"] .provide-renew-list .provide-item,
.rtl .provide-renew-list .provide-item{
  direction: ltr;
  grid-template-columns: auto 1fr auto;
}

[dir="rtl"] .provide-renew-list .provide-item > i,
.rtl .provide-renew-list .provide-item > i{
  order: 3;
  justify-self: end;
}

[dir="rtl"] .provide-renew-list .provide-item .provide-item-copy,
.rtl .provide-renew-list .provide-item .provide-item-copy{
  order: 2;
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .provide-renew-list .provide-item .provide-arrow,
.rtl .provide-renew-list .provide-item .provide-arrow{
  order: 1;
  justify-self: start;
}

/* prevent double-flip: icon class is already selected in JSX for RTL */
[dir="rtl"] .provide-renew-list .provide-item.active .provide-arrow i,
.rtl .provide-renew-list .provide-item.active .provide-arrow i{
  transform: none;
}

/* RTL parity fix: Home section 2 image module should match LTR size/position */
[dir="rtl"] .provide-renew-screen .invoice-desktop-image,
.rtl .provide-renew-screen .invoice-desktop-image{
  inset: 16px 34px 16px 16px !important;
}

[dir="rtl"] .provide-renew-screen .invoice-mobile-float,
.rtl .provide-renew-screen .invoice-mobile-float{
  right: -14px !important;
  left: auto !important;
}

@media (max-width: 575px){
  [dir="rtl"] .provide-renew-screen .invoice-mobile-float,
  .rtl .provide-renew-screen .invoice-mobile-float{
    right: 6px !important;
    left: auto !important;
  }
}

/* Home hero RTL fix: mirror image + overlay opacity with Arabic text side */
[dir="rtl"] .home-growth-hero .growth-media,
.rtl .home-growth-hero .growth-media{
  background-position: left center;
}

[dir="rtl"] .home-growth-hero .growth-card::before,
.rtl .home-growth-hero .growth-card::before{
  background:
    linear-gradient(270deg, rgba(14, 20, 33, .70) 0%, rgba(14, 20, 33, .56) 26%, rgba(14, 20, 33, .30) 50%, rgba(14, 20, 33, .10) 72%, rgba(14, 20, 33, .08) 100%),
    radial-gradient(80% 100% at 82% 52%, rgba(255,255,255,.16), rgba(255,255,255,0));
}

@media (max-width: 767px){
  [dir="rtl"] .home-growth-hero .growth-card::before,
  .rtl .home-growth-hero .growth-card::before{
    background:
      linear-gradient(180deg, rgba(14, 20, 33, .56) 0%, rgba(14, 20, 33, .44) 52%, rgba(14, 20, 33, .30) 100%),
      radial-gradient(85% 95% at 70% 18%, rgba(255,255,255,.10), rgba(255,255,255,0));
  }
}

/* Home hero subtext + note (content refresh) */
.home-growth-hero .growth-subtext{
  color: rgba(255,255,255,.93);
  font-size: clamp(15px, 1.35vw, 24px);
  line-height: 1.45;
  max-width: 640px;
  margin: 0 0 24px;
  text-shadow: 0 5px 16px rgba(0,0,0,.25);
}

.home-growth-hero .growth-cta-stack{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.home-growth-hero .growth-note{
  margin: 0px 15px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 500;
}

[dir="rtl"] .home-growth-hero .growth-cta-stack,
.rtl .home-growth-hero .growth-cta-stack{
  align-items: flex-end;
}

/* Shared final CTA block for home */
.final-cta-block{
  padding-top: 24px;
}

.final-cta-card{
  background: linear-gradient(135deg, #10244a 0%, #1a3568 48%, #27467f 100%);
  border-radius: 26px;
  padding: 42px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 18px 40px rgba(16, 36, 74, .22);
}

.final-cta-card h2{
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.2;
  max-width: 760px;
}

.final-cta-actions{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.final-cta-actions p{
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

@media (max-width: 991px){
  .home-growth-hero .growth-subtext{
    font-size: 14px;
    margin-bottom: 18px;
  }

  .home-growth-hero .growth-note{
    font-size: 12px;
  }

  .final-cta-card{
    padding: 28px 22px;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
  }

  .final-cta-card h2{
    max-width: 100%;
    font-size: clamp(22px, 5.2vw, 30px);
  }
}

.theme-dark .final-cta-card{
  background: linear-gradient(135deg, #0f172a 0%, #16243f 54%, #203559 100%);
  box-shadow: 0 18px 38px rgba(0,0,0,.42);
}

/* Final CTA dark mode polish (home + shared card styles) */
.theme-dark .final-cta-block{
  background: transparent;
}

.theme-dark .final-cta-card{
  background: linear-gradient(135deg, #0b1222 0%, #14233d 52%, #1d3558 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 44px rgba(0,0,0,.46);
}

.theme-dark .final-cta-card h2{
  color: #f8fafc;
}

.theme-dark .final-cta-card .final-cta-actions p,
.theme-dark .final-cta-card .growth-note{
  color: #cbd5e1;
}

.theme-dark .final-cta-card .client-btn,
.theme-dark .home-growth-hero .growth-cta-stack .client-btn{
  background: var(--ck-primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(244,126,66,.36);
}

/* Final CTA button hover/readability fix (dark mode + hover states) */
.final-cta-card .client-btn:hover,
.final-cta-card .client-btn:focus,
.final-cta-card .client-btn:active{
  color: #fff !important;
  text-decoration: none;
}

.theme-dark .final-cta-card .client-btn,
.theme-dark .final-cta-card .client-btn:hover,
.theme-dark .final-cta-card .client-btn:focus,
.theme-dark .final-cta-card .client-btn:active{
  background: var(--ck-primary) !important;
  color: #fff !important;
  border-color: transparent !important;
}

/* Home hero Start Free button hover/readability fix */
.home-growth-hero .client-btn,
.home-growth-hero .client-btn:hover,
.home-growth-hero .client-btn:focus,
.home-growth-hero .client-btn:active{
  color: #fff !important;
  text-decoration: none;
}

.theme-dark .home-growth-hero .client-btn,
.theme-dark .home-growth-hero .client-btn:hover,
.theme-dark .home-growth-hero .client-btn:focus,
.theme-dark .home-growth-hero .client-btn:active{
  background: var(--ck-primary) !important;
  color: #fff !important;
  border-color: transparent !important;
}
