@charset "UTF-8";
h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", Arial, sans-serif; }

body {
  font-family: "Instrument Sans", Arial, sans-serif; }

/* =========================
   INPUT WRAPPER
========================= */
.input-wrapper {
  position: relative; }

/* INVALID */
.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-select.is-invalid,
.was-validated .form-select:invalid {
  border-color: #f36270 !important;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f36270'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' stroke-linecap='round' stroke-width='1.2' d='M6 3.2v3.1'/%3e%3ccircle cx='6' cy='8.3' r='.7' fill='%23f36270' stroke='none'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right calc(.375em + .25rem) center !important;
  background-size: calc(.75em + .5rem) calc(.75em + .5rem) !important;
  box-shadow: none !important; }

/* =========================
   VALID STATE
========================= */
.form-control.is-valid,
.form-select.is-valid {
  border-color: #198754 !important;
  background-image: none !important;
  box-shadow: none !important; }

/* =========================
   ERROR MESSAGE
========================= */
.invalid-feedback {
  display: none;
  font-size: 0.875rem; }

.input-wrapper .is-invalid ~ .invalid-feedback {
  display: block; }

/* =========================
   CUSTOM "!" ICON
========================= */
.input-wrapper::after {
  content: "!";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #dc3545;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.2s ease; }

/* Show icon only when invalid */
.input-wrapper:has(.is-invalid)::after {
  opacity: 1; }

.light-bg {
  background-color: #F5F7FC !important; }

.white-bg {
  background-color: #ffffff !important; }

.gradient-text {
  background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; }

.section-p {
  padding: 120px 0 120px 0 !important; }

.section-p-m {
  padding: 80px 0 80px 0 !important; }

.text-left {
  text-align: left; }

.font-1rem {
  font-size: 1rem !important; }

/* v1 */
/*.custom-navbar {
  position: fixed; // 🔥 changed from sticky
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 10px 0;

  background: #fff;
  border-bottom: 1px solid #DDE3F0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);

  transition:
          transform 0.35s ease,
          background 0.3s ease,
          box-shadow 0.3s ease;

  // hidden state (slide up)
  &.nav-hidden {
    transform: translateY(-100%);
  }

  // visible state
  &.nav-visible {
    transform: translateY(0);
  }

  // scroll style (blur + shadow)
  &.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    color: #1D2C53; // base color
    font-weight: 500;
    transition: all 0.25s ease;
    font-size: 1rem;
    &:hover {
      color: #4A6EFF; // 🔥 hover color (your gradient start)
    }

    &.active {
      color: #4A6EFF;
      font-weight: 500;
    }
  }

  .dropdown-animate {
    display: block; // required for animation
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.25s ease;

    &.show {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }
  }
}*/
/* end v1 */
/* v2 */
.custom-navbar {
  background: #fff;
  border-bottom: 1px solid #DDE3F0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease; }
  .custom-navbar.is-sticky {
    position: fixed;
    animation: navbarSlideDown 0.35s ease forwards;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }
  .custom-navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:active {
    background-color: transparent !important;
    background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%); }
  html[dir="rtl"] .custom-navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: right; }
  .custom-navbar .language-dropdown .language-toggle {
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #d9deea;
    border-radius: 999px;
    background: #fff;
    color: #1e2a5a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: none; }
    .custom-navbar .language-dropdown .language-toggle::after {
      margin-left: 2px; }
    .custom-navbar .language-dropdown .language-toggle:hover, .custom-navbar .language-dropdown .language-toggle:focus, .custom-navbar .language-dropdown .language-toggle:active {
      background: #fff !important;
      border-color: #d9deea !important;
      color: #1e2a5a !important;
      box-shadow: none !important; }
    .custom-navbar .language-dropdown .language-toggle .lang-code {
      font-size: 14px;
      font-weight: 600;
      color: #6b7280; }
    .custom-navbar .language-dropdown .language-toggle .lang-name {
      font-size: 16px;
      font-weight: 600;
      color: #204ecf; }
  .custom-navbar .language-dropdown .language-menu {
    min-width: 180px;
    margin-top: 10px !important;
    padding: 10px 0;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(20, 33, 61, 0.12);
    overflow: hidden; }
    .custom-navbar .language-dropdown .language-menu .dropdown-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 18px;
      font-size: 16px;
      color: #1f2a44;
      background: transparent; }
      .custom-navbar .language-dropdown .language-menu .dropdown-item .lang-code {
        min-width: 24px;
        font-size: 14px;
        font-weight: 600;
        color: #6b7280; }
      .custom-navbar .language-dropdown .language-menu .dropdown-item .lang-name {
        font-weight: 500; }
      .custom-navbar .language-dropdown .language-menu .dropdown-item:hover {
        background: #f3f7ff;
        color: #2457e6; }
      .custom-navbar .language-dropdown .language-menu .dropdown-item.active {
        background: #eef4ff;
        color: #2457e6;
        font-weight: 600; }
  .custom-navbar html[dir="rtl"] .language-dropdown .language-toggle::after {
    margin-right: 2px;
    margin-left: 0; }
  .custom-navbar html[dir="rtl"] .language-dropdown .language-menu .dropdown-item {
    text-align: right; }
  @media (max-width: 991.98px) {
    .custom-navbar .language-dropdown {
      width: 100%; }
      .custom-navbar .language-dropdown .language-toggle {
        width: 100%;
        justify-content: center; }
      .custom-navbar .language-dropdown .language-menu {
        width: 100%; }
    .custom-navbar .navbar-right-section {
      display: block !important; }
      .custom-navbar .navbar-right-section .btn-started {
        width: 100% !important;
        margin-top: 15px; }
    .custom-navbar .nav-link {
      padding-left: 0 !important;
      padding-right: 0 !important; }
    .custom-navbar .navbar-nav {
      padding-top: 10px; }
    .custom-navbar .navbar-collapse {
      border-top: 1px solid #e9e7e7;
      margin-top: 15px; } }

/* end v2 */
/* footer */
.footer {
  padding: 4rem 0 2rem;
  background: #ffffff; }
  .footer .footer-brand {
    max-width: 16rem; }
  .footer .footer-logo {
    margin-bottom: 0.75rem; }
    .footer .footer-logo .logo-placeholder {
      font-size: 1.2rem;
      font-weight: 700;
      color: #112868; }
    .footer .footer-logo img {
      max-height: 2rem; }
  .footer .footer-description {
    font-size: 0.85rem;
    color: #7B8BB5;
    line-height: 1.7;
    margin-bottom: 1rem; }
  .footer .footer-social a {
    width: 2rem;
    height: 2rem;
    border-radius: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #112868;
    font-size: 0.9rem;
    background: #F2F5FC; }
    .footer .footer-social a:hover {
      background: #E6ECFA; }
  .footer .footer-links h6 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #A1ACC9;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  .footer .footer-links ul li {
    margin-bottom: 0.5rem; }
  .footer .footer-links ul a {
    font-size: 0.85rem;
    color: #112868;
    text-decoration: none; }
    .footer .footer-links ul a:hover {
      color: #35529E; }
  .footer .footer-bottom p {
    font-size: 0.75rem;
    color: #A1ACC9;
    margin: 0; }

@media (max-width: 991.98px) {
  .footer-top {
    gap: 2rem; }

  .footer-brand {
    margin-bottom: 1.5rem; }

  .footer-bottom .payment-image-container {
    text-align: center !important;
    margin-bottom: 15px; } }
@media (max-width: 767.98px) {
  .footer {
    padding: 3rem 0 1.5rem; }

  .footer-links h6 {
    font-size: 0.65rem; }

  .footer-links a {
    font-size: 0.8rem; } }
.copyright-section .link {
  color: #0C1C44; }
  .copyright-section .link:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #A1ACC9;
    margin: 0 0.75rem; }
  .copyright-section .link:last-child:after {
    display: none; }

.btn-custom-gradient, .primary-btn {
  background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  transition: all 0.25s ease;
  background-position: right center;
  box-shadow: 0 4px 12px rgba(53, 82, 158, 0.3); }
  .btn-custom-gradient:hover, .primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(53, 82, 158, 0.35);
    color: #ffffff;
    background-size: 200% 200%; }
  .btn-custom-gradient:active, .primary-btn:active {
    transform: translateY(0px);
    box-shadow: 0 4px 10px rgba(53, 82, 158, 0.25);
    color: #ffffff !important; }
  .btn-custom-gradient:focus, .btn-custom-gradient:visited, .primary-btn:focus, .primary-btn:visited {
    box-shadow: 0 0 0 0.2rem rgba(74, 110, 255, 0.25);
    color: #ffffff; }

.btn-custom-outline {
  background: #fff;
  border: 1px solid #DDE3F0;
  color: #3b3f5c;
  border-radius: 8px;
  padding: 10px 18px;
  transition: all 0.25s ease;
  background-position: right center; }
  .btn-custom-outline:hover {
    background: #f8faff; }

.hero-growth-section {
  padding: 8rem 0 5rem 0;
  background: #ffffff;
  overflow: hidden; }
  .hero-growth-section .content-container {
    padding-left: 40px; }
  .hero-growth-section .hero-growth-content {
    /*max-width: 90%;*/ }
  .hero-growth-section .hero-title {
    font-size: 2.6rem;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #0C1C44; }
    .hero-growth-section .hero-title span {
      display: block; }
  .hero-growth-section .hero-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #5b5f7a;
    margin-bottom: 1.25rem; }
    .hero-growth-section .hero-description strong {
      color: #0C1C44;
      font-weight: 700; }
  .hero-growth-section .hero-report-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; }
  .hero-growth-section .hero-form {
    margin-bottom: 2rem;
    max-width: 32rem; }
  .hero-growth-section .hero-input {
    height: 3rem;
    border-radius: 0.625rem;
    border: 1px solid #e1e4f0;
    background: #f4f1ff;
    box-shadow: none;
    padding: 0 1rem;
    font-size: 0.95rem;
    color: #132968;
    margin-bottom: 0.75rem; }
    .hero-growth-section .hero-input::placeholder {
      color: #9aa0b8; }
    .hero-growth-section .hero-input:focus {
      border-color: #8170ec;
      box-shadow: 0 0 0 0.2rem rgba(129, 112, 236, 0.15);
      background: #fff; }
  .hero-growth-section .hero-btn {
    height: 3.125rem;
    border-radius: 0.625rem;
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 0.625rem; }
  .hero-growth-section .hero-btn-primary {
    color: #fff;
    background: linear-gradient(90deg, #4a6eff 0%, #545ae0 50%, #8170ec 100%);
    box-shadow: 0 4px 12px rgba(53, 82, 158, 0.3); }
    .hero-growth-section .hero-btn-primary:hover, .hero-growth-section .hero-btn-primary:focus {
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 8px 16px rgba(53, 82, 158, 0.35); }
    .hero-growth-section .hero-btn-primary:active {
      color: #fff;
      transform: translateY(0); }
  .hero-growth-section .hero-btn-secondary {
    color: #fff;
    background: #31c5b4;
    box-shadow: 0 4px 12px rgba(49, 197, 180, 0.25); }
    .hero-growth-section .hero-btn-secondary:hover, .hero-growth-section .hero-btn-secondary:focus {
      color: #fff;
      background: #29b3a3;
      transform: translateY(-1px); }
    .hero-growth-section .hero-btn-secondary:active {
      color: #fff; }
  .hero-growth-section .hero-features .hero-feature-item {
    font-size: 0.875rem;
    color: #6f7592;
    line-height: 1.7;
    display: flex;
    align-items: center; }
    .hero-growth-section .hero-features .hero-feature-item svg {
      margin-right: 10px; }
  .hero-growth-section .hero-growth-image img {
    max-width: 100%;
    height: auto;
    display: inline-block; }
    html[dir="rtl"] .hero-growth-section .hero-growth-image img {
      float: left; }
  .hero-growth-section .hero-why-p {
    color: #8E8AB0;
    text-transform: uppercase;
    font-size: 1rem; }
  .hero-growth-section .content-free-package {
    margin-top: 20px;
    max-width: 25rem; }
    .hero-growth-section .content-free-package .free-plan-card {
      background: linear-gradient(135deg, #f1ecff 0%, #e3f2fd 50%, #f8f9fc 100%);
      border-radius: 16px;
      padding: 24px;
      border: 1px solid #7C3AED1A; }
      .hero-growth-section .content-free-package .free-plan-card .plan-badge {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        color: #22c55e;
        background: rgba(34, 197, 94, 0.1);
        padding: 4px 10px;
        border-radius: 20px;
        margin-bottom: 12px; }
      .hero-growth-section .content-free-package .free-plan-card .plan-title {
        font-size: 18px;
        font-weight: 700;
        color: #1f2a44;
        margin-bottom: 18px;
        letter-spacing: 0.5px; }
      .hero-growth-section .content-free-package .free-plan-card .plan-features {
        list-style: none;
        padding: 0;
        margin: 0 0 20px; }
        .hero-growth-section .content-free-package .free-plan-card .plan-features li {
          display: flex;
          align-items: center;
          gap: 10px;
          font-size: 15px;
          color: #4b5563;
          margin-bottom: 12px; }
          .hero-growth-section .content-free-package .free-plan-card .plan-features li .icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #22c55e;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px; }
      .hero-growth-section .content-free-package .free-plan-card .plan-btn {
        display: block;
        text-align: center;
        padding: 12px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        margin-bottom: 15px;
        transition: 0.3s; }
        .hero-growth-section .content-free-package .free-plan-card .plan-btn:hover {
          opacity: 0.9; }
      .hero-growth-section .content-free-package .free-plan-card .plan-footer {
        font-size: 14px;
        color: #6b7280;
        text-align: center; }
        .hero-growth-section .content-free-package .free-plan-card .plan-footer a {
          color: #5b67f1;
          font-weight: 500;
          text-decoration: underline; }
          .hero-growth-section .content-free-package .free-plan-card .plan-footer a:hover {
            opacity: 0.8; }
  @media (max-width: 1199.98px) {
    .hero-growth-section .hero-title {
      font-size: 3.25rem; } }
  @media (max-width: 991.98px) {
    .hero-growth-section {
      padding: 4rem 0;
      text-align: center; }
      .hero-growth-section .hero-growth-content {
        max-width: 100%;
        margin: 0 auto;
        padding-top: 50px; }
      .hero-growth-section .hero-title {
        font-size: 2.75rem; }
        .hero-growth-section .hero-title span {
          display: inline; }
      .hero-growth-section .hero-growth-image {
        text-align: center; }
      .hero-growth-section .content-container {
        padding-left: 0 !important; }
      .hero-growth-section .hero-form {
        padding-left: 20px;
        padding-right: 20px; }
      .hero-growth-section .hero-features {
        padding-left: 20px;
        padding-right: 20px;
        text-align: left; }
        .hero-growth-section .hero-features svg {
          width: 15px;
          float: left; }
      .hero-growth-section .content-hero-group {
        display: block !important; }
        .hero-growth-section .content-hero-group button {
          width: 100%;
          text-align: center;
          display: block !important;
          border-top-left-radius: 8px !important;
          border-bottom-left-radius: 8px !important; }
        .hero-growth-section .content-hero-group .form-control {
          width: 100%; } }
  @media (max-width: 575.98px) {
    .hero-growth-section .hero-title {
      font-size: 2.2rem; }
    .hero-growth-section .hero-description {
      font-size: 1rem; }
    .hero-growth-section .hero-input,
    .hero-growth-section .hero-btn {
      height: 3rem; }
    .hero-growth-section .hero-features .hero-feature-item {
      font-size: 0.8125rem; } }

.page-home .hero-growth-section .hero-growth-image img {
  width: 125% !important;
  max-width: 125% !important; }
  html[dir="rtl"] .page-home .hero-growth-section .hero-growth-image img {
    width: 110% !important;
    max-width: 110% !important; }
@media (min-width: 992px) {
  .page-home .hero-growth-section .hero-growth-image {
    margin-right: calc(-1 * ((100vw - 960px) / 2));
    text-align: right; }
    html[dir="rtl"] .page-home .hero-growth-section .hero-growth-image {
      margin-left: calc(-1 * ((100vw - 960px) / 2));
      margin-right: inherit;
      text-align: left; } }
@media (min-width: 1200px) {
  .page-home .hero-growth-section .hero-growth-image {
    margin-right: calc(-1 * ((100vw - 1140px) / 2)); }
    html[dir="rtl"] .page-home .hero-growth-section .hero-growth-image {
      margin-left: calc(-1 * ((100vw - 1140px) / 2));
      margin-right: inherit; } }
@media (min-width: 1400px) {
  .page-home .hero-growth-section .hero-growth-image {
    margin-right: calc(-1 * ((100vw - 1320px) / 2)); }
    html[dir="rtl"] .page-home .hero-growth-section .hero-growth-image {
      margin-left: calc(-1 * ((100vw - 1320px) / 2));
      margin-right: inherit; } }
@media (min-width: 992px) {
  .page-home .hero-growth-section .hero-right-col {
    padding-right: 0 !important; }
    html[dir="rtl"] .page-home .hero-growth-section .hero-right-col {
      padding-left: 0 !important;
      padding-right: inherit !important; } }

.home-capabilities-section {
  background: #F5F7FC;
  padding: 90px 0 100px; }
  .home-capabilities-section .capabilities-grid {
    margin: 0 auto; }
  .home-capabilities-section .capability-card {
    background: #ffffff;
    border: 1px solid #EEF2FA;
    border-radius: 18px;
    padding: 26px 24px 22px;
    box-shadow: 0 8px 30px rgba(17, 40, 104, 0.04);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative; }
    .home-capabilities-section .capability-card .capability-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 500;
      color: #7C3AED;
      background: #F5F3FF;
      border: 1px solid #DDD6FE;
      line-height: 1; }
      html[dir="rtl"] .home-capabilities-section .capability-card .capability-badge {
        right: inherit;
        left: 1rem; }
      .home-capabilities-section .capability-card .capability-badge i, .home-capabilities-section .capability-card .capability-badge svg {
        font-size: 0.75rem;
        color: #7C3AED; }
  .home-capabilities-section .capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(17, 40, 104, 0.08); }
  .home-capabilities-section .capability-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px; }
  .home-capabilities-section .capability-icon--blue {
    background: #EEF4FF;
    color: #356DFF; }
  .home-capabilities-section .capability-icon--purple {
    background: #F4EEFF;
    color: #8B5CF6; }
  .home-capabilities-section .capability-icon--green {
    background: #ECFAF1;
    color: #22A35A; }
  .home-capabilities-section .capability-icon--orange {
    background: #FFF6E9;
    color: #F59E0B; }
  .home-capabilities-section .capability-icon--pink {
    background: #FFF0F4;
    color: #FF4D7E; }
  .home-capabilities-section .capability-icon--sky {
    background: #EEF7FF;
    color: #2F80ED; }
  .home-capabilities-section .capability-title {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: #0C1C44; }
  .home-capabilities-section .capability-text {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    color: #7E8CB2; }
  .home-capabilities-section .capability-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #35529E;
    text-decoration: none;
    margin-top: auto; }
    .home-capabilities-section .capability-link:hover {
      color: #0C1C44; }
    .home-capabilities-section .capability-link i {
      font-size: 15px;
      line-height: 1; }
    .home-capabilities-section .capability-link.blue-learn-more {
      color: #3B7EF6; }
    .home-capabilities-section .capability-link.purple-learn-more {
      color: #8B5CF6; }
    .home-capabilities-section .capability-link.green-learn-more {
      color: #22C55E; }
    .home-capabilities-section .capability-link.orange-learn-more {
      color: #F97316; }
  @media (max-width: 991.98px) {
    .home-capabilities-section {
      padding: 75px 0 85px; }
      .home-capabilities-section .capability-title {
        font-size: 20px; } }
  @media (max-width: 767.98px) {
    .home-capabilities-section {
      padding: 65px 0 70px; }
      .home-capabilities-section .capability-card {
        padding: 22px 20px 20px;
        border-radius: 16px; }
      .home-capabilities-section .capability-title {
        font-size: 18px; }
      .home-capabilities-section .capability-text {
        font-size: 13px;
        line-height: 1.8; } }

.home-how-it-work-section {
  padding: 90px 0 100px;
  background: #ffffff; }
  .home-how-it-work-section .section-subtitle {
    max-width: 600px;
    margin: 0 auto 60px; }
  .home-how-it-work-section .how-it-work-steps {
    display: flex;
    flex-direction: column;
    gap: 22px; }
  .home-how-it-work-section .how-it-work-box {
    align-items: stretch !important;
    /*width: 80%;
    max-width: 1100px;*/
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #E7EDF8;
    box-shadow: 0 10px 30px rgba(17, 40, 104, 0.06);
    position: relative;
    overflow: hidden; }
    .home-how-it-work-section .how-it-work-box > [class*="col-"] {
      position: relative; }
    .home-how-it-work-section .how-it-work-box > [class*="col-"] + [class*="col-"]::before {
      content: "";
      position: absolute;
      top: -60px;
      bottom: -60px;
      left: 0;
      width: 1px;
      background: #edf1f7; }
    .home-how-it-work-section .how-it-work-box .right-col {
      background-color: #F9FAFB !important; }
      .home-how-it-work-section .how-it-work-box .right-col .preview-card,
      .home-how-it-work-section .how-it-work-box .right-col .launch-stat-card {
        background: #F9FAFB !important; }
    .home-how-it-work-section .how-it-work-box .col-content {
      padding: 50px 40px; }
    .home-how-it-work-section .how-it-work-box .col-content-right {
      padding: 50px 40px; }
    .home-how-it-work-section .how-it-work-box.last-child .right-col {
      padding: 83px 40px !important; }
  .home-how-it-work-section .how-content {
    max-width: 420px; }
  .home-how-it-work-section .step-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #A1ACC9;
    margin-bottom: 14px; }
  .home-how-it-work-section h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0C1C44;
    margin-bottom: 12px; }
  .home-how-it-work-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #7E8CB2;
    margin-bottom: 20px; }
  .home-how-it-work-section .how-preview {
    text-align: right; }
  .home-how-it-work-section .preview-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #E7EDF8;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(17, 40, 104, 0.06);
    max-width: 420px;
    margin-left: auto; }
  .home-how-it-work-section .preview-input {
    margin-bottom: 14px; }
    .home-how-it-work-section .preview-input input {
      height: 38px;
      border-radius: 8px;
      border: 1px solid #E1E6F2;
      font-size: 13px;
      box-shadow: none; }
      .home-how-it-work-section .preview-input input:focus {
        border-color: #8170EC;
        box-shadow: 0 0 0 0.2rem rgba(129, 112, 236, 0.12); }
    .home-how-it-work-section .preview-input .btn {
      height: 38px;
      padding: 0 14px;
      font-size: 13px;
      white-space: nowrap; }
  .home-how-it-work-section .preview-status {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    text-align: left; }
    .home-how-it-work-section .preview-status.success {
      background: #ECFAF1;
      border-color: #CDEFD9;
      color: #22A35A; }
    html[dir="rtl"] .home-how-it-work-section .preview-status {
      text-align: right; }
    .home-how-it-work-section .preview-status.error {
      background: #FFE8EC;
      border-color: #F8C8D0;
      color: #F0566A; }
  .home-how-it-work-section .preview-progress {
    margin-top: 10px; }
    .home-how-it-work-section .preview-progress .progress {
      height: 6px;
      border-radius: 999px;
      background: #E8EEF9;
      overflow: hidden; }
      .home-how-it-work-section .preview-progress .progress .progress-bar {
        background: #4A6EFF;
        border-radius: inherit; }
    .home-how-it-work-section .preview-progress span {
      font-size: 11px;
      color: #8B97BB; }
  .home-how-it-work-section .preview-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #A1ACC9;
    margin-bottom: 12px; }
  .home-how-it-work-section .preview-card-label-keywords {
    margin-top: 16px; }
  .home-how-it-work-section .competitor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }
    .home-how-it-work-section .competitor-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid #DBE5FB;
      background: #F5F8FF;
      font-size: 11px;
      font-weight: 600;
      color: #4A6EFF; }
  .home-how-it-work-section .keyword-row {
    margin-bottom: 12px; }
    .home-how-it-work-section .keyword-row:last-child {
      margin-bottom: 0; }
  .home-how-it-work-section .keyword-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px; }
    .home-how-it-work-section .keyword-meta span {
      font-size: 13px;
      color: #4D5E8D; }
    .home-how-it-work-section .keyword-meta strong {
      font-size: 12px;
      font-weight: 600;
      color: #9AA7C8; }
  .home-how-it-work-section .keyword-bar {
    height: 4px;
    border-radius: 999px;
    background: #E5EAF5;
    overflow: hidden; }
    .home-how-it-work-section .keyword-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #4A6EFF 0%, #8170EC 100%); }
  .home-how-it-work-section .preview-card-settings .setting-row {
    margin-bottom: 14px; }
  .home-how-it-work-section .preview-card-settings .setting-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px; }
    .home-how-it-work-section .preview-card-settings .setting-head span {
      font-size: 13px;
      color: #4D5E8D; }
    .home-how-it-work-section .preview-card-settings .setting-head strong {
      font-size: 12px;
      font-weight: 600;
      color: #A1ACC9; }
  .home-how-it-work-section .preview-card-settings .setting-slider {
    position: relative;
    height: 4px;
    border-radius: 999px;
    background: #DFE5F1; }
    .home-how-it-work-section .preview-card-settings .setting-slider span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #4A6EFF 0%, #8170EC 100%); }
    .home-how-it-work-section .preview-card-settings .setting-slider i {
      position: absolute;
      top: 50%;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid #7F88FF;
      transform: translate(-50%, -50%);
      box-shadow: 0 2px 8px rgba(74, 110, 255, 0.18); }
  .home-how-it-work-section .preview-card-settings .setting-row:nth-child(1) .setting-slider i {
    left: 76%; }
    html[dir="rtl"] .home-how-it-work-section .preview-card-settings .setting-row:nth-child(1) .setting-slider i {
      right: 73%;
      left: inherit; }
  .home-how-it-work-section .preview-card-settings .setting-row:nth-child(2) .setting-slider i {
    left: 88%; }
    html[dir="rtl"] .home-how-it-work-section .preview-card-settings .setting-row:nth-child(2) .setting-slider i {
      right: 85%;
      left: inherit; }
  .home-how-it-work-section .preview-card-settings .setting-row:nth-child(3) .setting-slider i {
    left: 48%; }
    html[dir="rtl"] .home-how-it-work-section .preview-card-settings .setting-row:nth-child(3) .setting-slider i {
      right: 45%;
      left: inherit; }
  .home-how-it-work-section .preview-card-settings .toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px; }
    .home-how-it-work-section .preview-card-settings .toggle-row span {
      font-size: 13px;
      color: #4D5E8D; }
  .home-how-it-work-section .preview-card-settings .toggle-switch {
    position: relative;
    width: 28px;
    height: 16px;
    border-radius: 999px;
    background: #D9DEE9;
    display: inline-block; }
    .home-how-it-work-section .preview-card-settings .toggle-switch i {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 1px 4px rgba(17, 40, 104, 0.15); }
    .home-how-it-work-section .preview-card-settings .toggle-switch.active {
      background: #35C46B; }
      .home-how-it-work-section .preview-card-settings .toggle-switch.active i {
        left: 14px; }
  .home-how-it-work-section .preview-card-launch .launch-stat-card {
    border: 1px solid #E7EDF8;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(17, 40, 104, 0.04); }
    .home-how-it-work-section .preview-card-launch .launch-stat-card strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      font-weight: 800;
      color: #22A35A;
      margin-bottom: 6px; }
    .home-how-it-work-section .preview-card-launch .launch-stat-card span {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: #A1ACC9; }
  .home-how-it-work-section .preview-card-launch .col-4:nth-child(2) .launch-stat-card strong {
    color: #4A6EFF; }
  .home-how-it-work-section .preview-card-launch .col-4:nth-child(3) .launch-stat-card strong {
    color: #112868; }
  .home-how-it-work-section .preview-card-launch .launch-alert {
    margin-top: 14px;
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid #BFEACB;
    background: #EDF9F1;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px; }
  .home-how-it-work-section .preview-card-launch .launch-alert-left,
  .home-how-it-work-section .preview-card-launch .launch-alert-right {
    font-size: 12px;
    font-weight: 600;
    color: #22A35A; }
  @media (max-width: 991.98px) {
    .home-how-it-work-section .how-it-work-box {
      padding: 30px 20px;
      text-align: center;
      margin: 0;
      width: 100%; }
      .home-how-it-work-section .how-it-work-box.last-child .right-col {
        padding: 0 !important; }
      .home-how-it-work-section .how-it-work-box .col-content-right {
        padding: 0; }
    .home-how-it-work-section .how-content {
      max-width: 100%;
      margin: 0 auto 30px; }
    .home-how-it-work-section .how-preview {
      text-align: center; }
    .home-how-it-work-section .how-it-work-box > [class*="col-"] + [class*="col-"]::before {
      display: none; }
    .home-how-it-work-section .preview-card {
      margin: 0 auto; } }

.home-writing-examples-section {
  padding: 5.5rem 0 2rem 0;
  background: #ffffff; }
  .home-writing-examples-section .section-subtitle {
    max-width: 48rem;
    margin: 0 auto 3.25rem; }
  .home-writing-examples-section .writing-browser-wrap {
    /*max-width: 72rem;*/
    max-width: 100%;
    margin: 0 auto;
    background-image: url("../img/browser.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    min-height: 43rem;
    padding: 2.1rem 1.9rem 1.6rem;
    filter: drop-shadow(0 1.2rem 2.5rem rgba(17, 40, 104, 0.14)); }
    html[dir="rtl"] .home-writing-examples-section .writing-browser-wrap .left-col {
      padding-left: 8px; }
  .home-writing-examples-section .writing-browser-inner {
    min-height: 35rem;
    height: 35rem;
    margin-top: 44px; }
  .home-writing-examples-section .writing-article-scroll {
    height: 100%;
    max-height: 35rem;
    overflow-y: auto;
    padding: 1.6rem 1.4rem 1.4rem 1.7rem;
    border-right: 1px solid #eef2fa; }
    html[dir="rtl"] .home-writing-examples-section .writing-article-scroll {
      border-right: 0;
      border-left: 1px solid #eef2fa;
      padding: 1.6rem 1.7rem 1.4rem 1.4rem; }
    .home-writing-examples-section .writing-article-scroll::-webkit-scrollbar {
      width: 0.45rem; }
    .home-writing-examples-section .writing-article-scroll::-webkit-scrollbar-track {
      background: transparent; }
    .home-writing-examples-section .writing-article-scroll::-webkit-scrollbar-thumb {
      background: #d7dfef;
      border-radius: 999px; }
  .home-writing-examples-section .writing-article-content {
    max-width: 34rem; }
  .home-writing-examples-section .article-trust-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    padding: 0.9rem 1rem;
    border-left: 3px solid #22c55e;
    background: #ecfaf1; }
    .home-writing-examples-section .article-trust-box strong {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1f8f4d; }
    .home-writing-examples-section .article-trust-box span {
      font-size: 0.75rem;
      color: #5e7b6b; }
  .home-writing-examples-section .article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.25rem; }
  .home-writing-examples-section .article-meta-item {
    min-width: 7rem; }
    .home-writing-examples-section .article-meta-item label {
      display: block;
      margin-bottom: 0.25rem;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #a1acc9; }
    .home-writing-examples-section .article-meta-item span {
      display: block;
      font-size: 0.78rem;
      color: #4d5e8d; }
  .home-writing-examples-section .article-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.9;
    font-weight: 800;
    color: #0C1C44;
    margin-top: 20px; }
  .home-writing-examples-section .writing-article-content p {
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.9;
    color: #5f6b84; }
  .home-writing-examples-section .writing-side-panels {
    height: 100%;
    padding: 1.3rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    background-color: #F9FAFB;
    width: 99% !important; }
  .home-writing-examples-section .writing-side-card {
    background: #ffffff;
    border: 1px solid #e7edf8;
    border-radius: 0.9rem;
    padding: 0.95rem 0.95rem 0.9rem;
    box-shadow: 0 0.35rem 1rem rgba(17, 40, 104, 0.04); }
  .home-writing-examples-section .writing-side-title {
    margin-bottom: 0.85rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #a1acc9; }
  .home-writing-examples-section .score-line {
    margin-bottom: 0.85rem; }
    .home-writing-examples-section .score-line:last-child {
      margin-bottom: 0; }
    .home-writing-examples-section .score-line span {
      font-size: 0.72rem;
      color: #4d5e8d; }
    .home-writing-examples-section .score-line strong {
      font-size: 0.72rem;
      color: #16a34a;
      font-weight: 700; }
  .home-writing-examples-section .score-line-warning strong {
    color: #f59e0b; }
  .home-writing-examples-section .score-bar {
    height: 0.2rem;
    margin-top: 0.38rem;
    background: #e5eaf5;
    border-radius: 999px;
    overflow: hidden; }
    .home-writing-examples-section .score-bar span {
      display: block;
      height: 100%;
      background: #22c55e; }
  .home-writing-examples-section .score-line-warning .score-bar span {
    background: #eab308; }
  .home-writing-examples-section .signal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem; }
    .home-writing-examples-section .signal-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 1.7rem;
      padding: 0.35rem 0.6rem;
      border-radius: 999px;
      background: #edf9f1;
      color: #1f8f4d;
      font-size: 0.68rem;
      font-weight: 600; }
    .home-writing-examples-section .signal-tags .warning {
      background: #fff5e8;
      color: #d97706; }
  .home-writing-examples-section .density-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid #eef2fa; }
    .home-writing-examples-section .density-row:last-child {
      border-bottom: 0;
      padding-bottom: 0; }
    .home-writing-examples-section .density-row span {
      font-size: 0.74rem;
      color: #4d5e8d; }
    .home-writing-examples-section .density-row strong {
      font-size: 0.74rem;
      font-weight: 600;
      color: #a1acc9; }
  @media (max-width: 991.98px) {
    .home-writing-examples-section .writing-browser-wrap {
      background-size: contain;
      padding: 1.8rem 1.2rem 1.2rem;
      min-height: auto; }
    .home-writing-examples-section .writing-browser-inner {
      height: auto; }
    .home-writing-examples-section .writing-article-scroll {
      max-height: 100px;
      border-right: 0;
      border-bottom: 1px solid #eef2fa;
      padding: 1.25rem 1rem; }
    .home-writing-examples-section .writing-side-panels {
      padding: 1rem 0.5rem 0 0.5rem;
      margin-top: 85px; } }
  @media (max-width: 767.98px) {
    .home-writing-examples-section {
      padding: 4rem 0 4.5rem; }
      .home-writing-examples-section .writing-browser-wrap {
        padding: 1.4rem 0.8rem 0.8rem; }
      .home-writing-examples-section .article-title {
        font-size: 1.45rem; }
      .home-writing-examples-section .writing-article-content p {
        font-size: 0.86rem; }
      .home-writing-examples-section .article-meta-row {
        gap: 0.85rem; } }

.home-competitor-intelligence-section {
  padding: 5.5rem 0 2rem 0;
  background: #f5f7fc; }
  .home-competitor-intelligence-section .section-subtitle {
    max-width: 34rem;
    margin: 0 auto 2.5rem; }
  .home-competitor-intelligence-section .competitor-intelligence-box {
    /*max-width: 68rem;*/
    max-width: 100%;
    margin: 0 auto; }
  .home-competitor-intelligence-section .competitor-select-card,
  .home-competitor-intelligence-section .competitor-chart-card {
    background: #ffffff;
    border: 1px solid #e7edf8;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 2rem rgba(17, 40, 104, 0.05); }
  .home-competitor-intelligence-section .competitor-select-card {
    padding: 1rem; }
  .home-competitor-intelligence-section .competitor-chart-card {
    padding: 1rem 1rem 0.75rem; }
  .home-competitor-intelligence-section .competitor-card-title {
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #112868; }
  .home-competitor-intelligence-section .competitor-card-subtitle {
    margin-bottom: 1rem;
    font-size: 0.68rem;
    line-height: 1.6;
    color: #8b97bb; }
  .home-competitor-intelligence-section .competitor-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem; }
  .home-competitor-intelligence-section .competitor-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.5rem;
    padding: 0.75rem;
    border: 2px solid #dbe3f2;
    border-radius: 0.65rem;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease; }
    .home-competitor-intelligence-section .competitor-item.has-border {
      border: 2px solid transparent;
      background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #4A6EFF, #545AE0, #8170EC) border-box; }
    .home-competitor-intelligence-section .competitor-item.competitor-item-static {
      cursor: default;
      pointer-events: none; }
  .home-competitor-intelligence-section .competitor-item-active {
    background: linear-gradient(135deg, #6c63ff 0%, #7268ea 100%);
    border-color: transparent; }
    .home-competitor-intelligence-section .competitor-item-active .competitor-info strong,
    .home-competitor-intelligence-section .competitor-item-active .competitor-info small {
      color: #ffffff; }
    .home-competitor-intelligence-section .competitor-item-active .competitor-badge {
      background: rgba(255, 255, 255, 0.18);
      color: #ffffff; }
  .home-competitor-intelligence-section .competitor-check {
    position: relative;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0; }
    .home-competitor-intelligence-section .competitor-check input {
      position: absolute;
      opacity: 0;
      inset: 0; }
    .home-competitor-intelligence-section .competitor-check .check-ui {
      width: 1rem;
      height: 1rem;
      border-radius: 0.25rem;
      border: 1px solid #bfcbe4;
      background: #ffffff;
      display: block;
      position: relative; }
    .home-competitor-intelligence-section .competitor-check input:checked + .check-ui {
      background: #6c63ff;
      border-color: #6c63ff; }
    .home-competitor-intelligence-section .competitor-check input:checked + .check-ui::after {
      content: "";
      position: absolute;
      left: 0.3rem;
      top: 0.1rem;
      width: 0.2rem;
      height: 0.45rem;
      border: solid #ffffff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg); }
  .home-competitor-intelligence-section .competitor-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1; }
    .home-competitor-intelligence-section .competitor-info strong {
      font-size: 0.74rem;
      font-weight: 700;
      color: #112868; }
    .home-competitor-intelligence-section .competitor-info small {
      font-size: 0.62rem;
      color: #8b97bb; }
  .home-competitor-intelligence-section .competitor-badge {
    min-height: 1.2rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #5b61f6;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
  .home-competitor-intelligence-section .competitor-footer {
    margin-top: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eef2fa;
    font-size: 0.62rem;
    color: #a1acc9; }
  .home-competitor-intelligence-section #competitor-analysis-chart {
    width: 100%;
    height: 15.5rem; }
  .home-competitor-intelligence-section .competitor-alert-bar {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, #0c1c44 0%, #18305f 100%);
    box-shadow: 0 1rem 2.5rem rgba(12, 28, 68, 0.2); }
  .home-competitor-intelligence-section .competitor-alert-left {
    gap: 0.85rem; }
  .home-competitor-intelligence-section .competitor-alert-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.5rem;
    background: rgba(255, 107, 107, 0.12);
    color: #ff6b6b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0; }
  .home-competitor-intelligence-section .competitor-alert-content .competitor-alert-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72); }
  .home-competitor-intelligence-section .competitor-alert-content strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.12rem; }
  .home-competitor-intelligence-section .competitor-alert-content p {
    margin: 0;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7); }
  .home-competitor-intelligence-section .competitor-alert-btn {
    min-height: 2rem;
    padding: 0.45rem 0.8rem;
    border-radius: 0.5rem;
    background: #ff6b6b;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .home-competitor-intelligence-section .competitor-alert-btn:hover {
      background: #ff5a5a;
      color: #ffffff; }
  @media (max-width: 991.98px) {
    .home-competitor-intelligence-section {
      padding: 4.5rem 0 5rem; }
      .home-competitor-intelligence-section #competitor-analysis-chart {
        height: 18rem; } }
  @media (max-width: 767.98px) {
    .home-competitor-intelligence-section {
      padding: 4rem 0 4.5rem; }
      .home-competitor-intelligence-section .section-subtitle {
        margin-bottom: 2rem; }
      .home-competitor-intelligence-section .competitor-select-card,
      .home-competitor-intelligence-section .competitor-chart-card {
        padding: 0.9rem; }
      .home-competitor-intelligence-section #competitor-analysis-chart {
        height: 16rem; }
      .home-competitor-intelligence-section .competitor-alert-bar {
        padding: 0.9rem; } }

.home-workflow-section {
  padding: 90px 0 100px;
  background-color: #ffffff; }
  .home-workflow-section .workflow-grid {
    max-width: 1180px;
    margin: 0 auto; }
  .home-workflow-section .workflow-step-card {
    max-width: 360px;
    margin: 0 auto; }
  .home-workflow-section .workflow-step-number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #EAF0FA;
    color: #35529E;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px; }
  .home-workflow-section .workflow-step-title {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #112868; }
  .home-workflow-section .workflow-step-text {
    max-width: 330px;
    margin: 0 auto 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: #8B97BB; }
  .home-workflow-section .workflow-preview-card {
    background: #ffffff;
    border: 1px solid #E7EDF8;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(17, 40, 104, 0.06);
    min-height: 160px; }
  .home-workflow-section .preview-search-box {
    height: 32px;
    border: 1px solid #E8EDF7;
    border-radius: 8px;
    background: #F8FAFE;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #9AA7C8;
    margin-bottom: 12px; }
  .home-workflow-section .ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .home-workflow-section .ranking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #112868; }
  .home-workflow-section .ranking-number {
    min-width: 22px;
    font-weight: 700;
    color: #35529E; }
  .home-workflow-section .ranking-domain {
    flex: 1;
    font-weight: 500;
    color: #4D5E8D; }
  .home-workflow-section .ranking-badge {
    min-width: 56px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1; }
  .home-workflow-section .ranking-badge--blue {
    background: #EAF1FF;
    color: #35529E; }
  .home-workflow-section .ranking-badge--orange {
    background: #FFF2D9;
    color: #F59E0B; }
  .home-workflow-section .workflow-preview-card--score {
    padding: 18px 16px; }
  .home-workflow-section .score-head {
    margin-bottom: 14px; }
  .home-workflow-section .score-label {
    font-size: 11px;
    font-weight: 600;
    color: #4D5E8D; }
  .home-workflow-section .score-value {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    color: #35529E; }
  .home-workflow-section .score-progress {
    height: 6px;
    border-radius: 999px;
    background: #E8EEF9;
    overflow: hidden;
    margin-bottom: 14px; }
  .home-workflow-section .score-progress-bar {
    width: 80%;
    height: 100%;
    border-radius: inherit;
    background: #23B26D; }
  .home-workflow-section .score-row {
    margin-bottom: 10px; }
    .home-workflow-section .score-row:last-child {
      margin-bottom: 0; }
  .home-workflow-section .score-row-label {
    font-size: 11px;
    color: #8B97BB; }
  .home-workflow-section .score-row-value {
    font-size: 11px;
    font-weight: 700;
    color: #112868; }
  .home-workflow-section .score-row-value--green {
    color: #23B26D; }
  .home-workflow-section .workflow-preview-card--opportunities {
    padding: 14px 14px 12px; }
  .home-workflow-section .opportunities-title {
    margin-bottom: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #A1ACC9; }
  .home-workflow-section .opportunity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px; }
    .home-workflow-section .opportunity-item:last-child {
      margin-bottom: 0; }
  .home-workflow-section .opportunity-text {
    font-size: 11px;
    line-height: 1.5;
    color: #4D5E8D; }
  .home-workflow-section .opportunity-badge {
    min-width: 58px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap; }
  .home-workflow-section .opportunity-badge--red {
    background: #FFE8EC;
    color: #F0566A; }
  .home-workflow-section .opportunity-badge--green {
    background: #E8FAF0;
    color: #23B26D; }
  .home-workflow-section .opportunity-badge--blue {
    background: #EAF1FF;
    color: #35529E; }
  @media (max-width: 1199.98px) {
    .home-workflow-section .workflow-step-title {
      font-size: 24px; } }
  @media (max-width: 991.98px) {
    .home-workflow-section .home-workflow-section {
      padding: 75px 0 85px; }
    .home-workflow-section .workflow-step-card {
      max-width: 100%; }
    .home-workflow-section .workflow-step-title {
      font-size: 22px; } }
  @media (max-width: 767.98px) {
    .home-workflow-section .home-workflow-section {
      padding: 65px 0 70px; }
    .home-workflow-section .workflow-step-number {
      margin-bottom: 14px; }
    .home-workflow-section .workflow-step-title {
      font-size: 20px; }
    .home-workflow-section .workflow-step-text {
      font-size: 13px;
      line-height: 1.75; }
    .home-workflow-section .workflow-preview-card {
      min-height: auto; } }

.home-gsc-section {
  padding: 5.5rem 0 2rem 0;
  background-color: #f2f5fc; }
  .home-gsc-section .mini-badges {
    margin-top: 1.5rem; }
  .home-gsc-section .mini-badge {
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 1px solid #E7EDF8;
    font-size: 0.65rem;
    color: #7B8BB5;
    text-align: center; }
    .home-gsc-section .mini-badge strong {
      display: block;
      font-size: 0.75rem;
      color: #112868;
      margin-top: 0.2rem; }
  .home-gsc-section .stats-row {
    margin-top: 2.5rem; }
  .home-gsc-section .stat-box {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(17, 40, 104, 0.05); }
    .home-gsc-section .stat-box h4 {
      font-size: 1.6rem;
      font-weight: bolder;
      margin-bottom: 0.3rem;
      color: #4F46E5; }
    .home-gsc-section .stat-box span {
      font-size: 0.8rem;
      color: #6B7BA8;
      font-weight: 500; }
  .home-gsc-section .features-grid {
    margin-top: 3rem; }
  .home-gsc-section .feature-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #E7EDF8;
    gap: 1rem; }
    .home-gsc-section .feature-card h5 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: #112868; }
    .home-gsc-section .feature-card p {
      font-size: 0.85rem;
      color: #8B97BB;
      margin: 0;
      line-height: 1.6; }
  .home-gsc-section .feature-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, #35529E, #0C1C44);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0; }
  .home-gsc-section .dashboard-image img {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(17, 40, 104, 0.1); }
  @media (max-width: 768px) {
    .home-gsc-section .stat-box {
      padding: 1.2rem 0.8rem; }
      .home-gsc-section .stat-box h4 {
        font-size: 1.3rem; } }
  .home-gsc-section .cta-note {
    color: #8E9BB4; }

.home-technical-seo-section {
  padding: 5.5rem 0 2rem 0;
  background-color: #ffffff; }
  .home-technical-seo-section .section-heading {
    max-width: 48rem;
    margin: 0 auto 2.5rem; }
  .home-technical-seo-section .technical-seo-preview {
    margin-bottom: 1.5rem; }
    .home-technical-seo-section .technical-seo-preview img {
      width: 100%;
      max-width: 66rem;
      border-radius: 1rem;
      box-shadow: 0 1rem 2.5rem rgba(17, 40, 104, 0.08); }
  .home-technical-seo-section .technical-feature-row {
    max-width: 66rem;
    margin: 0 auto; }
  .home-technical-seo-section .technical-feature-card {
    background: #ffffff;
    border: 1px solid #e7edf8;
    border-radius: 0.9rem;
    padding: 1rem 1rem 1.1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(17, 40, 104, 0.04); }
  .home-technical-seo-section .technical-feature-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    font-size: 0.85rem; }
  .home-technical-seo-section .technical-feature-icon--blue {
    background: #eef4ff;
    color: #35529e; }
  .home-technical-seo-section .technical-feature-icon--purple {
    background: #f4eeff;
    color: #8b5cf6; }
  .home-technical-seo-section .technical-feature-icon--sky {
    background: #eefaff;
    color: #27a3d8; }
  .home-technical-seo-section .technical-feature-icon--orange {
    background: #fff4e8;
    color: #f59e0b; }
  .home-technical-seo-section .technical-feature-title {
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: #112868; }
  .home-technical-seo-section .technical-feature-text {
    margin-bottom: 0.9rem;
    font-size: 0.74rem;
    line-height: 1.75;
    color: #8b97bb; }
  .home-technical-seo-section .technical-feature-stats {
    display: flex;
    flex-direction: column;
    gap: 0.45rem; }
  .home-technical-seo-section .technical-feature-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.68rem;
    line-height: 1.4; }
    .home-technical-seo-section .technical-feature-stat .label {
      font-weight: 700;
      color: #22a35a; }
    .home-technical-seo-section .technical-feature-stat .value {
      color: #a1acc9;
      text-align: right; }
  .home-technical-seo-section .technical-section-note {
    margin-top: 1.2rem;
    font-size: 0.7rem;
    color: #a1acc9; }
  @media (max-width: 991.98px) {
    .home-technical-seo-section .home-technical-seo-section {
      padding: 4.5rem 0 5rem; } }
  @media (max-width: 767.98px) {
    .home-technical-seo-section .home-technical-seo-section {
      padding: 4rem 0 4.5rem; }
    .home-technical-seo-section .technical-seo-preview {
      margin-bottom: 1.25rem; }
    .home-technical-seo-section .technical-feature-card {
      padding: 0.95rem; }
    .home-technical-seo-section .technical-feature-title {
      font-size: 0.9rem; }
    .home-technical-seo-section .technical-feature-text {
      font-size: 0.72rem; } }

.home-case-analysis-section {
  padding: 5.5rem 0 2rem 0; }
  .home-case-analysis-section .case-analysis-includes-card,
  .home-case-analysis-section .case-analysis-form-card {
    background: #ffffff;
    border: 1px solid #e7edf8;
    border-radius: 1.125rem;
    box-shadow: 0 1rem 2.5rem rgba(17, 40, 104, 0.08); }
  .home-case-analysis-section .case-analysis-includes-card {
    padding: 1.5rem 1.25rem; }
  .home-case-analysis-section .case-analysis-card-title {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #a1acc9;
    text-transform: uppercase; }
  .home-case-analysis-section .case-analysis-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.78rem 0;
    border-bottom: 1px solid #eef2fa;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4d5e8d; }
    .home-case-analysis-section .case-analysis-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0; }
    .home-case-analysis-section .case-analysis-list li:first-child {
      padding-top: 0.2rem; }
  .home-case-analysis-section .case-analysis-list-icon {
    width: 1rem;
    height: 1rem;
    color: #35529e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0; }
  .home-case-analysis-section .case-analysis-form-card {
    padding: 2rem 1.75rem 1.5rem; }
  .home-case-analysis-section .case-analysis-form-head {
    margin-bottom: 1rem; }
  .home-case-analysis-section .case-analysis-form-title {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #112868; }
  .home-case-analysis-section .case-analysis-form-text {
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #a1acc9; }
  .home-case-analysis-section .case-analysis-input-wrap {
    margin-bottom: 0.6rem; }
  .home-case-analysis-section .case-analysis-input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 2;
    color: #c0c9de;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
  .home-case-analysis-section .case-analysis-input {
    height: 3rem;
    padding-left: 2.7rem;
    border: 1px solid #d9e1f0;
    border-radius: 0.75rem;
    box-shadow: none;
    font-size: 0.875rem;
    color: #112868;
    background: #ffffff; }
    .home-case-analysis-section .case-analysis-input::placeholder {
      color: #b2bbd2; }
    .home-case-analysis-section .case-analysis-input:focus {
      border-color: #35529e;
      box-shadow: 0 0 0 0.2rem rgba(53, 82, 158, 0.08); }
  .home-case-analysis-section .case-analysis-help-text {
    margin-bottom: 4.5rem;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #b2bbd2; }
  .home-case-analysis-section .case-analysis-submit-btn {
    min-height: 3.125rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700; }
  @media (max-width: 991.98px) {
    .home-case-analysis-section .home-case-analysis-section {
      padding: 4.5rem 0 5rem; }
    .home-case-analysis-section .case-analysis-form-card {
      padding: 1.6rem 1.25rem 1.25rem; }
    .home-case-analysis-section .case-analysis-help-text {
      margin-bottom: 2.5rem; } }
  @media (max-width: 767.98px) {
    .home-case-analysis-section .home-case-analysis-section {
      padding: 4rem 0 4.5rem; }
    .home-case-analysis-section .home-case-analysis-section .section-heading {
      margin-bottom: 2rem; }
    .home-case-analysis-section .case-analysis-includes-card,
    .home-case-analysis-section .case-analysis-form-card {
      border-radius: 1rem; }
    .home-case-analysis-section .case-analysis-includes-card {
      padding: 1.25rem 1rem; }
    .home-case-analysis-section .case-analysis-form-card {
      padding: 1.25rem 1rem 1rem; }
    .home-case-analysis-section .case-analysis-list li {
      font-size: 0.8125rem; }
    .home-case-analysis-section .case-analysis-help-text {
      margin-bottom: 1.5rem; }
    .home-case-analysis-section .case-analysis-submit-btn {
      font-size: 0.85rem; } }

.home-agency-section {
  padding: 5.5rem 0 2rem 0;
  background-color: #F8FAFC;
  /* agency overview */
  /* end agency overview */ }
  .home-agency-section .section-heading {
    max-width: 52rem;
    margin: 0 auto 3rem; }
  .home-agency-section .agency-content {
    /*max-width: 90%;*/
    margin: 0 auto; }
  .home-agency-section .agency-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #112868;
    margin-bottom: 0.6rem; }
  .home-agency-section .agency-text {
    font-size: 0.9rem;
    color: #7B8BB5;
    margin-bottom: 1.5rem;
    line-height: 1.7; }
  .home-agency-section .agency-features {
    margin-bottom: 1.5rem; }
  .home-agency-section .agency-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #4D5E8D;
    line-height: 1.6;
    background: #FDFEFF;
    padding: 10px;
    border-radius: 8px; }
    .home-agency-section .agency-feature i {
      font-size: 0.9rem;
      color: #35529E;
      margin-top: 0.15rem;
      flex-shrink: 0; }
  .home-agency-section .agency-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center; }
  .home-agency-section .agency-image {
    text-align: center; }
    .home-agency-section .agency-image img {
      max-width: 100%;
      border-radius: 1rem;
      box-shadow: 0 1rem 3rem rgba(17, 40, 104, 0.1); }
  @media (max-width: 991.98px) {
    .home-agency-section .home-agency-section {
      padding: 4.5rem 0 5rem; }
    .home-agency-section .agency-title {
      font-size: 1.3rem; } }
  @media (max-width: 767.98px) {
    .home-agency-section .home-agency-section {
      padding: 4rem 0 4.5rem; }
    .home-agency-section .agency-title {
      font-size: 1.2rem; }
    .home-agency-section .agency-text {
      font-size: 0.85rem; }
    .home-agency-section .agency-feature {
      font-size: 0.75rem; } }
  .home-agency-section .agency-overview {
    position: relative;
    background-image: url("../img/browser.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    min-height: 520px;
    padding: 76px 30px 40px 40px;
    filter: drop-shadow(0 20px 40px rgba(17, 40, 104, 0.15)); }
    .home-agency-section .agency-overview .agency-dashboard-shell {
      padding-bottom: 16px; }
    .home-agency-section .agency-overview .agency-dashboard-summary {
      background: #ffffff;
      border: 1px solid #e7edf8;
      border-radius: 0.95rem;
      box-shadow: 0 0.75rem 2rem rgba(17, 40, 104, 0.05);
      padding: 1.2rem 1.25rem;
      margin-bottom: 1.25rem; }
    .home-agency-section .agency-overview .agency-dashboard-title {
      font-size: 1.55rem;
      font-weight: 700;
      color: #112868;
      margin-bottom: 0.2rem; }
    .home-agency-section .agency-overview .agency-dashboard-subtitle {
      margin: 0;
      font-size: 0.78rem;
      color: #8b97bb; }
    .home-agency-section .agency-overview .agency-dashboard-add-btn {
      min-height: 2.2rem;
      padding: 0.45rem 0.95rem;
      font-size: 0.72rem;
      font-weight: 600;
      border-radius: 0.5rem; }
    .home-agency-section .agency-overview .agency-summary-stats {
      margin-top: 1.15rem; }
    .home-agency-section .agency-overview .agency-summary-stat {
      padding: 0.25rem 1rem 0.25rem 0; }
      .home-agency-section .agency-overview .agency-summary-stat .label {
        display: block;
        margin-bottom: 0.35rem;
        font-size: 0.62rem;
        font-weight: 700;
        color: #a1acc9;
        letter-spacing: 0.06em; }
      .home-agency-section .agency-overview .agency-summary-stat strong {
        display: block;
        font-size: 1.15rem;
        font-weight: 800;
        color: #1b2437;
        line-height: 1.25; }
      .home-agency-section .agency-overview .agency-summary-stat small {
        display: block;
        margin-top: 0.35rem;
        font-size: 0.72rem; }
      .home-agency-section .agency-overview .agency-summary-stat .up {
        color: #10b981; }
      .home-agency-section .agency-overview .agency-summary-stat .down {
        color: #ef4444; }
    .home-agency-section .agency-overview .agency-summary-stats > [class*="col-"] {
      border-right: 1px solid #eef2fa; }
      .home-agency-section .agency-overview .agency-summary-stats > [class*="col-"]:last-child {
        border-right: 0; }
    .home-agency-section .agency-overview .agency-clients-head {
      margin-bottom: 1rem; }
      .home-agency-section .agency-overview .agency-clients-head h5 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #112868;
        margin-bottom: 0.2rem; }
      .home-agency-section .agency-overview .agency-clients-head p {
        margin: 0;
        font-size: 0.72rem;
        color: #8b97bb; }
    .home-agency-section .agency-overview .agency-client-card {
      background: #ffffff;
      border: 1px solid #e7edf8;
      border-radius: 0.95rem;
      box-shadow: 0 0.75rem 2rem rgba(17, 40, 104, 0.05);
      padding: 0.95rem 0.95rem 0.85rem;
      height: 100%; }
    .home-agency-section .agency-overview .agency-client-card-top {
      margin-bottom: 0.55rem; }
      .home-agency-section .agency-overview .agency-client-card-top h6 {
        font-size: 0.88rem;
        font-weight: 700;
        color: #112868;
        margin-bottom: 0.15rem; }
      .home-agency-section .agency-overview .agency-client-card-top span {
        display: block;
        font-size: 0.66rem;
        color: #a1acc9;
        line-height: 1.4; }
    .home-agency-section .agency-overview .agency-client-trend {
      font-size: 0.9rem;
      line-height: 1;
      margin-top: 0.1rem; }
      .home-agency-section .agency-overview .agency-client-trend.up {
        color: #10b981; }
      .home-agency-section .agency-overview .agency-client-trend.neutral {
        color: #94a3b8; }
      .home-agency-section .agency-overview .agency-client-trend.down {
        color: #ef4444; }
    .home-agency-section .agency-overview .agency-client-metrics {
      margin-bottom: 0.55rem; }
      .home-agency-section .agency-overview .agency-client-metrics strong {
        font-size: 0.9rem;
        font-weight: 700;
        color: #1b2437; }
      .home-agency-section .agency-overview .agency-client-metrics small {
        font-size: 0.72rem;
        font-weight: 700; }
      .home-agency-section .agency-overview .agency-client-metrics .up {
        color: #10b981; }
      .home-agency-section .agency-overview .agency-client-metrics .down {
        color: #ef4444; }
    .home-agency-section .agency-overview .agency-health-chart {
      width: 100%;
      height: 7rem; }
    .home-agency-section .agency-overview .agency-health-label {
      text-align: center;
      font-size: 0.78rem;
      color: #6b7280;
      margin-top: -0.2rem; }
    @media (max-width: 991.98px) {
      .home-agency-section .agency-overview .agency-dashboard-shell {
        padding: 1.2rem 1rem 1rem; }
      .home-agency-section .agency-overview .agency-dashboard-title {
        font-size: 1.3rem; }
      .home-agency-section .agency-overview .agency-summary-stats > [class*="col-"]:nth-child(2) {
        border-right: 0; }
      .home-agency-section .agency-overview .agency-summary-stats > [class*="col-"] {
        border-bottom: 1px solid #eef2fa;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem; }
      .home-agency-section .agency-overview .agency-summary-stats > [class*="col-"]:nth-last-child(-n+2) {
        border-bottom: 0; } }
    @media (max-width: 767.98px) {
      .home-agency-section .agency-overview .agency-dashboard-summary {
        padding: 1rem; }
      .home-agency-section .agency-overview .agency-dashboard-head {
        align-items: flex-start !important; }
      .home-agency-section .agency-overview .agency-summary-stats > [class*="col-"] {
        border-right: 0; }
      .home-agency-section .agency-overview .agency-client-card {
        padding: 0.85rem; }
      .home-agency-section .agency-overview .agency-health-chart {
        height: 6.3rem; } }

.home-comparison-section {
  padding: 5.5rem 0 2rem 0; }
  .home-comparison-section .section-heading {
    max-width: 48rem;
    margin: 0 auto 2.75rem; }
  .home-comparison-section .section-subtitle {
    max-width: 34rem; }
  .home-comparison-section .comparison-table-wrap {
    max-width: 61rem;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e7edf8;
    border-radius: 1rem;
    box-shadow: 0 1rem 2.5rem rgba(17, 40, 104, 0.08);
    overflow: hidden; }
  .home-comparison-section .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0; }
    .home-comparison-section .comparison-table thead tr {
      background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%) !important; }
    .home-comparison-section .comparison-table thead th {
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1.4;
      padding: 1rem 1.125rem;
      text-align: left;
      border: 0; }
      html[dir="rtl"] .home-comparison-section .comparison-table thead th {
        text-align: right; }
      .home-comparison-section .comparison-table thead th:nth-child(2), .home-comparison-section .comparison-table thead th:nth-child(3) {
        text-align: center !important; }
      .home-comparison-section .comparison-table thead th:nth-child(3) {
        background-color: #FFFFFF1F; }
    .home-comparison-section .comparison-table tbody tr {
      border-bottom: 1px solid #eef2fa; }
      .home-comparison-section .comparison-table tbody tr:last-child {
        border-bottom: 0; }
    .home-comparison-section .comparison-table tbody td {
      padding: 0.9rem 1.125rem;
      font-size: 0.8125rem;
      line-height: 1.5;
      color: #112868;
      vertical-align: middle;
      background: #ffffff; }
      .home-comparison-section .comparison-table tbody td:nth-child(2), .home-comparison-section .comparison-table tbody td:nth-child(3) {
        text-align: center; }
      .home-comparison-section .comparison-table tbody td:nth-child(3) {
        background-color: #35529E08; }
  .home-comparison-section .comparison-status {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    line-height: 1; }
  .home-comparison-section .comparison-status--no {
    background: #ffe8ec;
    color: #f0566a; }
  .home-comparison-section .comparison-status--yes {
    background: #e8faf0;
    color: #23b26d; }
  .home-comparison-section .comparison-summary {
    border-top: 1px solid #eef2fa;
    background: #ffffff; }
  .home-comparison-section .comparison-summary-item {
    padding: 1.25rem 1rem;
    text-align: center;
    border-right: 1px solid #eef2fa; }
    .home-comparison-section .comparison-summary-item strong {
      display: block;
      margin-bottom: 0.2rem;
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.1;
      background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent; }
    .home-comparison-section .comparison-summary-item span {
      display: block;
      font-size: 0.6875rem;
      line-height: 1.4;
      color: #a1acc9; }
  .home-comparison-section .comparison-summary .col-md-4:last-child .comparison-summary-item {
    border-right: 0; }
  .home-comparison-section.text-left .comparison-table thead th {
    text-align: left; }
    html[dir="rtl"] .home-comparison-section.text-left .comparison-table thead th {
      text-align: right; }
    .home-comparison-section.text-left .comparison-table thead th:nth-child(2), .home-comparison-section.text-left .comparison-table thead th:nth-child(3) {
      text-align: left !important; }
      html[dir="rtl"] .home-comparison-section.text-left .comparison-table thead th:nth-child(2), html[dir="rtl"] .home-comparison-section.text-left .comparison-table thead th:nth-child(3) {
        text-align: right !important; }
  .home-comparison-section.text-left .comparison-table tbody td {
    text-align: left !important; }
    html[dir="rtl"] .home-comparison-section.text-left .comparison-table tbody td {
      text-align: right !important; }
  .home-comparison-section.two-column .comparison-table thead th:nth-child(2) {
    background-color: #FFFFFF1F; }
  .home-comparison-section.two-column .comparison-table tbody td:nth-child(2) {
    background-color: #35529E08; }
  @media (max-width: 991.98px) {
    .home-comparison-section .home-comparison-section {
      padding: 4.5rem 0 5rem; } }
  @media (max-width: 767.98px) {
    .home-comparison-section .home-comparison-section {
      padding: 4rem 0 4.5rem; }
    .home-comparison-section .home-comparison-section .section-heading {
      margin-bottom: 2rem; }
    .home-comparison-section .comparison-table {
      min-width: 38rem; }
    .home-comparison-section .comparison-summary-item {
      border-right: 0;
      border-bottom: 1px solid #eef2fa; }
      .home-comparison-section .comparison-summary-item strong {
        font-size: 1.5rem; }
    .home-comparison-section .comparison-summary .col-md-4:last-child .comparison-summary-item {
      border-bottom: 0; } }

.home-cta-section {
  padding: 5rem 0 5.5rem;
  background-color: #f2f5fc; }
  .home-cta-section .cta-box {
    position: relative;
    max-width: 70rem;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%) !important;
    overflow: hidden; }
  .home-cta-section .cta-box::before {
    content: "";
    position: absolute;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -4rem;
    left: -4rem; }
  .home-cta-section .cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem; }
  .home-cta-section .cta-text {
    max-width: 32rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem; }
  .home-cta-section .cta-btn {
    background: #ffffff;
    color: #112868;
    border-radius: 0.7rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center; }
    .home-cta-section .cta-btn:hover {
      background: #f2f4f8;
      color: #112868; }
  .home-cta-section .cta-meta {
    margin-top: 1rem;
    gap: 2rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6); }
    .home-cta-section .cta-meta span {
      position: relative; }
      .home-cta-section .cta-meta span:not(:last-child)::after {
        content: "|";
        position: absolute;
        right: -0.8rem;
        color: rgba(255, 255, 255, 0.4); }
        html[dir="rtl"] .home-cta-section .cta-meta span:not(:last-child)::after {
          left: -0.8rem;
          right: inherit; }
  @media (max-width: 991.98px) {
    .home-cta-section .home-cta-section {
      padding: 4.5rem 0; }
    .home-cta-section .cta-title {
      font-size: 1.9rem; } }
  @media (max-width: 767.98px) {
    .home-cta-section .home-cta-section {
      padding: 4rem 0; }
    .home-cta-section .cta-box {
      padding: 2.2rem 1.2rem; }
    .home-cta-section .cta-title {
      font-size: 1.6rem; }
    .home-cta-section .cta-text {
      font-size: 0.85rem; }
    .home-cta-section .cta-meta {
      gap: 1rem;
      font-size: 0.65rem; } }
  .home-cta-section .cta-note {
    font-size: 0.75rem;
    color: #8E9BB4; }

.home-features-section {
  background-color: #ffffff;
  padding: 90px 0 100px; }
  .home-features-section .content-icons {
    margin-top: 2.5rem; }
  .home-features-section .feature-group {
    height: 100%; }
    .home-features-section .feature-group .feature-group-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: #9CA3AF;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1rem; }
    .home-features-section .feature-group .feature-list {
      list-style: none;
      padding: 0;
      margin: 0; }
      .home-features-section .feature-group .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.95rem;
        color: #374151;
        margin-bottom: 0.7rem; }
        .home-features-section .feature-group .feature-list li::before {
          content: "";
          width: 20px;
          height: 20px;
          flex-shrink: 0;
          background-repeat: no-repeat;
          background-size: contain;
          background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='9.5' fill='%23F0FDF4'/%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='9.5' stroke='%23BBF7D0'/%3E%3Cpath d='M13.6666 7.25L8.62492 12.2917L6.33325 10' stroke='%2322C55E' stroke-width='1.375' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.counter-section {
  background: linear-gradient(180deg, #07152d 0%, #0a1730 100%);
  padding: 4rem 0; }
  .counter-section .counter-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(8, 19, 43, 0.65); }
  .counter-section .counter-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative; }
    .counter-section .counter-item:not(:last-child) {
      border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .counter-section .counter-number {
    margin: 0 0 0.5rem;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em; }
    .counter-section .counter-number--blue {
      color: #3b82f6; }
    .counter-section .counter-number--green {
      color: #22c55e; }
    .counter-section .counter-number--purple {
      color: #a855f7; }
    .counter-section .counter-number--orange {
      color: #fbbf24; }
  .counter-section .counter-label {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7); }
  @media (max-width: 991.98px) {
    .counter-section .counter-box {
      grid-template-columns: repeat(2, 1fr); }
    .counter-section .counter-item:nth-child(2) {
      border-right: none; }
    .counter-section .counter-item:nth-child(-n + 2) {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08); } }
  @media (max-width: 575.98px) {
    .counter-section {
      padding: 3rem 0; }
      .counter-section .counter-box {
        grid-template-columns: 1fr; }
      .counter-section .counter-item {
        padding: 1.5rem 1rem;
        border-right: none !important; }
        .counter-section .counter-item:not(:last-child) {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
      .counter-section .counter-number {
        font-size: 2.25rem; }
      .counter-section .counter-label {
        font-size: 0.95rem; } }

.faq-section {
  padding: 5rem 0;
  background: #f9fafb; }
  .faq-section .section-subtitle {
    color: #6b7280;
    font-size: 0.95rem; }
    .faq-section .section-subtitle a {
      color: #3b82f6;
      font-weight: 500;
      text-decoration: none; }
      .faq-section .section-subtitle a:hover {
        text-decoration: underline; }
  .faq-section .faq-wrapper {
    max-width: 750px;
    margin: 2.5rem auto 0; }
  .faq-section .accordion {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
  .faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid #f1f5f9; }
    .faq-section .accordion-item:last-child {
      border-bottom: none; }
  .faq-section .accordion-button {
    background: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0C1C44;
    padding: 1rem 1.25rem;
    box-shadow: none; }
    .faq-section .accordion-button:focus {
      box-shadow: none; }
    .faq-section .accordion-button::after {
      width: 25px;
      height: 25px;
      background-color: #F3F4F6;
      border-radius: 6px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827; }
  .faq-section .accordion-body {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 0 1.25rem 1rem;
    line-height: 1.6; }
  @media (max-width: 576px) {
    .faq-section {
      padding: 3rem 0; }
      .faq-section .section-title {
        font-size: 1.6rem; } }

.contact-section {
  padding: 5rem 0;
  background: #ffffff; }
  .contact-section .contact-card {
    max-width: 940px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 2rem; }
  .contact-section .contact-header {
    margin-bottom: 1.75rem; }
  .contact-section .contact-title {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0C1C44; }
  .contact-section .contact-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #6B7BA8;
    max-width: 620px; }
  .contact-section .form-group {
    position: relative; }
  .contact-section .form-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a; }
    .contact-section .form-label span {
      color: #ef4444; }
  .contact-section .form-control,
  .contact-section .form-select {
    height: 3rem;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: #0f172a;
    box-shadow: none; }
    .contact-section .form-control::placeholder,
    .contact-section .form-select::placeholder {
      color: #94a3b8; }
    .contact-section .form-control:focus,
    .contact-section .form-select:focus {
      border-color: #4a6eff;
      background: #ffffff;
      box-shadow: 0 0 0 0.2rem rgba(74, 110, 255, 0.12); }
  .contact-section .form-textarea {
    min-height: 7rem;
    height: auto;
    resize: vertical;
    padding-top: 0.9rem; }
  .contact-section .input-with-icon .input-icon {
    position: absolute;
    left: 0.95rem;
    top: 55px;
    transform: translateY(-50%);
    z-index: 2;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1;
    pointer-events: none; }
    html[dir="rtl"] .contact-section .input-with-icon .input-icon {
      right: 0.95rem;
      left: inherit; }
  .contact-section .input-with-icon .form-control, .contact-section .input-with-icon .form-select {
    padding-left: 2.5rem; }
    html[dir="rtl"] .contact-section .input-with-icon .form-control,
    html[dir="rtl"] .contact-section .input-with-icon .form-select {
      padding-right: 2.5rem;
      padding-left: 0.9rem; }
  .contact-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem; }
  .contact-section .service-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease; }
    .contact-section .service-check span {
      font-size: 0.9rem;
      color: #334155;
      line-height: 1.4; }
    .contact-section .service-check input[type="checkbox"] {
      order: 2;
      width: 1rem;
      height: 1rem;
      margin: 0;
      accent-color: #4a6eff;
      flex-shrink: 0; }
    .contact-section .service-check:hover {
      border-color: #cbd5e1;
      background: #ffffff; }
  .contact-section .contact-footer {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap; }
  .contact-section .contact-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b; }
  .contact-section .note-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #3b82f6;
    display: inline-block; }
  @media (max-width: 991.98px) {
    .contact-section .services-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (max-width: 767.98px) {
    .contact-section {
      padding: 3.5rem 0; }
      .contact-section .contact-card {
        padding: 1.25rem; }
      .contact-section .contact-title {
        font-size: 1.6rem; }
      .contact-section .services-grid {
        grid-template-columns: 1fr; }
      .contact-section .contact-footer {
        align-items: stretch;
        flex-direction: column; }
      .contact-section .contact-btn {
        justify-content: center;
        width: 100%; }
      .contact-section .contact-note {
        justify-content: center;
        text-align: center;
        width: 100%; } }

.package-price {
  padding: 6rem 0;
  background: #ffffff; }
  .package-price .section-heading {
    max-width: 760px;
    margin: 0 auto 2rem; }
  .package-price .pricing-switch-wrap {
    margin-bottom: 1.75rem; }
  .package-price .pricing-main-switch {
    background: #F3F4F6CC;
    border: 1px solid #dfe4ee;
    border-radius: 999px;
    padding: 0.35rem;
    display: inline-flex;
    gap: 0.35rem; }
    .package-price .pricing-main-switch .nav-link {
      min-width: 160px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: #6A7282;
      font-size: 0.95rem;
      font-weight: 700;
      padding: 0.85rem 1.5rem;
      transition: all 0.25s ease; }
      .package-price .pricing-main-switch .nav-link.active {
        background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
        color: #fff;
        box-shadow: 0 8px 18px rgba(84, 90, 224, 0.22); }
  .package-price .pricing-category-tabs {
    margin-bottom: 2rem; }
  .package-price .pricing-category-nav {
    gap: 0.75rem;
    flex-wrap: wrap; }
    .package-price .pricing-category-nav .nav-link {
      padding: 0.85rem 1.25rem;
      border-radius: 0.75rem;
      border: 1px solid #dfe4ee;
      background: #fff;
      color: #5f6781;
      font-size: 0.875rem;
      font-weight: 700;
      min-width: 110px;
      transition: all 0.25s ease; }
      .package-price .pricing-category-nav .nav-link:hover {
        color: #43507c;
        border-color: #cfd7e6; }
      .package-price .pricing-category-nav .nav-link.active {
        background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 10px 24px rgba(84, 90, 224, 0.2); }
  .package-price .pricing-packages-content .row {
    align-items: stretch; }
  .package-price .price-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #e4e8f1;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(14, 27, 77, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease; }
    .package-price .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(14, 27, 77, 0.08); }
    .package-price .price-card .price-card-top {
      margin-bottom: 1.25rem; }
    .package-price .price-card .plan-duration {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #97a1bd;
      margin-bottom: 0.65rem; }
    .package-price .price-card .plan-price {
      font-size: 3rem;
      line-height: 1;
      font-weight: 800;
      color: #121b35;
      margin-bottom: 0.75rem; }
      .package-price .price-card .plan-price small {
        font-size: 0.95rem;
        font-weight: 600;
        color: #8b94ad; }
    .package-price .price-card .plan-desc {
      font-size: 0.95rem;
      color: #7d859f;
      margin-bottom: 0; }
    .package-price .price-card .price-btn {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      text-decoration: none;
      border-radius: 0.65rem;
      padding: 0.95rem 1rem;
      font-size: 0.95rem;
      font-weight: 700;
      background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
      color: #fff;
      margin-bottom: 1.35rem;
      box-shadow: 0 10px 24px rgba(84, 90, 224, 0.16);
      transition: all 0.25s ease; }
      .package-price .price-card .price-btn:hover {
        color: #fff;
        transform: translateY(-2px); }
    .package-price .price-card .price-features {
      list-style: none;
      padding: 0;
      margin: 0; }
      .package-price .price-card .price-features li {
        position: relative;
        font-size: 0.92rem;
        color: #6f7894;
        margin-bottom: 0.75rem; }
        .package-price .price-card .price-features li svg {
          margin-right: 10px; }
          html[dir="rtl"] .package-price .price-card .price-features li svg {
            margin-left: 10px !important;
            margin-right: 0 !important; }
        .package-price .price-card .price-features li:last-child {
          margin-bottom: 0; }
  .package-price .price-card-featured {
    background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 20px 45px rgba(84, 90, 224, 0.28); }
    .package-price .price-card-featured .plan-duration,
    .package-price .price-card-featured .plan-desc,
    .package-price .price-card-featured .price-features li,
    .package-price .price-card-featured .plan-price small {
      color: rgba(255, 255, 255, 0.82); }
    .package-price .price-card-featured .plan-price {
      color: #fff; }
    .package-price .price-card-featured .price-btn {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: none;
      backdrop-filter: blur(6px); }
      .package-price .price-card-featured .price-btn:hover {
        background: rgba(255, 255, 255, 0.18); }
    .package-price .price-card-featured .price-features li::before {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.22); }
    .package-price .price-card-featured .price-features li::after {
      color: #fff; }
  .package-price .price-badge {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #4f63f0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
    white-space: nowrap; }
  @media (max-width: 991.98px) {
    .package-price {
      padding: 4.5rem 0; }
      .package-price .section-heading .section-title {
        font-size: 2.35rem; }
      .package-price .pricing-main-switch .nav-link {
        min-width: 130px; } }
  @media (max-width: 767.98px) {
    .package-price .section-heading .section-title {
      font-size: 2rem; }
    .package-price .section-heading .section-subtitle {
      font-size: 0.95rem; }
    .package-price .pricing-main-switch {
      width: 100%;
      flex-wrap: nowrap; }
      .package-price .pricing-main-switch .nav-item {
        flex: 1 1 0; }
      .package-price .pricing-main-switch .nav-link {
        min-width: auto;
        width: 100%;
        padding: 0.8rem 1rem; }
    .package-price .pricing-category-nav {
      gap: 0.5rem; }
      .package-price .pricing-category-nav .nav-link {
        min-width: auto;
        padding: 0.75rem 1rem;
        font-size: 0.82rem; }
    .package-price .price-card .plan-price {
      font-size: 2.5rem; } }

.package-price-recommender {
  padding: 6rem 0;
  background: #f2f5fc; }
  .package-price-recommender .section-heading {
    max-width: 760px;
    margin: 0 auto 2.5rem; }
    .package-price-recommender .section-heading .section-badge {
      gap: 0.5rem;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
      box-shadow: 0 8px 18px rgba(84, 90, 224, 0.18); }
      .package-price-recommender .section-heading .section-badge .badge-dot {
        width: 0.35rem;
        height: 0.35rem;
        border-radius: 50%;
        background: #fff; }
    .package-price-recommender .section-heading .section-title {
      font-size: 3rem;
      line-height: 1.1;
      font-weight: 800;
      color: #10204d;
      margin-bottom: 0.65rem; }
    .package-price-recommender .section-heading .section-subtitle {
      font-size: 0.95rem;
      color: #7b87a5;
      margin-bottom: 0; }
  .package-price-recommender .recommender-packages-card,
  .package-price-recommender .recommender-form-card {
    background: #fff;
    border: 1px solid #e6ebf3;
    border-radius: 1.25rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    padding: 1.5rem;
    height: 100%; }
  .package-price-recommender .mini-label {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #a0abc2; }
  .package-price-recommender .recommended-packages-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem; }
  .package-price-recommender .recommended-package-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    transition: 0.25s ease; }
    .package-price-recommender .recommended-package-item.active {
      border-color: #7c9cff;
      background: #f4f7ff;
      box-shadow: inset 0 0 0 1px rgba(74, 110, 255, 0.1); }
    .package-price-recommender .recommended-package-item.is-featured {
      background: linear-gradient(135deg, #3B7EF60F, #6C5CE70F); }
    .package-price-recommender .recommended-package-item .package-left h3 {
      margin: 0;
      font-size: 2rem;
      line-height: 1;
      font-weight: 800;
      color: #4A6EFF; }
    .package-price-recommender .recommended-package-item .package-left span {
      display: block;
      margin-top: 0.3rem;
      font-size: 0.78rem;
      color: #98a3bc; }
    .package-price-recommender .recommended-package-item .package-center {
      text-align: center; }
    .package-price-recommender .recommended-package-item .package-right {
      text-align: right; }
      .package-price-recommender .recommended-package-item .package-right strong {
        display: block;
        font-size: 0.95rem;
        font-weight: 700;
        color: #18233f; }
      .package-price-recommender .recommended-package-item .package-right small {
        display: block;
        margin-top: 0.25rem;
        font-size: 0.78rem;
        color: #97a2bb; }
  .package-price-recommender .recommended-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap; }
  .package-price-recommender .recommend-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid #ccebd9;
    background: #ecfdf3;
    border-radius: 0.75rem; }
    .package-price-recommender .recommend-tip .tip-icon {
      flex: 0 0 18px;
      margin-top: 1px; }
    .package-price-recommender .recommend-tip p {
      margin: 0;
      font-size: 0.82rem;
      color: #3d7a59; }
  .package-price-recommender .recommender-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #172554;
    margin-bottom: 1.4rem; }
  .package-price-recommender .articles-range-box {
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #edf1f7; }
  .package-price-recommender .range-top {
    margin-bottom: 1rem; }
  .package-price-recommender .range-value-wrap .range-value {
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 800;
    color: #4A6EFF; }
  .package-price-recommender .range-value-wrap small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #97a2bb; }
  .package-price-recommender .range-label strong,
  .package-price-recommender .range-label small {
    display: block; }
  .package-price-recommender .range-label strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1d2846; }
  .package-price-recommender .range-label small {
    font-size: 0.76rem;
    color: #97a2bb; }
  .package-price-recommender .range-slider-wrap .articles-range-slider {
    width: 100%;
    margin-bottom: 0.5rem; }
  .package-price-recommender .range-slider-wrap .form-range {
    --bs-form-range-bg: #dbe3f0;
    height: 1.25rem; }
    .package-price-recommender .range-slider-wrap .form-range::-webkit-slider-runnable-track {
      height: 0.3rem;
      border-radius: 999px;
      background: #d8e0ef; }
    .package-price-recommender .range-slider-wrap .form-range::-moz-range-track {
      height: 0.3rem;
      border-radius: 999px;
      background: #d8e0ef; }
    .package-price-recommender .range-slider-wrap .form-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 1rem;
      height: 1rem;
      margin-top: -0.35rem;
      border: 2px solid #4A6EFF;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(74, 110, 255, 0.08); }
    .package-price-recommender .range-slider-wrap .form-range::-moz-range-thumb {
      width: 1rem;
      height: 1rem;
      border: 2px solid #4A6EFF;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(74, 110, 255, 0.08); }
  .package-price-recommender .range-steps span {
    font-size: 0.75rem;
    color: #98a3bc; }
  .package-price-recommender .required-features-box {
    margin-bottom: 1.5rem; }
  .package-price-recommender .required-features-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b2746;
    margin-bottom: 0.95rem; }
  .package-price-recommender .features-check-list {
    list-style: none;
    padding: 0;
    margin: 0; }
    .package-price-recommender .features-check-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.45rem 0;
      font-size: 0.9rem;
      color: #4f5c7a; }
  .package-price-recommender .feature-check {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .package-price-recommender .feature-check input {
      position: absolute;
      opacity: 0;
      pointer-events: none; }
    .package-price-recommender .feature-check .check-ui {
      width: 1rem;
      height: 1rem;
      border: 1px solid #cfd7e6;
      border-radius: 0.35rem;
      background: #fff;
      transition: 0.2s ease;
      position: relative; }
    .package-price-recommender .feature-check input:checked + .check-ui {
      background: #4A6EFF;
      border-color: #4A6EFF; }
      .package-price-recommender .feature-check input:checked + .check-ui::after {
        content: "";
        position: absolute;
        left: 0.3rem;
        top: 0.14rem;
        width: 0.24rem;
        height: 0.45rem;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg); }
  .package-price-recommender .recommender-submit-btn {
    min-height: 3rem;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem; }
  @media (max-width: 991.98px) {
    .package-price-recommender {
      padding: 4.5rem 0; }
      .package-price-recommender .section-heading .section-title {
        font-size: 2.35rem; } }
  @media (max-width: 767.98px) {
    .package-price-recommender .section-heading .section-title {
      font-size: 2rem; }
    .package-price-recommender .recommended-package-item {
      grid-template-columns: 1fr;
      text-align: left; }
      .package-price-recommender .recommended-package-item .package-center,
      .package-price-recommender .recommended-package-item .package-right {
        text-align: left; }
    .package-price-recommender .range-top {
      flex-direction: column;
      align-items: flex-start !important;
      gap: 0.75rem; }
    .package-price-recommender .range-steps span {
      font-size: 0.68rem; } }

.testimonials-swiper .swiper-slide {
  height: auto; }
.testimonials-swiper .card {
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid #e7ecf7;
  box-shadow: 0 10px 30px rgba(31, 55, 120, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative; }
  .testimonials-swiper .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(74, 110, 255, 0.12);
    border-color: #d9e2ff; }
  .testimonials-swiper .card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(129, 112, 236, 0.15), transparent 70%);
    z-index: 0; }
.testimonials-swiper .card-body {
  position: relative;
  z-index: 1; }
.testimonials-swiper h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1b2559; }
.testimonials-swiper p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6; }
.testimonials-swiper .text-warning {
  font-size: 14px; }
  .testimonials-swiper .text-warning i {
    margin-right: 2px; }
.testimonials-swiper img {
  border: 2px solid #eef2ff; }
.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px; }
.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  opacity: 1;
  margin: 0 5px !important;
  border-radius: 50%;
  transition: all 0.3s ease; }
.testimonials-swiper .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
  transform: scale(1.2); }

/* general */
.section-title {
  color: #0C1C44;
  font-weight: bolder;
  margin: 0.2rem 0 1rem 0;
  font-size: 2.5rem; }
  @media (max-width: 991px) {
    .section-title {
      font-size: 1.5rem; } }

.section-subtitle {
  max-width: 39rem;
  color: #6B7BA8;
  margin: auto; }

.section-badge {
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4A6EFF 0%, #545AE0 50%, #8170EC 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 8px; }
  .section-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-block;
    opacity: 0.9; }

.section-subtitle-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #35529E;
  margin-bottom: 1rem; }

/* end general */
/* freeReportForm */
/* end freeReportForm */
.page-agency-program {
  /* hero section */
  /* end hero section */
  /* services */
  /* end services */ }
  .page-agency-program .hero-growth-section {
    background-color: #ffffff; }
    .page-agency-program .hero-growth-section .content-below {
      margin-top: 1.5rem; }
      .page-agency-program .hero-growth-section .content-below .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap; }
      .page-agency-program .hero-growth-section .content-below .hero-benefits {
        display: flex;
        gap: 1.5rem;
        margin-top: 0.8rem;
        flex-wrap: wrap; }
        .page-agency-program .hero-growth-section .content-below .hero-benefits .benefit-item {
          display: flex;
          align-items: center;
          gap: 0.4rem;
          font-size: 0.85rem;
          color: #6b7280; }
          .page-agency-program .hero-growth-section .content-below .hero-benefits .benefit-item i {
            color: #22c55e;
            font-size: 0.9rem; }
  .page-agency-program .home-capabilities-section {
    background-color: #F8FAFC; }

.pricing-page .faq-section {
  background-color: #ffffff; }

.page-about .hero-growth-content .hero-description {
  line-height: 1.7; }
.page-about .home-features-section .content-icons {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto; }
.page-about .our-vision .feature-list {
  display: flex;
  flex-direction: column;
  height: 100%; }
.page-about .our-vision .feature-list li {
  flex: 1; }
.page-about .our-vision .content-icons {
  margin-top: 0 !important; }
.page-about .our-mission .content-icons {
  margin-top: 0 !important; }

.page-demo-request .contact-section {
  background-color: transparent; }
.page-demo-request #successModal .modal-dialog {
  max-width: 520px; }
.page-demo-request #successModal .modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.18); }
.page-demo-request #successModal .modal-header {
  border: 0;
  padding: 24px 24px 12px;
  background: linear-gradient(135deg, #4a6eff 0%, #545ae0 50%, #8170ec 100%); }
.page-demo-request #successModal .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
  margin: 0; }
.page-demo-request #successModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1; }
  .page-demo-request #successModal .btn-close:focus {
    box-shadow: none; }
.page-demo-request #successModal .modal-body {
  padding: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  background: #fff;
  text-align: center; }
.page-demo-request #successModal .modal-footer {
  border: 0;
  padding: 0 24px 24px;
  justify-content: center;
  background: #fff; }
.page-demo-request #successModal .modal-footer .btn {
  min-width: 160px;
  border: 0;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4a6eff 0%, #545ae0 50%, #8170ec 100%);
  box-shadow: 0 8px 20px rgba(84, 90, 224, 0.24);
  transition: 0.25s ease; }
  .page-demo-request #successModal .modal-footer .btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(84, 90, 224, 0.28); }
  .page-demo-request #successModal .modal-footer .btn:focus {
    box-shadow: none; }

.help-center-result .list-group-item {
  padding: 20px;
  margin-bottom: 15px !important; }
  .help-center-result .list-group-item:hover {
    background-color: #f4f4f4 !important; }

.help-center-show {
  padding: 7rem 0; }

.page-content-section {
  padding: 7rem 0 !important;
  border-bottom: 1px solid #2f2f2f; }

.page-contact-us .capability-text {
  font-size: 1.2rem; }
  .page-contact-us .capability-text a {
    text-decoration: none; }

.hosting-features {
  position: relative;
  background: #f8fafc; }
  .hosting-features__visual {
    background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
    border: 1px solid #dbe6ff;
    border-radius: 32px;
    padding: 24px;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 18px 40px rgba(74, 110, 255, 0.08); }
  .hosting-features__image-wrap {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center; }
    .hosting-features__image-wrap::before {
      content: "";
      position: absolute;
      inset-inline-start: 8%;
      top: 18%;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(129, 112, 236, 0.18) 0%, rgba(129, 112, 236, 0) 70%);
      border-radius: 50%;
      pointer-events: none; }
    .hosting-features__image-wrap::after {
      content: "";
      position: absolute;
      inset-inline-end: 8%;
      bottom: 12%;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(74, 110, 255, 0.16) 0%, rgba(74, 110, 255, 0) 72%);
      border-radius: 50%;
      pointer-events: none; }
  .hosting-features__main-image {
    position: relative;
    z-index: 2;
    max-height: 460px;
    object-fit: contain; }
  .hosting-features__bubble {
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 32px rgba(62, 83, 140, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3; }
    .hosting-features__bubble img {
      max-width: 42px;
      max-height: 42px;
      object-fit: contain; }
    .hosting-features__bubble.bubble-one {
      top: 40px;
      inset-inline-start: 40px; }
    .hosting-features__bubble.bubble-two {
      top: 30px;
      inset-inline-end: 55px; }
    .hosting-features__bubble.bubble-three {
      bottom: 65px;
      inset-inline-start: 30px; }
  .hosting-features__list {
    justify-content: center; }

.hosting-feature-card {
  background: #ffffff;
  border: 1px solid #e7ecf7;
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 14px 34px rgba(31, 55, 120, 0.06);
  transition: all 0.25s ease; }
  .hosting-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(74, 110, 255, 0.1);
    border-color: #d7e1ff; }
  .hosting-feature-card__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #12285f; }
  .hosting-feature-card__text {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7a99;
    font-weight: 500; }

@media (max-width: 1199.98px) {
  .hosting-feature-card__title {
    font-size: 26px; }
  .hosting-feature-card__text {
    font-size: 17px; }

  .hosting-features__image-wrap {
    min-height: 460px; } }
@media (max-width: 991.98px) {
  .hosting-features__visual {
    padding: 20px; }
  .hosting-features__image-wrap {
    min-height: 380px; }
  .hosting-features__main-image {
    max-height: 340px; }
  .hosting-features__bubble {
    width: 70px;
    height: 70px; }
    .hosting-features__bubble img {
      max-width: 34px;
      max-height: 34px; }

  .hosting-feature-card {
    padding: 24px; }
    .hosting-feature-card__title {
      font-size: 22px; }
    .hosting-feature-card__text {
      font-size: 16px; } }
@media (max-width: 575.98px) {
  .hosting-features__visual {
    border-radius: 24px; }

  .hosting-features__image-wrap {
    min-height: 300px; }

  .hosting-features__main-image {
    max-height: 270px; }

  .hosting-features__bubble {
    width: 58px;
    height: 58px; }
    .hosting-features__bubble img {
      max-width: 28px;
      max-height: 28px; }
    .hosting-features__bubble.bubble-one {
      top: 24px;
      inset-inline-start: 18px; }
    .hosting-features__bubble.bubble-two {
      top: 20px;
      inset-inline-end: 20px; }
    .hosting-features__bubble.bubble-three {
      bottom: 26px;
      inset-inline-start: 12px; }

  .hosting-feature-card {
    border-radius: 20px;
    padding: 20px 18px; }
    .hosting-feature-card__title {
      font-size: 20px; }
    .hosting-feature-card__text {
      font-size: 15px; } }
.page-hosting .testimonials-section {
  border-bottom: 1px solid #dfdfdf; }

/*# sourceMappingURL=app.css.map */
