      :root {
        --accent-color: #ff8a00;
        --heading-color: #132238;
        --default-color: #49566a;
        --background-color: #f7fbff;
        --surface-color: #ffffff;
        --nav-hover-color: #ff8a00;
        --ph-logo-blue: rgb(49 138 219);
        --ph-logo-blue-rgb: 49, 138, 219;
        --ph-logo-orange: #ff8a00;
        --ph-logo-orange-rgb: 255, 138, 0;
      }

      body.landing-template-body {
        background: #fff;
      }

      html,
      body {
        overflow-x: hidden;
      }

      html.landing-auth-modal-open,
      body.landing-auth-modal-open {
        overflow: hidden;
        overscroll-behavior: none;
      }

      body.landing-auth-modal-open {
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
        touch-action: none;
      }

      @media (max-width: 991px) {
        body.mobile-nav-active {
          overflow: hidden;
        }

        body.mobile-nav-active .landing-template-page .mobile-nav-toggle {
          color: #fff;
          position: fixed;
          font-size: 32px;
          top: 15px;
          right: 15px;
          margin-right: 0;
          z-index: 9999;
        }

        body.mobile-nav-active .landing-template-page .landing-template-page__navmenu {
          position: fixed;
          overflow: hidden;
          inset: 0;
          width: auto;
          height: auto;
          background: rgb(33 37 41 / 0.8);
          transition: 0.3s;
          z-index: 9997;
        }

        body.mobile-nav-active .landing-template-page .landing-template-page__navmenu > ul {
          display: block;
          top: 60px;
          right: 20px;
          bottom: auto;
          left: 20px;
          max-height: min(52vh, 420px);
          overflow-y: auto;
        }
      }

      .landing-template-page {
        --accent-color: #ff8a00;
        --heading-color: #132238;
        --default-color: #49566a;
        --surface-color: #ffffff;
        --background-color: #f7fbff;
        --landing-mobile-gutter: 18px;
        min-height: 100vh;
        overflow-x: clip;
      }

      .landing-template-page .main {
        overflow: hidden;
      }

      /* Keep landing content visible even if AOS runtime does not initialize. */
      .landing-template-page [data-aos] {
        opacity: 1;
        transform: none;
      }

      .landing-template-page .header .logo img {
        max-height: 42px;
      }

      .landing-template-page .header .logo .sitename {
        font-size: 30px;
        margin: 0;
        font-weight: 700;
        color: var(--heading-color);
      }

      .landing-template-page__nav,
      .landing-template-page__auth,
      .landing-template-page__hero-actions {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .landing-template-page__navmenu {
        margin-left: auto;
      }

      .landing-template-page__navmenu ul {
        margin: 0;
      }

      .landing-template-page__mobile-menu-tools,
      .landing-template-page__mobile-menu-actions,
      .landing-template-page__mobile-header-locale,
      .mobile-nav-toggle {
        display: none;
      }

      .landing-template-page__locale-switcher {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .landing-template-page__locale-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 1rem;
        color: var(--bs-secondary-color);
      }

      .landing-template-page__locale-icon svg {
        width: 100%;
        height: 100%;
        fill: currentColor;
      }

      .landing-template-page__locale-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid rgb(19 34 56 / 0.14);
        border-radius: 999px;
        background: #fff;
        transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
      }

      .landing-template-page__locale-trigger:hover,
      .landing-template-page__locale-trigger:focus-visible {
        border-color: rgb(255 138 0 / 0.4);
        color: var(--accent-color);
        box-shadow: 0 8px 20px rgb(18 38 63 / 0.08);
        outline: none;
      }

      .landing-template-page__locale-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: grid;
        gap: 4px;
        min-width: 164px;
        padding: 8px;
        border: 1px solid rgb(19 34 56 / 0.12);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 18px 40px rgb(18 38 63 / 0.12);
        z-index: 20;
      }

      .landing-template-page__locale-menu[hidden] {
        display: none;
      }

      .landing-template-page__locale-option {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 40px;
        box-sizing: border-box;
        padding: 10px 16px;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: var(--heading-color);
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        line-height: 1.2;
        text-decoration: none;
        white-space: normal;
        word-break: normal;
        cursor: pointer;
      }

      .landing-template-page__locale-option:hover,
      .landing-template-page__locale-option:focus-visible {
        background: rgb(255 138 0 / 0.08);
        color: var(--accent-color);
        outline: none;
      }

      .landing-template-page__locale-option--active {
        background: rgb(255 138 0 / 0.12);
        color: var(--accent-color);
      }

      .landing-template-page__menu-button,
      .landing-template-page__cta-button,
      .landing-template-page__secondary-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .btn-primary {
        color: #fff;
        background-color: var(--ph-logo-orange);
        border-color: var(--ph-logo-orange);
        --bs-btn-color: #fff;
        --bs-btn-bg: var(--ph-logo-orange);
        --bs-btn-border-color: var(--ph-logo-orange);
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #e67c00;
        --bs-btn-hover-border-color: #d97300;
        --bs-btn-focus-shadow-rgb: var(--ph-logo-orange-rgb);
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: #d97300;
        --bs-btn-active-border-color: #cc6d00;
        --bs-btn-disabled-color: #fff;
        --bs-btn-disabled-bg: var(--ph-logo-orange);
        --bs-btn-disabled-border-color: var(--ph-logo-orange);
      }

      .btn-primary:hover,
      .btn-primary:focus,
      .btn-primary:active,
      .btn-primary:not(:disabled):not(.disabled):active {
        color: #fff;
        background-color: #e67c00;
        border-color: #d97300;
      }

      .btn-primary:disabled,
      .btn-primary.disabled {
        color: #fff;
        background-color: var(--ph-logo-orange);
        border-color: var(--ph-logo-orange);
      }

      .landing-template-page__menu-button {
        min-height: 40px;
        padding: 8px 22px;
        border-radius: 999px;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        text-decoration: none;
      }

      .landing-template-page .header .landing-template-page__menu-button.btn-getstarted {
        margin-left: 0;
      }

      .landing-template-page .header .landing-template-page__button-primary,
      .landing-template-page .header .btn-getstarted {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: var(--accent-color);
        line-height: 1.2;
      }

      .landing-template-page__menu-button--secondary {
        border: 2px solid var(--accent-color);
        background: transparent;
        color: var(--accent-color);
      }

      .landing-template-page__menu-button--secondary:hover {
        color: #fff;
        background: var(--accent-color);
        border-color: var(--accent-color);
      }

      .landing-template-page .hero h1 {
        margin-bottom: 32px;
      }

      .landing-template-page__hero-title-suffix {
        display: block;
        margin-top: 8px;
        color: var(--accent-color);
        font-size: 0.8em;
        line-height: 1.15;
      }

      .landing-template-page__hero-subtitle {
        margin: -12px 0 24px;
        color: var(--heading-color);
        font-size: clamp(1.4rem, 3vw, 2rem);
        font-weight: 700;
        line-height: 1.1;
      }

      .landing-template-page .hero p.landing-template-page__hero-intro {
        margin: -6px 0 10px;
        color: var(--default-color);
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.45;
      }

      .landing-template-page .hero p {
        margin: 0 0 36px;
        font-size: 1.05rem;
        line-height: 1.55;
      }

      .landing-template-page__hero-actions {
        margin-top: 6px;
        align-items: flex-start;
        gap: 18px 24px;
      }

      .landing-template-page__hero-primary-cta,
      .landing-template-page__cta-primary-action {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }

      .landing-template-page__hero-primary-cta {
        align-items: center;
        width: 210px;
        max-width: 100%;
      }

      .landing-template-page__hero-primary-cta .btn-get-started {
        width: 100%;
        text-align: center;
      }

      .landing-template-page__hero-primary-cta .landing-template-page__cta-note {
        width: 100%;
        margin-top: 6px;
        font-size: 0.63rem;
        line-height: 1.2;
        text-align: center;
      }

      .landing-template-page__cta-note {
        margin: 8px 0 0;
        color: rgb(19 34 56 / 0.62);
        font-size: 0.74rem;
        line-height: 1.35;
      }

      .landing-template-page__cta-note--centered {
        color: rgb(255 255 255 / 0.72);
        text-align: center;
      }

      .landing-template-page__secondary-cta {
        color: var(--heading-color);
        font-weight: 600;
        gap: 8px;
        margin-top: 6px;
      }

      .landing-template-page__secondary-cta i {
        color: var(--accent-color);
        font-size: 28px;
      }

      .landing-template-page__signals-section {
        padding: 0 0 24px;
      }

      .landing-template-page .hero-img {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .landing-template-page .hero-img img {
        width: min(100%, 540px);
      }

      .landing-template-page__hero-points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .landing-template-page__hero-point,
      .landing-template-page__feature-card,
      .landing-template-page__workflow-card {
        height: 100%;
        padding: 24px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 12px 35px rgb(18 38 63 / 0.08);
      }

      .landing-template-page__hero-point {
        display: flex;
        align-items: flex-start;
        gap: 12px;
      }

      .landing-template-page__hero-point > div,
      .landing-template-page__feature-card,
      .landing-template-page__workflow-card,
      .service-item,
      .stats-item > div {
        min-width: 0;
      }

      .landing-template-page p,
      .landing-template-page span,
      .landing-template-page strong,
      .landing-template-page h1,
      .landing-template-page h2,
      .landing-template-page h3,
      .landing-template-page h4 {
        overflow-wrap: anywhere;
      }

.landing-template-page__hero-point i,
.landing-template-page__feature-card i {
  color: var(--accent-color);
  font-size: 28px;
}

.landing-template-page__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

      .landing-template-page__hero-point strong,
      .landing-template-page__feature-card h3,
      .landing-template-page__workflow-card h3 {
  display: block;
  margin-bottom: 0;
}

      .landing-template-page__problem-section {
        padding-top: 22px;
        padding-bottom: 92px;
        background:
          radial-gradient(circle at top left, rgb(255 138 0 / 0.08), transparent 28%),
          linear-gradient(180deg, #f7f8fa 0%, #f3f5f8 100%);
      }

      .landing-template-page__problem-content {
        margin-top: 16px;
      }

      .landing-template-page__problem-section .section-title h2 {
        margin-top: 40px;
      }

      .landing-template-page__problem-card {
        padding: 26px 24px;
        border: 1px solid rgb(19 34 56 / 0.12);
        border-radius: 16px;
        background: rgb(255 255 255 / 0.9);
        box-shadow: 0 8px 24px rgb(18 38 63 / 0.06);
      }

      .landing-template-page__problem-card .landing-template-page__card-header {
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 16px;
      }

      .landing-template-page__problem-card h3 {
        line-height: 1.28;
      }

      .landing-template-page__problem-card p {
        margin-bottom: 0;
        margin-left: 40px;
        text-align: left;
      }

      .landing-template-page__problem-icon {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        margin-top: 1px;
        border-radius: 999px;
        background: rgb(255 138 0 / 0.14);
        color: var(--accent-color);
      }

      .landing-template-page__problem-icon i {
        font-size: 0.9rem;
      }

      .landing-template-page__problem-closing {
        max-width: 760px;
        margin: 40px auto 0;
        padding-top: 6px;
        text-align: center;
        font-family: "Poppins", sans-serif;
        font-size: 1.18rem;
        font-weight: 600;
        line-height: 1.65;
        color: var(--heading-color);
      }

      .landing-template-page__section-intro {
        max-width: 760px;
        margin: 0 auto;
      }

.landing-template-page__workflow-step {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgb(255 138 0 / 0.12);
  color: var(--accent-color);
        font-weight: 700;
      }

      .landing-template-page__pricing-section {
        padding-top: 0;
      }

      .landing-template-page__pricing-card {
        padding: 40px;
        border: 1px solid rgb(19 34 56 / 0.08);
        border-radius: 28px;
        background:
          radial-gradient(circle at top left, rgb(255 138 0 / 0.12), transparent 34%),
          linear-gradient(180deg, #fff 0%, #f7fbff 100%);
        box-shadow: 0 18px 42px rgb(18 38 63 / 0.08);
        text-align: center;
      }

      .landing-template-page__pricing-head {
        display: grid;
        gap: 18px;
        justify-items: center;
      }

      .landing-template-page__pricing-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 1.1rem;
        border-radius: 999px;
        background: rgb(255 138 0 / 0.14);
        color: var(--accent-color);
        font-family: "Poppins", sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
      }

      .landing-template-page__pricing-description {
        max-width: 720px;
        margin: 24px auto 0;
        font-size: 1.05rem;
        line-height: 1.7;
      }

      .landing-template-page__pricing-note {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        max-width: 720px;
        margin: 24px auto 0;
        padding: 16px 20px;
        border-radius: 18px;
        background: rgb(15 76 129 / 0.06);
        color: var(--heading-color);
        font-weight: 500;
        line-height: 1.55;
      }

      .landing-template-page__pricing-note i {
        color: var(--accent-color);
        font-size: 1.1rem;
      }

      .landing-template-page__cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 44px 38px;
        border-radius: 24px;
        background: linear-gradient(135deg, #0f4c81 0%, #1967a7 55%, #ff8a00 100%);
      }

      .landing-template-page__cta h3,
      .landing-template-page__cta p {
        color: #fff;
      }

      .landing-template-page__cta h3 {
        margin-bottom: 12px;
      }

      .landing-template-page__cta-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
      }

      .landing-template-page__cta-primary-action {
        align-items: center;
      }

      .landing-template-page__cta-button {
        min-height: 50px;
        padding: 0.875rem 1.5rem;
        border: 2px solid transparent;
        border-radius: 999px;
        font-family: "Poppins", sans-serif;
        font-size: 0.98rem;
        font-weight: 700;
        line-height: 1.1;
        text-decoration: none;
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          background-color 0.2s ease,
          border-color 0.2s ease,
          color 0.2s ease;
      }

      .landing-template-page__cta-button:hover,
      .landing-template-page__cta-button:focus-visible {
        transform: translateY(-1px);
        text-decoration: none;
        outline: none;
      }

      .landing-template-page__cta-button--primary {
        background: #fff;
        color: #0f4c81;
        box-shadow: 0 18px 32px rgb(7 17 31 / 0.2);
      }

      .landing-template-page__cta-button--primary:hover,
      .landing-template-page__cta-button--primary:focus-visible {
        color: #0b406c;
        box-shadow: 0 22px 36px rgb(7 17 31 / 0.24);
      }

      .landing-template-page__cta-button--secondary {
        border-color: rgb(255 255 255 / 0.72);
        background: rgb(255 255 255 / 0.08);
        color: #fff;
      }

      .landing-template-page__cta-button--secondary:hover,
      .landing-template-page__cta-button--secondary:focus-visible {
        border-color: #fff;
        background: rgb(255 255 255 / 0.16);
        color: #fff;
        box-shadow: 0 14px 30px rgb(7 17 31 / 0.18);
      }

      .landing-template-page__footer-meta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: 0.5rem;
      }

      @media (min-width: 992px) {
        .landing-template-page .services .service-item {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          align-content: flex-start;
          gap: 0 16px;
        }

        .landing-template-page .services .service-item i {
          flex: 0 0 56px;
        }

        .landing-template-page .services .service-item h4 {
          flex: 1 1 calc(100% - 72px);
          margin: 0;
        }

        .landing-template-page .services .service-item p {
          flex: 0 0 100%;
          margin-top: 18px;
        }
      }

      .landing-auth-modal[hidden] {
        display: none;
      }

      .landing-auth-modal {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        width: 100vw;
        height: 100vh;
        height: 100svh;
        height: 100lvh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100lvh;
        min-height: 100dvh;
        overflow: hidden;
      }

      .landing-auth-modal__backdrop {
        position: fixed;
        inset: 0;
        background: rgb(7 17 31 / 0.66);
        backdrop-filter: blur(8px);
        width: 100vw;
        height: 100vh;
        height: 100svh;
        height: 100lvh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100lvh;
        min-height: 100dvh;
        z-index: 0;
      }

      .landing-auth-modal__panel {
        position: relative;
        z-index: 1;
        width: min(100%, 560px);
        max-height: min(100dvh - 48px, 860px);
        overflow: auto;
        padding: 32px;
        border-radius: 28px;
        background:
          radial-gradient(circle at top right, rgb(255 138 0 / 0.12), transparent 34%),
          linear-gradient(180deg, #fff 0%, #f8fbff 100%);
        box-shadow: 0 32px 90px rgb(7 17 31 / 0.28);
      }

      .landing-auth-modal__close {
        position: absolute;
        top: 16px;
        right: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: rgb(19 34 56 / 0.08);
        color: var(--heading-color);
        font-size: 28px;
        line-height: 1;
      }

      .landing-auth-modal__close:hover,
      .landing-auth-modal__close:focus-visible {
        background: rgb(255 138 0 / 0.14);
        color: var(--accent-color);
        outline: none;
      }

      .landing-auth-modal__brand {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        padding-right: 36px;
      }

      .landing-auth-modal__brand-logo {
        width: 48px;
        height: 48px;
        object-fit: contain;
      }

      .landing-auth-modal__title {
        margin: 0;
        color: var(--heading-color);
        font-family: "Poppins", sans-serif;
        font-size: 28px;
        line-height: 1.15;
      }

      .landing-auth-panel {
        display: grid;
        gap: 16px;
      }

      .landing-auth-form[hidden],
      .landing-auth-code-row[hidden] {
        display: none;
      }

      .landing-auth-alert {
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 0.95rem;
        line-height: 1.45;
      }

      .landing-auth-alert[hidden] {
        display: none;
      }

      .landing-auth-alert--success {
        background: rgb(5 150 82 / 0.12);
        color: #096b3d;
      }

      .landing-auth-alert--error {
        background: rgb(223 21 41 / 0.1);
        color: #a60f20;
      }

      .toast-stack {
        position: fixed;
        top: 1rem;
        left: 50%;
        z-index: 11000;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: min(calc(100vw - 2rem), 640px);
        transform: translateX(-50%);
        pointer-events: none;
      }

      .toast-card {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        overflow: hidden;
        border: 1px solid rgb(255 255 255 / 0.8);
        border-radius: 14px;
        background: linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(248 250 255 / 0.96));
        box-shadow:
          0 20px 50px rgb(20 45 90 / 0.18),
          0 8px 24px rgb(20 45 90 / 0.08);
        backdrop-filter: blur(16px);
        pointer-events: auto;
      }

      .toast-card__body {
        padding: 1.15rem 1.15rem 0.95rem;
      }

      .toast-card__header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }

      .toast-card__badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.65rem;
        height: 2.65rem;
        flex-shrink: 0;
        border-radius: 0.75rem;
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(135deg, #0f4c81, #ff8a00);
        box-shadow: 0 14px 30px rgb(15 76 129 / 0.28);
      }

      .toast-card__title {
        margin: 0;
        font-size: 1.02rem;
        font-weight: 700;
        color: #102d53;
      }

      .toast-card__message {
        margin: 0.25rem 0 0;
        color: #40536f;
        line-height: 1.5;
        font-size: 0.98rem;
      }

      .toast-card__close {
        align-self: flex-start;
        margin: 0.8rem 0.9rem 0 0;
        width: 2.25rem;
        height: 2.25rem;
        border: 0;
        border-radius: 0.65rem;
        background: transparent;
        color: #6c7a90;
        font-size: 1.35rem;
        line-height: 1;
        cursor: pointer;
      }

      .toast-card__close:hover {
        color: #1f3656;
        background: rgb(21 52 93 / 0.08);
      }

      .toast-card__progress {
        height: 0.35rem;
        margin-top: 0.95rem;
        overflow: hidden;
        border-radius: 999px;
        background: rgb(16 45 83 / 0.08);
      }

      .toast-card__progress-bar {
        display: block;
        width: 100%;
        height: 100%;
        transform-origin: left center;
        background: linear-gradient(90deg, rgb(15 76 129 / 0.9), rgb(15 76 129 / 0.65));
        animation-name: toast-progress;
        animation-timing-function: linear;
        animation-fill-mode: forwards;
      }

      .toast-card--success {
        border-color: rgb(83 193 123 / 0.28);
        background: linear-gradient(180deg, rgb(250 255 252 / 0.98), rgb(241 251 245 / 0.96));
      }

      .toast-card--success .toast-card__badge {
        background: linear-gradient(135deg, #1f9d74, #53c17b);
        box-shadow: 0 10px 24px rgb(31 157 116 / 0.24);
      }

      .toast-card--success .toast-card__progress-bar {
        background: linear-gradient(90deg, rgb(31 157 116 / 0.92), rgb(83 193 123 / 0.72));
      }

      .toast-card--error {
        border-width: 2px;
        border-color: rgb(227 93 93 / 0.42);
        background: linear-gradient(180deg, rgb(255 249 249 / 0.99), rgb(255 241 238 / 0.98));
        box-shadow:
          0 24px 60px rgb(161 52 52 / 0.2),
          0 0 0 1px rgb(255 138 91 / 0.14);
      }

      .toast-card--error .toast-card__badge {
        background: linear-gradient(135deg, #e35d5d, #ff8a5b);
        box-shadow: 0 10px 24px rgb(227 93 93 / 0.24);
      }

      .toast-card--error .toast-card__title,
      .toast-card--error .toast-card__message {
        color: #7b1f1f;
      }

      .toast-card--error .toast-card__progress-bar {
        background: linear-gradient(90deg, rgb(227 93 93 / 0.88), rgb(227 93 93 / 0.6));
      }

      @keyframes toast-progress {
        from { transform: scaleX(1); }
        to { transform: scaleX(0); }
      }

      .landing-auth-form-actions {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 0.75rem;
        margin-top: 1rem;
      }

      .landing-auth-modal .landing-auth-form .btn-primary,
      .landing-auth-modal .landing-auth-form .btn-primary:focus {
        color: #fff;
        background: var(--ph-logo-orange);
        border-color: var(--ph-logo-orange);
        box-shadow: none;
      }

      .landing-auth-modal .landing-auth-form .btn-primary:hover,
      .landing-auth-modal .landing-auth-form .btn-primary:active,
      .landing-auth-modal .landing-auth-form .btn-primary:not(:disabled):not(.disabled):active {
        color: #fff;
        background: #e67c00;
        border-color: #d97300;
        box-shadow: none;
      }

      .landing-auth-modal .landing-auth-form .btn-primary:disabled,
      .landing-auth-modal .landing-auth-form .btn-primary.disabled {
        color: #fff;
        background: var(--ph-logo-orange);
        border-color: var(--ph-logo-orange);
        box-shadow: none;
      }

      .landing-auth-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
      }

      .landing-auth-link {
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--accent-color);
        font-size: 0.95rem;
        line-height: 1.2;
        text-align: left;
      }

      .landing-auth-link:hover,
      .landing-auth-link:focus-visible {
        text-decoration: underline;
      }

      @media (max-width: 991px) {
        .landing-template-page .section {
          padding: 72px 0;
        }

        .landing-template-page .hero.section {
          padding-top: 40px;
          padding-bottom: 56px;
        }

        .landing-template-page .header .container-fluid {
          gap: 12px !important;
          justify-content: flex-start !important;
          position: relative;
        }

        .landing-template-page__auth {
          display: none;
        }

        .landing-template-page .header .logo {
          flex: 0 1 auto;
          margin-right: 0 !important;
        }

        .landing-template-page__navmenu {
          position: absolute;
          inset: 0;
          width: 0;
          height: 0;
          margin: 0;
        }

        .landing-template-page__navmenu > ul {
          display: none;
        }

        .mobile-nav-toggle {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          flex: 0 0 auto;
          order: 3;
          margin-left: 0;
          width: 44px;
          height: 44px;
          margin-right: 0;
          border: 0;
          background: transparent;
        }

        .landing-template-page__navmenu {
          margin-left: 0;
        }

        .landing-template-page__navmenu ul {
          padding: 14px 0;
        }

        .landing-template-page__navmenu > ul {
          border-radius: 24px;
          background:
            linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(246 250 255 / 0.96));
          box-shadow: 0 24px 60px rgb(7 17 31 / 0.22);
        }

        .landing-template-page__navmenu li:not(.landing-template-page__mobile-menu-tools):not(.landing-template-page__mobile-menu-actions) {
          padding: 0 20px;
        }

        .landing-template-page__navmenu li + li {
          margin-top: 2px;
        }

        .landing-template-page__navmenu a {
          display: block;
          padding: 12px 0;
          font-size: 17px;
        }

        .landing-template-page__mobile-menu-actions {
          display: block;
        }

        .landing-template-page__mobile-menu-actions {
          padding: 4px 20px;
        }

        .landing-template-page__mobile-menu-actions:last-child {
          padding-bottom: 20px;
        }

        .landing-template-page__mobile-menu-actions .landing-template-page__menu-button {
          display: inline-flex;
          width: 100%;
          min-height: 48px;
          padding: 10px 22px;
          align-items: center;
          justify-content: center;
          line-height: 1.2;
          text-align: center;
        }

        .landing-template-page__mobile-header-locale {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          flex: 0 0 auto;
          margin-left: auto;
          margin-right: 4px;
          order: 2;
        }

        .landing-template-page__mobile-header-locale .landing-template-page__locale-switcher {
          justify-content: center;
        }

        .landing-template-page__mobile-header-locale .landing-template-page__locale-trigger {
          width: 40px;
          height: 40px;
          min-height: 40px;
          padding: 0;
          border-radius: 999px;
        }

        .landing-template-page__mobile-header-locale .landing-template-page__locale-menu {
          top: calc(100% + 8px);
          right: 0;
          left: auto;
          min-width: 180px;
          padding: 10px;
        }

        .landing-template-page__mobile-header-locale .landing-template-page__locale-option {
          padding-left: 18px;
          padding-right: 18px;
        }

        .landing-template-page .hero .row {
          text-align: center;
        }

        .landing-template-page .hero .col-lg-6.order-2 {
          align-items: center;
        }

        .landing-template-page__cta {
          padding: 32px 24px;
          flex-direction: column;
          align-items: flex-start;
        }

        .landing-template-page__pricing-card {
          padding: 32px 24px;
        }

        .landing-template-page__hero-point,
        .landing-template-page__feature-card,
        .landing-template-page__workflow-card {
          padding: 22px 20px;
        }

        .landing-template-page__hero-points {
          grid-template-columns: 1fr;
        }

        .landing-template-page__cta-actions {
          justify-content: flex-start;
        }

        .landing-template-page__cta-button {
          min-width: 220px;
        }

        .landing-template-page__problem-section {
          padding-top: 18px;
          padding-bottom: 76px;
        }

        .landing-template-page__problem-card {
          padding: 24px 22px;
        }

        .landing-template-page__problem-section .section-title h2 {
          margin-top: 32px;
        }

        .landing-template-page__problem-closing {
          margin-top: 32px;
          font-size: 1.06rem;
        }

        .landing-template-page .stats .stats-item {
          padding: 18px 16px;
          border-radius: 18px;
          background: rgb(255 255 255 / 0.82);
          box-shadow: 0 14px 30px rgb(18 38 63 / 0.08);
        }

        .landing-template-page .services .service-item {
          padding: 28px 22px;
        }

        .landing-auth-modal {
          padding: 18px;
        }

        .landing-auth-modal__panel {
          padding: 28px 24px 24px;
        }
      }

      @media (max-width: 640px) {
        .landing-template-page .header {
          padding: 12px 0;
        }

        .landing-template-page .header .container-fluid,
        .landing-template-page .section .container {
          padding-right: var(--landing-mobile-gutter);
          padding-left: var(--landing-mobile-gutter);
        }

        .landing-template-page .section {
          padding: 58px 0;
        }

        .landing-template-page .hero.section {
          padding-top: 28px;
          padding-bottom: 44px;
        }

        .landing-template-page .hero h1 {
          margin-bottom: 24px;
          font-size: clamp(1.58rem, 7.4vw, 2.05rem);
          line-height: 1.08;
        }

        .landing-template-page__hero-title-suffix {
          margin-top: 6px;
          font-size: 0.78em;
        }

        .landing-template-page__hero-subtitle {
          margin: -6px 0 18px;
          font-size: clamp(1.15rem, 5.8vw, 1.5rem);
        }

        .landing-template-page .hero p.landing-template-page__hero-intro {
          margin: -2px 0 8px;
          font-size: 0.98rem;
          line-height: 1.4;
        }

        .landing-template-page .hero p {
          margin-bottom: 28px;
          font-size: 0.98rem;
          line-height: 1.55;
        }

        .landing-template-page .hero {
          min-height: auto;
          padding: 0;
          align-items: flex-start;
        }

        .landing-template-page .hero .row {
          --bs-gutter-y: 1.25rem;
          --bs-gutter-x: 0;
          gap: 12px 0;
        }

        .landing-template-page .hero-img img {
          width: min(100%, 360px);
          max-width: 100%;
          margin: 0 auto;
        }

        .landing-template-page__signals-section {
          padding-bottom: 24px;
        }

        .landing-template-page .header .logo img {
          max-height: 32px;
        }

        .landing-template-page .header .logo .sitename {
          font-size: 22px;
        }

        .landing-template-page .section-title h2 {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 12px;
          font-size: 26px;
          text-align: center;
        }

        .landing-template-page .section-title h2::before,
        .landing-template-page .section-title h2::after {
          margin: 0;
          flex: 0 0 36px;
        }

        .landing-template-page .section-title h2 > span {
          display: inline-block;
          max-width: min(220px, 100%);
        }

        .landing-template-page__pricing-badge {
          width: 100%;
          max-width: 100%;
        }

        .landing-template-page__pricing-card {
          padding: 28px 20px;
          border-radius: 22px;
        }

        .landing-template-page__pricing-description {
          font-size: 1rem;
          line-height: 1.65;
        }

        .landing-template-page__pricing-note {
          align-items: flex-start;
          text-align: left;
          padding: 14px 16px;
        }

        .landing-template-page__hero-actions {
          align-items: center;
          flex-direction: column;
          width: 100%;
          gap: 14px;
        }

        .landing-template-page__hero-primary-cta,
        .landing-template-page__cta-primary-action {
          width: 100%;
          align-items: stretch;
        }

        .landing-template-page__hero-primary-cta .landing-template-page__cta-note {
          font-size: 0.66rem;
        }

        .landing-template-page .hero .btn-get-started,
        .landing-template-page__secondary-cta {
          width: 100%;
          justify-content: center;
          text-align: center;
        }

        .landing-template-page__cta-note {
          text-align: center;
          font-size: 0.72rem;
        }

        .landing-template-page__secondary-cta {
          margin-top: 0;
          line-height: 1.35;
        }

        .landing-template-page__hero-point,
        .landing-template-page__feature-card,
        .landing-template-page__workflow-card,
        .landing-template-page .services .service-item {
          padding: 20px 18px;
          border-radius: 20px;
        }

        .landing-template-page__hero-point {
          gap: 10px;
        }

        .landing-template-page .services .service-item {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          align-content: flex-start;
          gap: 0 14px;
        }

        .landing-template-page .services .service-item i {
          flex: 0 0 48px;
          width: 48px;
          height: 48px;
          align-self: flex-start;
          margin-right: 0;
        }

        .landing-template-page .services .service-item h4 {
          flex: 1 1 calc(100% - 62px);
          margin: 0;
        }

        .landing-template-page .services .service-item p {
          flex: 0 0 100%;
          margin-top: 16px;
        }

        .landing-template-page__problem-section {
          padding-bottom: 64px;
        }

        .landing-template-page__problem-card {
          padding: 22px 18px;
        }

        .landing-template-page__problem-card .landing-template-page__card-header {
          gap: 12px;
          margin-bottom: 14px;
        }

        .landing-template-page__problem-card p {
          margin-left: 36px;
        }

        .landing-template-page__problem-section .section-title h2 {
          margin-top: 28px;
          font-size: 1.35rem;
          line-height: 1.2;
        }

        .landing-template-page__problem-icon {
          width: 24px;
          height: 24px;
        }

        .landing-template-page__problem-closing {
          margin-top: 28px;
          font-size: 1.02rem;
          line-height: 1.55;
        }

        .landing-template-page .stats .stats-item {
          flex-direction: column;
          align-items: center !important;
          text-align: center;
          gap: 10px;
        }

        .landing-template-page .stats .stats-item i {
          margin-right: 0;
        }

        .landing-template-page__cta {
          padding: 26px 20px;
          border-radius: 22px;
        }

        .landing-template-page__cta h3 {
          font-size: 1.7rem;
          line-height: 1.18;
        }

        .landing-template-page__cta-actions {
          width: 100%;
          gap: 12px;
        }

        .landing-template-page__cta-button {
          width: 100%;
          min-width: 0;
        }

        .landing-template-page__navmenu > ul {
          left: var(--landing-mobile-gutter);
          right: var(--landing-mobile-gutter);
          top: 72px;
          max-height: min(60vh, 520px);
        }

        .landing-template-page__mobile-menu-actions {
          padding-right: 18px;
          padding-left: 18px;
        }

        .landing-auth-modal {
          align-items: flex-end;
          padding: 0;
        }

        .landing-auth-modal__panel {
          position: fixed;
          right: 0;
          bottom: 0;
          left: 0;
          width: 100%;
          max-height: calc(var(--landing-viewport-height, 100dvh) - 12px);
          overflow: auto;
          padding: 24px 18px calc(20px + env(safe-area-inset-bottom, 0px));
          border-radius: 24px 24px 0 0;
        }

        .landing-auth-modal__panel::after {
          content: "";
          position: absolute;
          right: 0;
          bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
          left: 0;
          height: env(safe-area-inset-bottom, 0px);
          background:
            radial-gradient(circle at top right, rgb(255 138 0 / 0.12), transparent 34%),
            linear-gradient(180deg, #fff 0%, #f8fbff 100%);
        }

        .landing-auth-modal__title {
          font-size: 24px;
        }

      .landing-auth-form-actions {
        align-items: stretch;
        flex-direction: column;
      }
    }

.landing-template-page--not-found .header {
  position: sticky;
}

.landing-template-page__not-found-section {
  min-height: calc(100vh - 168px);
  display: flex;
  align-items: center;
  padding: 96px 0;
}

.landing-template-page__not-found-card {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 32px;
  border: 1px solid rgb(49 80 108 / 0.12);
  background:
    radial-gradient(circle at top right, rgb(255 138 0 / 0.16), transparent 28%),
    linear-gradient(135deg, rgb(31 84 147 / 0.08), rgb(255 255 255 / 0.98));
  box-shadow: 0 28px 60px rgb(31 84 147 / 0.12);
  text-align: left;
}

.landing-template-page__not-found-card::before {
  content: "";
  position: absolute;
  inset: auto -72px -72px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(31 84 147 / 0.12), rgb(255 138 0 / 0.18));
}

.landing-template-page__not-found-card > * {
  position: relative;
  z-index: 1;
}

.landing-template-page__not-found-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgb(31 84 147 / 0.08);
  border: 1px solid rgb(31 84 147 / 0.12);
  color: #1d4ed8;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.landing-template-page__not-found-card h1 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.02;
}

.landing-template-page__not-found-description {
  margin: 0 0 10px;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 44ch;
}

.landing-template-page__not-found-hint {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 48ch;
}

.landing-template-page__not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}

.landing-template-page__not-found-actions .landing-template-page__cta-button--primary {
  order: 2;
  margin-left: auto;
  background: var(--ph-logo-orange);
  color: #fff;
  box-shadow: none;
}

.landing-template-page__not-found-actions .landing-template-page__cta-button--primary:hover,
.landing-template-page__not-found-actions .landing-template-page__cta-button--primary:focus-visible {
  color: #fff;
  background: #f57c00;
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .landing-template-page__not-found-section {
    min-height: auto;
    padding: 72px 0 48px;
  }

  .landing-template-page__not-found-card {
    border-radius: 24px;
    padding: 28px 22px;
  }

  .landing-template-page__not-found-actions {
    flex-direction: column;
  }

  .landing-template-page__not-found-actions .landing-template-page__cta-button {
    width: 100%;
  }
}
