/* ==========================================================================
   Public marketing home page (testtheapp.com "/")
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

.landing-page {
    background-color: #ffffff;
    overflow-x: hidden;
}

.landing-page .container {
    max-width: 1320px;
}

.landing-alerts-wrap .alert {
    max-width: 720px;
    margin: 1rem auto 0;
}

/* ---------------------------------------------------------------------- */
/* Modern, larger buttons — pill-shaped with a lift-on-hover feel          */
/* ---------------------------------------------------------------------- */

.landing-page .btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.landing-page .btn:active {
    transform: translateY(0);
}

.landing-page .btn-lg {
    padding: 1.05rem 2.35rem;
    font-size: 1.1rem;
}

.landing-page .btn-primary {
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.38);
}

.landing-page .btn-primary:hover {
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.44);
}

.landing-page .btn-outline-primary {
    border-width: 2px;
}

.landing-page .btn-outline-primary:hover {
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.22);
}

.landing-page .btn-light {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.landing-page .btn-outline-light {
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.4);
}

.landing-page .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* ---------------------------------------------------------------------- */
/* Nav                                                                     */
/* ---------------------------------------------------------------------- */

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.landing-nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink-900);
    flex-shrink: 0;
}

.landing-brand:hover {
    color: var(--ink-900);
}

.landing-brand-logo {
    height: 34px;
    width: 34px;
    border-radius: 9px;
    object-fit: cover;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 2.1rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-nav-links a {
    color: var(--ink-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
}

.landing-nav-links a:hover {
    color: var(--brand-600);
}

.landing-login-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.landing-login-group .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.landing-hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 1.25rem 5rem;
    background: linear-gradient(180deg, var(--brand-50) 0%, #ffffff 75%);
}

.landing-hero::before,
.landing-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.landing-hero::before {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
}

.landing-hero::after {
    width: 360px;
    height: 360px;
    bottom: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
}

.landing-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.landing-hero-copy {
    flex: 1 1 460px;
    min-width: 0;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--brand-700);
    background: var(--brand-100);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.landing-hero-copy h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.landing-lead {
    color: var(--ink-500);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 46ch;
    margin-bottom: 1.75rem;
}

.landing-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.landing-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.35rem;
    margin-top: 1.6rem;
}

.landing-trust-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-500);
}

.landing-trust-chips i {
    color: var(--success);
    font-size: 0.95rem;
}

.landing-hero-visual {
    flex: 1 1 420px;
    min-width: 0;
    display: flex;
    justify-content: center;
}

/* Abstract "product preview" card — deliberately illustrative, not a real screenshot */

.landing-mock-card {
    width: 100%;
    max-width: 400px;
    background: var(--card);
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
    padding: 1.4rem;
    transform: rotate(1deg);
    animation: landing-float 5s ease-in-out infinite;
}

@keyframes landing-float {
    0%, 100% { transform: rotate(1deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-10px); }
}

.landing-mock-header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding-bottom: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-soft);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink-900);
}

.landing-mock-logo {
    height: 26px;
    width: 26px;
    border-radius: 7px;
    object-fit: cover;
}

.landing-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.landing-mock-stats div {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.5rem;
    text-align: center;
}

.landing-mock-stats strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink-900);
}

.landing-mock-stats span {
    font-size: 0.68rem;
    color: var(--ink-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.landing-mock-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
}

.landing-mock-row span:first-child {
    font-weight: 600;
    color: var(--ink-800);
}

.landing-mock-row em {
    font-style: normal;
    color: var(--ink-400);
    font-weight: 500;
    margin-left: 0.35rem;
}

/* ---------------------------------------------------------------------- */
/* Trust bar                                                              */
/* ---------------------------------------------------------------------- */

.landing-trustbar {
    position: relative;
    z-index: 1;
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    padding: 1.35rem 1.25rem;
}

.landing-trustbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.landing-trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.83rem;
}

.landing-trust-item i {
    color: var(--brand-600);
    font-size: 1.05rem;
}

/* ---------------------------------------------------------------------- */
/* Generic section shell                                                  */
/* ---------------------------------------------------------------------- */

.landing-section {
    padding: 4rem 1.25rem;
    max-width: 1320px;
    margin: 0 auto;
}

.landing-section-alt {
    background-color: var(--surface);
}

.landing-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.landing-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    margin: 0.5rem 0 0.6rem;
}

.landing-section-head p {
    color: var(--ink-500);
    margin: 0;
}

/* ---------------------------------------------------------------------- */
/* How it works                                                           */
/* ---------------------------------------------------------------------- */

.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.landing-step {
    text-align: center;
}

.landing-step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.1rem;
    border-radius: 22px;
    background: var(--brand-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 12px 26px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s ease;
}

.landing-step:hover .landing-step-icon {
    transform: translateY(-4px) scale(1.04);
}

.landing-step-number {
    display: inline-block;
    color: var(--brand-600);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.landing-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.landing-step p {
    color: var(--ink-500);
    font-size: 0.875rem;
    margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Feature cards                                                          */
/* ---------------------------------------------------------------------- */

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.landing-feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.landing-feature-card:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
    border-color: var(--brand-200);
}

.landing-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.landing-feature-card:hover .landing-feature-icon {
    background: var(--brand-gradient);
    color: #fff;
}

.landing-feature-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.landing-feature-card p {
    color: var(--ink-500);
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Role cards ("built for everyone")                                      */
/* ---------------------------------------------------------------------- */

.landing-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.landing-role-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.landing-role-card:hover {
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
    border-color: var(--brand-200);
}

.landing-role-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    background: var(--brand-50);
    color: var(--brand-600);
}

.landing-role-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.landing-role-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-role-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--ink-700);
}

.landing-role-list i {
    color: var(--success);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* Pricing                                                                 */
/* ---------------------------------------------------------------------- */

.landing-pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 2.5rem 2.25rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.landing-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.landing-price {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-price-usd {
    color: var(--ink-500);
    font-weight: 700;
    font-size: 1.05rem;
}

.landing-price-sub {
    color: var(--ink-500);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.75rem;
}

.landing-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    text-align: left;
}

.landing-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--ink-700);
}

.landing-pricing-features i {
    color: var(--success);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.landing-pricing-card .btn {
    width: 100%;
}

.landing-price-note {
    color: var(--ink-400);
    font-size: 0.78rem;
    margin: 1rem 0 0;
}

/* ---------------------------------------------------------------------- */
/* FAQ                                                                     */
/* ---------------------------------------------------------------------- */

.landing-faq {
    max-width: 820px;
    margin: 0 auto;
}

.landing-faq .accordion-item {
    border: 1px solid var(--border);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.landing-faq .accordion-button {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink-900);
    padding: 1.1rem 1.4rem;
}

.landing-faq .accordion-body {
    padding: 0 1.4rem 1.25rem;
    color: var(--ink-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---------------------------------------------------------------------- */
/* About                                                                   */
/* ---------------------------------------------------------------------- */

.landing-about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.landing-about-stat {
    text-align: center;
}

.landing-about-stat strong {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-about-stat span {
    color: var(--ink-500);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ---------------------------------------------------------------------- */
/* Support                                                                 */
/* ---------------------------------------------------------------------- */

.landing-support-card {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--brand-50) 0%, #f5f3ff 100%);
    border: 1px solid var(--brand-100);
    border-radius: 26px;
    padding: 2.75rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.landing-support-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.32);
    margin-bottom: 0.4rem;
}

.landing-support-card h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.75rem);
    font-weight: 800;
    margin: 0.4rem 0 0.4rem;
}

.landing-support-card p {
    color: var(--ink-500);
    margin: 0 0 0.5rem;
}

/* ---------------------------------------------------------------------- */
/* Booking form                                                            */
/* ---------------------------------------------------------------------- */

.landing-booking-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
}

.landing-booking-card .form-label {
    font-weight: 600;
    color: var(--ink-700);
}

.landing-booking-card .form-control,
.landing-booking-card .form-select {
    border-radius: 12px;
    padding: 0.7rem 0.95rem;
}

/* ---------------------------------------------------------------------- */
/* Mobile app section                                                     */
/* ---------------------------------------------------------------------- */

.landing-mobile-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.landing-mobile-copy {
    flex: 1 1 420px;
    min-width: 0;
}

.landing-mobile-copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    margin: 0.5rem 0 0.9rem;
}

.landing-mobile-copy p {
    color: var(--ink-500);
    margin-bottom: 1.1rem;
}

.landing-mobile-visual {
    flex: 1 1 260px;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.landing-phone-mock {
    width: 220px;
    border-radius: 32px;
    background: linear-gradient(180deg, #111827 0%, #1e2436 100%);
    padding: 10px;
    box-shadow: var(--shadow-lg);
}

.landing-phone-mock-screen {
    background: var(--card);
    border-radius: 22px;
    padding: 1rem 0.85rem;
    min-height: 340px;
}

.landing-phone-mock-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--ink-900);
    margin-bottom: 0.9rem;
}

.landing-phone-mock-header img {
    height: 20px;
    width: 20px;
    border-radius: 6px;
}

.landing-phone-mock-row {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.5rem;
}

.landing-phone-mock-row .title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink-800);
    margin-bottom: 0.3rem;
}

.landing-store-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--secondary-soft);
    color: var(--ink-700);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    margin-top: 0.5rem;
}

/* ---------------------------------------------------------------------- */
/* Security                                                                */
/* ---------------------------------------------------------------------- */

.landing-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.landing-security-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.6rem 1.4rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.landing-security-card:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
    border-color: var(--brand-200);
}

.landing-security-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    background: var(--brand-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.3);
}

.landing-security-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.landing-security-card p {
    color: var(--ink-500);
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------------------------------------------------------------------- */
/* CTA banner                                                             */
/* ---------------------------------------------------------------------- */

.landing-cta {
    position: relative;
    overflow: hidden;
    margin: 0 1.25rem 4rem;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #111827 0%, #312e81 100%);
    border-radius: 28px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 24px 56px rgba(49, 46, 129, 0.35);
}

.landing-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 360px;
    top: -140px;
    right: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.35) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.landing-cta .landing-eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.landing-cta h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0.4rem 0 0.6rem;
}

.landing-cta p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 46ch;
    margin: 0 auto 1.5rem;
}

.landing-cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.landing-cta-actions .btn-light {
    font-weight: 700;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.landing-footer {
    background-color: var(--ink-900);
    color: rgba(255, 255, 255, 0.55);
    padding: 2rem 1.25rem;
}

.landing-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.landing-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.landing-footer-brand img {
    height: 26px;
    width: 26px;
    border-radius: 7px;
}

.landing-footer-brand:hover {
    color: #fff;
}

.landing-footer-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.landing-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.landing-footer-links a:hover {
    color: #fff;
}

.landing-footer small {
    font-size: 0.8rem;
}

/* ---------------------------------------------------------------------- */
/* Scroll-to-top button                                                   */
/* ---------------------------------------------------------------------- */

.landing-scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 50;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.2s ease;
}

.landing-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.landing-scroll-top:hover {
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.45);
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .landing-scroll-top {
        right: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                             */
/* ---------------------------------------------------------------------- */

@media (max-width: 991.98px) {
    .landing-nav-links {
        display: none;
    }

    .landing-hero-inner,
    .landing-mobile-inner {
        flex-direction: column;
        text-align: center;
    }

    .landing-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-hero-actions,
    .landing-trust-chips {
        justify-content: center;
    }

    .landing-mock-card {
        transform: none;
    }

    .landing-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-about-stats {
        gap: 2rem;
    }

    .landing-trustbar-inner {
        gap: 1.25rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .landing-login-group .btn span {
        display: none;
    }

    .landing-steps,
    .landing-features-grid,
    .landing-roles-grid,
    .landing-security-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        padding: 2.5rem 1.25rem 3rem;
    }

    .landing-section {
        padding: 3rem 1.25rem;
    }

    .landing-pricing-card,
    .landing-support-card {
        padding: 2rem 1.5rem;
    }

    .landing-price {
        font-size: 2.5rem;
    }

    .landing-about-stats {
        gap: 1.5rem 2rem;
    }
}
