/* =========================================================================
   landing-theme.css — public landing site redesign

   Append layer loaded by landing/layout/default.blade.php AFTER style.css and
   responsive.css, scoped to `body.ss-land`. Deleting that one <link> reverts
   the whole redesign; style.css is never edited for theming (same convention
   as shescale-theme.css in the panel and auth-theme.css on the login pages).

   Palette is the one from the login redesign, so the marketing site, the
   sign-in page and the panel now read as one product.
   ========================================================================= */

.ss-land {
    --sl-green: #22c55e;
    --sl-green-d: #16a34a;
    --sl-green-dd: #0f7a38;
    --sl-lime: #a3e635;

    --sl-ink: #0b1220;
    --sl-body: #55637a;
    --sl-muted: #7c8798;
    --sl-line: #e4ebe6;

    --sl-dark: #070d0b;
    --sl-dark-2: #0d1a14;
    --sl-tint: #f2f7f4;

    --sl-r: 22px;
    --sl-shadow: 0 22px 50px -24px rgba(9, 45, 25, .26), 0 3px 10px rgba(9, 45, 25, .04);
    --sl-shadow-lg: 0 34px 70px -28px rgba(9, 45, 25, .38);
    --sl-grad: linear-gradient(90deg, var(--sl-green-d), var(--sl-green-dd));

    background: #fff;
    color: var(--sl-body);
}

/* ---------- 1. Typography ------------------------------------------------- */

.ss-land h1,
.ss-land h2,
.ss-land h3,
.ss-land h4,
.ss-land h5,
.ss-land h6 {
    color: var(--sl-ink);
    letter-spacing: -.022em;
    font-weight: 800;
}

.ss-land p {
    color: var(--sl-body);
    line-height: 1.7;
}

/* Section headings. style.css sets these at 24px, which is why every band
   read as a subhead rather than a section title. */
.ss-land .beautiful-ui-kit-title,
.ss-land .hotel-main-title,
.ss-land .choose-plan-title,
.ss-land #pricing-plans h2,
.ss-land #contact-us h2,
.ss-land #blogs h5,
.ss-land .ss-h2 {
    font-size: clamp(28px, 3.4vw, 42px) !important;
    font-weight: 800 !important;
    line-height: 1.18;
    letter-spacing: -.028em;
    margin-bottom: 14px;
    text-align: center;
}

/* `.sub-title-mein` is on BOTH the section subtitles and the how-it-works card
   descriptions, so every rule here must exclude `.card-text` — otherwise the
   colour !important overrides the card's own `.text-white` (making the text on
   the green cards unreadable) and the centring wrecks the card layout. */
.ss-land .subtitle:not(.card-text),
.ss-land .sub-title-mein:not(.card-text),
.ss-land .hotel-main-subtitle:not(.card-text),
.ss-land #pricing-plans > .container > p,
.ss-land .ss-sub {
    font-size: 16.5px !important;
    line-height: 1.7;
    color: var(--sl-muted) !important;
    max-width: 62ch;
    margin-inline: auto;
    text-align: center;
}

/* Small pill above a section title. Added by the blade as <span class="ss-eyebrow">. */
.ss-land .ss-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--sl-green-dd);
    background: rgba(34, 197, 94, .10);
    border: 1px solid rgba(34, 197, 94, .24);
}

.ss-land .ss-eyebrow i {
    font-size: 11px;
}

.ss-land .ss-accent {
    color: var(--sl-green-d);
}

/* ---------- 2. Section rhythm -------------------------------------------- */

.ss-land section {
    position: relative;
}

.ss-land #features .beautiful-ui-kit-bg-color,
.ss-land .how-it-works-section,
.ss-land #our-stores .card-section-bg-color,
.ss-land #pricing-plans,
.ss-land #blogs,
.ss-land #contact-us {
    padding-top: clamp(60px, 7vw, 96px) !important;
    padding-bottom: clamp(60px, 7vw, 96px) !important;
}

.ss-land #pricing-plans,
.ss-land #contact-us {
    background: var(--sl-tint) !important;
}

.ss-land #features .beautiful-ui-kit-bg-color {
    background: #fff !important;
}

.ss-land #our-stores .card-section-bg-color {
    background: var(--sl-tint) !important;
}

/* ---------- 3. Header ----------------------------------------------------- */

.ss-land .header {
    background: rgba(7, 13, 11, .88) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: background .25s ease, box-shadow .25s ease;
}

/* The glass blur only applies from 1152px up. Below that the mobile drawer
   (.menu / .menu-2) is position: fixed inside this header, and a non-none
   backdrop-filter turns the header into that drawer's containing block — the
   panel then sizes to the header instead of the viewport and the links spill
   out over the page with no background behind them. */
@media (min-width: 1152px) {
    .ss-land .header {
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
}

.ss-land .header .nav-link,
.ss-land .header .navbar-nav a {
    font-weight: 600;
    letter-spacing: -.005em;
    transition: color .2s ease;
}

.ss-land .header .logo img {
    transition: transform .25s cubic-bezier(.34, 1.4, .5, 1);
}

.ss-land .header .logo:hover img {
    transform: scale(1.04);
}

/* ---------- 4. Buttons ---------------------------------------------------- */

/* landing style.css paints .btn-secondary / .btn-primary from the DB colours
   (#000000 primary on this install), which is why every CTA was a black slab. */
.ss-land .btn-secondary,
.ss-land .btn-primary,
.ss-land a.btn-secondary,
.ss-land a.btn-primary,
.ss-land .ss-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff !important;
    background: var(--sl-grad) !important;
    box-shadow: 0 14px 28px -12px rgba(15, 122, 56, .6);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ss-land .btn-secondary:hover,
.ss-land .btn-primary:hover,
.ss-land .ss-btn:hover {
    filter: brightness(1.07);
    transform: translateY(-2px);
    box-shadow: 0 20px 36px -12px rgba(15, 122, 56, .66);
    color: #fff !important;
}

.ss-land .btn-border-white,
.ss-land .btn-border-dark,
.ss-land .ss-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 29px !important;
    border-radius: 999px !important;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1.5px solid rgba(255, 255, 255, .3) !important;
    transition: background .2s ease, border-color .2s ease, transform .18s ease;
}

.ss-land .btn-border-white:hover,
.ss-land .btn-border-dark:hover,
.ss-land .ss-btn-ghost:hover {
    background: rgba(255, 255, 255, .14) !important;
    border-color: rgba(255, 255, 255, .5) !important;
    transform: translateY(-2px);
    color: #fff !important;
}

/* Light-background ghost variant */
.ss-land .ss-btn-ghost-dark {
    color: var(--sl-green-dd) !important;
    background: #fff !important;
    border: 1.5px solid var(--sl-line) !important;
}

.ss-land .ss-btn-ghost-dark:hover {
    border-color: var(--sl-green) !important;
    background: #fff !important;
}

/* sheen sweep on the solid CTAs */
.ss-land .btn-secondary::after,
.ss-land .btn-primary::after,
.ss-land .ss-btn::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 40%;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
    transform: translateX(-140%) skewX(-18deg);
}

.ss-land .btn-secondary:hover::after,
.ss-land .btn-primary:hover::after,
.ss-land .ss-btn:hover::after {
    animation: slSheen .85s ease-out;
}

@keyframes slSheen {
    from { transform: translateX(-140%) skewX(-18deg); }
    to   { transform: translateX(330%) skewX(-18deg); }
}

/* ---------- 5. Hero ------------------------------------------------------- */

.ss-land .ss-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 104px) 0 clamp(50px, 6vw, 84px) !important;
    background:
        radial-gradient(70% 55% at 8% 0%, rgba(34, 197, 94, .13), transparent 60%),
        radial-gradient(60% 50% at 100% 30%, rgba(163, 230, 53, .12), transparent 62%),
        linear-gradient(180deg, #f7fbf8 0%, #fff 62%);
}

.ss-land .ss-hero::before {
    content: "";
    position: absolute;
    top: 90px;
    right: 6%;
    width: 150px;
    height: 110px;
    opacity: .5;
    pointer-events: none;
    background-image: radial-gradient(rgba(22, 163, 74, .26) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
}

.ss-land .ss-hero-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 26px;
    padding: 38px 36px;
    border: 1px solid var(--sl-line);
    box-shadow: var(--sl-shadow-lg);
}

.ss-land .ss-hero-card h1 {
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.14;
    margin-bottom: 16px;
}

.ss-land .ss-hero-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--sl-body);
    margin-bottom: 26px;
}

.ss-land .ss-hero-lead strong {
    color: var(--sl-green-dd);
    font-weight: 800;
}

.ss-land .ss-hero-label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sl-ink);
    margin-bottom: 9px;
}

/* Store-name field: one bordered shell, prefix and input sit bare inside it. */
.ss-land .ss-hero-field {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--sl-line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.ss-land .ss-hero-field:focus-within {
    border-color: var(--sl-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .13);
}

.ss-land .ss-hero-field .ss-hero-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 15px;
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--sl-body);
    background: var(--sl-tint);
    border-inline-end: 1px solid var(--sl-line);
}

.ss-land .ss-hero-prefix i {
    color: var(--sl-green-d);
}

.ss-land .ss-hero-field input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--sl-ink);
    background: transparent;
}

.ss-land .ss-hero-note {
    display: block;
    margin-top: 16px;
    font-size: 13.5px;
    color: var(--sl-muted);
}

.ss-land .ss-hero-note a {
    font-weight: 700;
    color: var(--sl-green-dd);
    text-decoration: none;
}

.ss-land .ss-hero-note a:hover {
    text-decoration: underline;
}

/* Trust row under the form */
.ss-land .ss-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed var(--sl-line);
}

.ss-land .ss-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sl-body);
}

.ss-land .ss-hero-trust i {
    color: var(--sl-green-d);
    font-size: 13px;
}

/* Hero artwork */
.ss-land .ss-hero-art {
    position: relative;
    text-align: center;
}

.ss-land .ss-hero-art img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    filter: drop-shadow(0 30px 50px rgba(9, 45, 25, .18));
    animation: slFloat 7s ease-in-out infinite;
}

.ss-land .ss-hero-art::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    width: 78%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .16), transparent 62%);
    animation: slGlow 9s ease-in-out infinite;
}

.ss-land .ss-hero-caption {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: var(--sl-ink);
    background: #fff;
    border: 1px solid var(--sl-line);
    box-shadow: var(--sl-shadow);
}

.ss-land .ss-hero-caption i {
    color: var(--sl-green-d);
}

@keyframes slFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

@keyframes slGlow {
    0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

/* ---------- 5b. Hero proof strip ------------------------------------------ */

.ss-land .ss-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.ss-land .ss-hero-stat {
    flex: 1 1 0;
    min-width: 130px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--sl-line);
    box-shadow: 0 2px 8px rgba(9, 45, 25, .04);
    transition: transform .26s cubic-bezier(.22, .8, .3, 1), border-color .26s ease;
}

.ss-land .ss-hero-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, .34);
}

.ss-land .ss-hero-stat-num {
    display: block;
    font-size: clamp(21px, 2.2vw, 27px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--sl-ink);
    line-height: 1.15;
}

.ss-land .ss-hero-stat-lbl {
    display: block;
    margin-top: 3px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--sl-muted);
}

/* ---------- 5c. Comparison matrix ----------------------------------------- */

.ss-land #ss-compare {
    padding: clamp(60px, 7vw, 96px) 0;
    background: #fff;
}

/* The table must scroll inside its own box — never let it widen the page. */
.ss-land .ss-compare-wrap {
    overflow-x: auto;
    padding: 4px;
    -webkit-overflow-scrolling: touch;
}

.ss-land table.ss-compare {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--sl-line);
    border-radius: var(--sl-r);
    overflow: hidden;
}

.ss-land .ss-compare thead th {
    padding: 20px 18px;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--sl-ink);
    text-align: center;
    background: var(--sl-tint);
    border-bottom: 1px solid var(--sl-line);
    vertical-align: middle;
}

.ss-land .ss-compare tbody th {
    padding: 16px 18px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--sl-ink);
    text-align: start;
    white-space: nowrap;
}

.ss-land .ss-compare tbody td {
    padding: 16px 18px;
    font-size: 14.5px;
    color: var(--sl-body);
    text-align: center;
    vertical-align: middle;
}

.ss-land .ss-compare tbody tr:nth-child(odd) th,
.ss-land .ss-compare tbody tr:nth-child(odd) td {
    background: rgba(242, 247, 244, .6);
}

.ss-land .ss-compare tbody tr + tr th,
.ss-land .ss-compare tbody tr + tr td {
    border-top: 1px solid var(--sl-line);
}

/* Our column: tinted full height, ringed, and lifted above the rest. */
.ss-land .ss-compare .ss-compare-us {
    position: relative;
    background: rgba(34, 197, 94, .07) !important;
    box-shadow: inset 1px 0 0 rgba(34, 197, 94, .22), inset -1px 0 0 rgba(34, 197, 94, .22);
}

.ss-land .ss-compare thead .ss-compare-us {
    color: var(--sl-green-dd);
    background: rgba(34, 197, 94, .13) !important;
}

.ss-land .ss-compare tbody .ss-compare-us strong {
    color: var(--sl-green-dd);
    font-weight: 800;
}

.ss-land .ss-compare-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 6px;
    padding: 3px 11px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    background: var(--sl-grad);
}

.ss-land .ss-compare .ss-yes {
    color: var(--sl-green-d);
    font-size: 17px;
}

.ss-land .ss-compare .ss-part {
    color: #d9a441;
    font-size: 15px;
}

.ss-land .ss-compare .ss-no {
    color: #cf6a5f;
    font-size: 17px;
}

@media (max-width: 575.98px) {
    .ss-land .ss-hero-stat {
        min-width: 100%;
    }
}

/* ---------- 6. Cards (why-choose-us, features, how-it-works) -------------- */

.ss-land .ss-why {
    margin-top: clamp(52px, 6vw, 86px) !important;
}

.ss-land .ss-card {
    height: 100%;
    padding: 30px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--sl-line);
    border-radius: var(--sl-r);
    box-shadow: 0 2px 8px rgba(9, 45, 25, .04);
    transition: transform .28s cubic-bezier(.22, .8, .3, 1),
                box-shadow .28s ease,
                border-color .28s ease;
}

.ss-land .ss-card:hover {
    transform: translateY(-7px);
    border-color: rgba(34, 197, 94, .34);
    box-shadow: var(--sl-shadow);
}

.ss-land .ss-card-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    font-size: 22px;
    color: var(--sl-green-dd);
    background: rgba(34, 197, 94, .11);
    transition: transform .3s cubic-bezier(.34, 1.4, .5, 1), background .3s ease;
}

.ss-land .ss-card:hover .ss-card-icon {
    transform: scale(1.1) rotate(-6deg);
    background: rgba(34, 197, 94, .18);
}

.ss-land .ss-card h5 {
    font-size: 17.5px;
    font-weight: 800;
    margin-bottom: 9px;
}

.ss-land .ss-card p {
    font-size: 14.5px;
    color: var(--sl-muted);
    margin: 0;
}

/* The features grid reuses Bootstrap .card — style.css gives it a hard 8px
   radius and a grey shadow; scoped here so only the landing grid changes. */
.ss-land #features .card,
.ss-land .how-it-works-section .card {
    border: 1px solid var(--sl-line) !important;
    border-radius: var(--sl-r) !important;
    padding: 10px 6px !important;
    box-shadow: 0 2px 8px rgba(9, 45, 25, .04) !important;
    transition: transform .28s cubic-bezier(.22, .8, .3, 1),
                box-shadow .28s ease,
                border-color .28s ease !important;
}

.ss-land #features .card:hover,
.ss-land .how-it-works-section .card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(34, 197, 94, .34) !important;
    box-shadow: var(--sl-shadow) !important;
}

.ss-land #features .feature-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    padding: 9px;
    border-radius: 15px;
    background: rgba(34, 197, 94, .09);
    transition: transform .3s cubic-bezier(.34, 1.4, .5, 1);
}

.ss-land #features .card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.ss-land #features .card-title {
    font-size: 15.5px !important;
    font-weight: 800 !important;
    color: var(--sl-ink) !important;
}

.ss-land #features .card-text {
    font-size: 13.5px !important;
    color: var(--sl-muted) !important;
    line-height: 1.6;
}

/* ---------- 6b. How it works ---------------------------------------------- */

/* Cards ship as `rounded-0` with a flat #28a745 on every odd index. Rounded
   here and the green swapped for the brand gradient; the blade already puts
   `.text-white` on the odd cards, so contrast just needs to be left alone. */
.ss-land .how-it-works-section .card {
    border-radius: var(--sl-r) !important;
    overflow: hidden;
}

.ss-land .how-it-works-section .have-project-section-bg-color {
    background: linear-gradient(158deg, var(--sl-green-d), var(--sl-green-dd)) !important;
    border-color: transparent !important;
}

.ss-land .how-it-works-section .have-project-section-bg-color .card-title,
.ss-land .how-it-works-section .have-project-section-bg-color .card-text,
.ss-land .how-it-works-section .have-project-section-bg-color a {
    color: #fff !important;
}

.ss-land .how-it-works-section .have-project-section-bg-color .card-text {
    opacity: .88;
}

/* The big index numeral is decorative — dial it back so the title leads. */
.ss-land .how-it-works-section .card h1.card-title {
    font-size: 34px !important;
    font-weight: 800;
    opacity: .18;
}

.ss-land .how-it-works-section .have-project-section-bg-color h1.card-title {
    color: #fff !important;
    opacity: .34;
}

.ss-land .how-it-works-section .card h6.card-title {
    font-size: 17px !important;
    font-weight: 800 !important;
}

.ss-land .how-it-works-section .card-footer a {
    font-weight: 700;
    text-decoration: none;
    border-bottom-width: 2px !important;
    transition: color .2s ease;
}

.ss-land .how-it-works-section .bg-white .card-footer a {
    color: var(--sl-green-dd) !important;
    border-bottom-color: var(--sl-green) !important;
}

/* ---------- 7. Dark CTA band --------------------------------------------- */

/* Was a flat #28a745 slab — the single most dated element on the page. */
.ss-land .you-work-everywhere-you-are-bg-color {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 6.5vw, 92px) 0 !important;
    background:
        radial-gradient(80% 70% at 12% 0%, rgba(34, 197, 94, .20), transparent 58%),
        radial-gradient(70% 60% at 92% 100%, rgba(163, 230, 53, .13), transparent 60%),
        linear-gradient(160deg, var(--sl-dark-2), var(--sl-dark) 65%) !important;
}

.ss-land .you-work-everywhere-you-are-bg-color::before {
    content: "";
    position: absolute;
    top: 34px;
    right: 7%;
    width: 150px;
    height: 100px;
    opacity: .4;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, .3) 1.4px, transparent 1.4px);
    background-size: 14px 14px;
}

.ss-land .you-work-everywhere-you-are-bg-color .choose-plan-title,
.ss-land .you-work-everywhere-you-are-bg-color h5 {
    color: #fff !important;
    max-width: 22ch;
    margin-inline: auto;
}

.ss-land .you-work-everywhere-you-are-bg-color .choose-plan,
.ss-land .you-work-everywhere-you-are-bg-color p {
    color: rgba(255, 255, 255, .72) !important;
    max-width: 60ch;
    margin-inline: auto;
}

.ss-land .you-work-everywhere-you-are-bg-color .text-center.mt-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 30px !important;
}

/* ---------- 8. Store partners --------------------------------------------- */

.ss-land #our-stores .card {
    border: 1px solid var(--sl-line) !important;
    border-radius: var(--sl-r) !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(9, 45, 25, .04) !important;
    transition: transform .28s cubic-bezier(.22, .8, .3, 1), box-shadow .28s ease !important;
}

.ss-land #our-stores .card:hover {
    transform: translateY(-7px) !important;
    box-shadow: var(--sl-shadow) !important;
}

.ss-land #our-stores .card img {
    transition: transform .4s ease;
}

.ss-land #our-stores .card:hover img {
    transform: scale(1.05);
}

/* ---------- 9. Pricing ---------------------------------------------------- */

.ss-land #pricing-plans .card {
    border: 1px solid var(--sl-line) !important;
    border-radius: var(--sl-r) !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(9, 45, 25, .05) !important;
    transition: transform .28s cubic-bezier(.22, .8, .3, 1),
                box-shadow .28s ease,
                border-color .28s ease !important;
}

.ss-land #pricing-plans .card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(34, 197, 94, .4) !important;
    box-shadow: var(--sl-shadow-lg) !important;
}

/* The plan header was Bootstrap .bg-primary — a blue bar on a green brand. */
.ss-land #pricing-plans .card-header,
.ss-land #pricing-plans .card-header.bg-primary {
    padding: 22px 18px !important;
    border: 0 !important;
    background: var(--sl-grad) !important;
    position: relative;
    overflow: hidden;
}

.ss-land #pricing-plans .card-header::after {
    content: "";
    position: absolute;
    inset: auto -30% -70% auto;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 65%);
    pointer-events: none;
}

.ss-land #pricing-plans .card-header h4 {
    position: relative;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0;
}

.ss-land #pricing-plans .card-body h5 {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: var(--sl-ink) !important;
    letter-spacing: -.03em;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--sl-line);
    margin-bottom: 20px !important;
}

.ss-land #pricing-plans .card-body ul,
.ss-land #pricing-plans .card-body li {
    list-style: none;
}

.ss-land #pricing-plans .card-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--sl-body);
    padding: 6px 0;
}

.ss-land #pricing-plans .card-body li i,
.ss-land #pricing-plans .card-body li svg {
    color: var(--sl-green-d) !important;
    flex: 0 0 auto;
    margin-top: 3px;
}

.ss-land #pricing-plans .card-footer {
    background: var(--sl-tint) !important;
    border-top: 1px solid var(--sl-line) !important;
}

/* Popular plan: lifted, ringed, with a ribbon. Bootstrap's .border-success is
   already on it in the blade, so no markup change is needed to target it. */
.ss-land #pricing-plans .card.border-success {
    position: relative;
    border-color: transparent !important;
    box-shadow: 0 0 0 2px var(--sl-green), var(--sl-shadow-lg) !important;
}

@media (min-width: 992px) {
    .ss-land #pricing-plans .card.border-success {
        transform: translateY(-10px);
    }
}

.ss-land #pricing-plans .card.border-success::before {
    content: "★";
    position: absolute;
    z-index: 3;
    top: 14px;
    inset-inline-end: 14px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 13px;
    color: var(--sl-green-dd);
    background: #fff;
    box-shadow: 0 4px 12px rgba(9, 45, 25, .2);
}

/* ---------- 10. Fun facts -------------------------------------------------- */

.ss-land .fun-fact {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 6.5vw, 90px) 0 !important;
    background:
        radial-gradient(75% 65% at 10% 0%, rgba(34, 197, 94, .20), transparent 58%),
        radial-gradient(65% 55% at 95% 100%, rgba(163, 230, 53, .12), transparent 60%),
        linear-gradient(160deg, var(--sl-dark-2), var(--sl-dark) 65%) !important;
}

.ss-land .fun-fact .funfact-card {
    height: 100%;
    padding: 30px 20px !important;
    border-radius: var(--sl-r) !important;
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .11);
    box-shadow: none !important;
    backdrop-filter: blur(8px);
    transition: transform .28s cubic-bezier(.22, .8, .3, 1), background .28s ease;
}

.ss-land .fun-fact .funfact-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, .10) !important;
}

.ss-land .fun-fact .funfact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: rgba(163, 230, 53, .14);
    color: var(--sl-lime) !important;
}

.ss-land .fun-fact .funfact-icon i,
.ss-land .fun-fact .funfact-icon svg {
    color: var(--sl-lime) !important;
    font-size: 22px;
}

.ss-land .fun-fact .funfact-number {
    font-size: clamp(28px, 3vw, 38px) !important;
    font-weight: 800 !important;
    letter-spacing: -.03em;
    color: #fff !important;
}

.ss-land .fun-fact .funfact-description {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .62) !important;
}

/* ---------- 11. Contact ---------------------------------------------------- */

.ss-land #contact-us h2 {
    text-align: start;
}

.ss-land #contact-us > .container > .row > .col-md-6:first-child p {
    text-align: start;
    margin-inline: 0;
}

.ss-land #contact-us ul li {
    font-size: 15px;
    color: var(--sl-body);
}

.ss-land #contact-us ul li strong {
    color: var(--sl-ink);
}

.ss-land #contact-us ul li a {
    color: var(--sl-body) !important;
    transition: color .2s ease;
}

.ss-land #contact-us ul li a:hover {
    color: var(--sl-green-dd) !important;
}

/* Social pills were Bootstrap .bg-primary — blue again. */
.ss-land #contact-us .bg-primary {
    width: 42px;
    height: 42px;
    display: inline-grid !important;
    place-items: center;
    background: var(--sl-grad) !important;
    box-shadow: 0 8px 18px -8px rgba(15, 122, 56, .6);
    transition: transform .22s cubic-bezier(.34, 1.4, .5, 1);
}

.ss-land #contact-us .bg-primary:hover {
    transform: translateY(-3px) scale(1.06);
}

.ss-land #contact-us .card,
.ss-land #contact-us form {
    border-radius: var(--sl-r);
}

.ss-land #contact-us .card {
    border: 1px solid var(--sl-line) !important;
    box-shadow: var(--sl-shadow) !important;
}

.ss-land #contact-us .form-control {
    border: 1.5px solid var(--sl-line);
    border-radius: 13px;
    padding: 13px 15px;
    font-size: 14.5px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.ss-land #contact-us .form-control:focus {
    border-color: var(--sl-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

/* ---------- 12. Footer ----------------------------------------------------- */

.ss-land footer,
.ss-land .footer {
    background: linear-gradient(180deg, var(--sl-dark-2), var(--sl-dark)) !important;
}

.ss-land footer h5,
.ss-land footer h6,
.ss-land .footer h5,
.ss-land .footer h6 {
    color: #fff !important;
    font-size: 15px;
    letter-spacing: .01em;
}

.ss-land footer a,
.ss-land .footer a {
    color: rgba(255, 255, 255, .66) !important;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    display: inline-block;
}

.ss-land footer a:hover,
.ss-land .footer a:hover {
    color: var(--sl-lime) !important;
    transform: translateX(3px);
}

.ss-land footer p,
.ss-land .footer p {
    color: rgba(255, 255, 255, .6) !important;
    font-size: 14px;
}

/* ---------- 13. Scroll reveal ---------------------------------------------- */

/* AOS is already loaded and initialised by landing.js; these only refine the
   feel of the elements that already carry data-aos attributes. */
.ss-land [data-aos] {
    transition-timing-function: cubic-bezier(.22, .8, .3, 1) !important;
}

/* ---------- 14. Responsive -------------------------------------------------- */

@media (max-width: 991.98px) {
    .ss-land .ss-hero-card {
        padding: 30px 24px;
    }

    .ss-land #contact-us h2,
    .ss-land #contact-us > .container > .row > .col-md-6:first-child p {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .ss-land .ss-hero-field {
        flex-direction: column;
    }

    .ss-land .ss-hero-field .ss-hero-prefix {
        border-inline-end: 0;
        border-bottom: 1px solid var(--sl-line);
    }

    .ss-land .btn-secondary,
    .ss-land .btn-primary,
    .ss-land .ss-btn,
    .ss-land .btn-border-white,
    .ss-land .ss-btn-ghost {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ss-land *,
    .ss-land *::before,
    .ss-land *::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}

/* ---------- 14. Mobile drawer (below 1152px) ------------------------------
   style.css ships the drawer as a bare `background: black` panel with no
   padding and the close button overlapping the logo. Dress it to match the
   rest of the page now that it actually renders full height. */
@media (max-width: 1151.98px) {

    .ss-land .menu,
    .ss-land .menu-2 {
        width: 78%;
        max-width: 320px;
        background: #0B120F;
        border-inline-start: 1px solid rgba(255, 255, 255, .08);
        box-shadow: -18px 0 45px rgba(0, 0, 0, .45);
        padding: 72px 22px 28px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .ss-land .menu-2 {
        border-inline-start: 0;
        border-inline-end: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 18px 0 45px rgba(0, 0, 0, .45);
    }

    /* Dim layer behind the open drawer. style.css positions it absolutely, so
       inside the sticky header it only ever covered the header strip — pin it
       to the viewport instead. Tapping it closes the drawer (landing.js). */
    .ss-land .bg-gray {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .55);
        z-index: 90;
        transition: none;
    }

    /* Close button sits inside the panel, not over the logo */
    .ss-land .deletebtn-button-header {
        left: auto;
        right: 18px;
        top: 18px;
        line-height: 1;
        cursor: pointer;
    }

    .ss-land .deletebtn-button-header-rtl {
        right: auto;
        left: 18px;
        top: 18px;
        line-height: 1;
        cursor: pointer;
    }

    .ss-land .menu-list-1152px-none {
        margin: 0 !important;
        width: 100%;
    }

    .ss-land .menu .navbar-nav,
    .ss-land .menu-2 .navbar-nav {
        width: 100%;
    }

    .ss-land .menu .nav-item,
    .ss-land .menu-2 .nav-item {
        padding-inline: 0 !important;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .ss-land .menu .nav-link,
    .ss-land .menu-2 .nav-link {
        display: block;
        padding: 0.85rem 0;
        font-size: 16px;
    }

    .ss-land .menu .nav-link.active,
    .ss-land .menu-2 .nav-link.active {
        color: var(--secondary-color) !important;
    }

    /* responsive.css hides .header-btn from 1280px down, which also stripped
       the "Get Started" CTA out of the drawer. Bring it back here. */
    .ss-land .menu .header-btn,
    .ss-land .menu-2 .header-btn {
        display: flex !important;
        margin-top: auto;
        padding-top: 24px;
        width: 100%;
    }

    .ss-land .menu .header-btn .header-btn-login,
    .ss-land .menu-2 .header-btn .header-btn-login {
        flex: 1 1 auto;
        text-align: center;
    }

    /* the salesmax chat bubble is fixed bottom-right and lands on top of the
       drawer's Get Started button — park it while the drawer is open */
    .ss-land:has(.bg-layer.bg-gray) chat-widget {
        display: none !important;
    }

    /* the language picker already has its own globe in the top bar below xl —
       don't show a second one inside the drawer */
    .ss-land .menu .header-btn > .dropdown,
    .ss-land .menu-2 .header-btn > .dropdown {
        display: none;
    }
}
