/* ═══════════════════════════════════════════════════════════════
   components.css — Section-specific styles for BrightSentinel

   All dimensions, typography, and spacing are matched pixel-for-pixel
   to the Figma design spec (1440 × 4396 dark / light).
   Naming convention: BEM-style with `bs-` prefix.
   Colors reference CSS custom properties from theme.css.
   ═══════════════════════════════════════════════════════════════ */

/* ╔═══════════════════════════════════════════════════════════╗
   ║  HOMEPAGE WRAPPER                                        ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-homepage {
    width: 100%;
    overflow-x: hidden;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  HERO SECTION                                            ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-hero {
    width: 100%;
    padding-top: 77px;
    background-color: var(--bs-page-bg);
    transition: background-color var(--bs-transition-speed) ease;
}

.bs-hero__media {
    position: relative;
    height: 550px;
    max-width: calc(var(--bs-max-width) - 64px);
    width: calc(100% - 64px);
    margin: 0 auto;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    /* Poster fallback — visible while the video fades in after hydration */
    background: url('/assets/images/home-hero-laboratory-scientist-img.jpg') center / cover no-repeat;
}

.bs-hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bs-hero__below {
    padding: 48px 0;
}

.bs-hero__below-inner {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.bs-hero__scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bs-color-orange);
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    transition: opacity var(--bs-transition-speed) ease;
    align-self: start;
}

.bs-hero__scroll-cta:hover {
    opacity: 0.7;
}

.bs-hero__scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

.bs-hero__info {
    min-width: 0;
}

.bs-hero__title {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 0 0 32px 0;
    color: var(--bs-text-primary);
    transition: color var(--bs-transition-speed) ease;
}

.bs-hero__title-accent {
    display: block;
}

.bs-hero__description {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: var(--bs-text-primary);
    opacity: 0.8;
    margin: 0;
    max-width: 680px;
    transition: color var(--bs-transition-speed) ease;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  FEATURE SECTION                                         ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-features {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 45px 0;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-features__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Description — Figma: 22px/28px, weight 500, opacity 0.8, right-aligned */
.bs-features__description {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: var(--bs-text-primary);
    opacity: 0.8;
    max-width: 675px;
    margin-left: auto;
    margin-bottom: 80px;
}

/* Feature cards grid — Figma: 3 columns, 33px gap */
.bs-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
}

/* Feature card — Figma: 448px height, 20px border-radius.
   Padding is on the content area only so the illustration bleeds
   edge-to-edge at the bottom and sides of the card. */
.bs-features__card {
    background: var(--bs-card-bg);
    border-radius: 20px;
    padding: 0;
    height: 448px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: background-color var(--bs-transition-speed) ease,
                transform var(--bs-transition-speed) ease;
}

/* Dark theme: translucent card bg per Figma — rgba(78, 75, 72, 0.25) */
.theme-dark .bs-features__card {
    background: rgba(78, 75, 72, 0.25);
}

.bs-features__card:hover {
    transform: translateY(-4px);
}

/* Card content — carries the 16px padding that was on the card */
.bs-features__card-content {
    padding: 16px 16px 0;
}

/* Card title — Figma: 40px/32px, weight 600, -1.6px */
.bs-features__card-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1.6px;
    margin: 16px 0 16px 0;
    color: var(--bs-text-primary);
}

/* Card description — Figma: 20px, opacity 0.7, max-width 326px */
.bs-features__card-text {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--bs-text-primary);
    /*opacity: 0.7;*/
    max-width: 326px;
    margin: 0;
}

/* Illustration — fills remaining space, SVG centered */
.bs-features__card-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    color: var(--bs-color-orange);
    padding: 0 16px;
}

.bs-features__card-img {
    width: 60%;
    height: 80%;
    display: block;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  SYSTEM SECTION                                           ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-system {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 0 0;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-system__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Section title — Figma: 20px/28px, weight 400, orange, -0.4px */
.bs-system__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    color: var(--bs-color-orange);
    margin: 0 0 32px 0;
}

/* Product cards — Figma: 4 columns, 48px gap */
.bs-system__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.bs-system__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--bs-transition-speed) ease;
}

.bs-system__card:hover {
    transform: translateY(-4px);
}

.bs-system__card:hover .bs-system__card-arrow {
    transform: translate(3px, -3px);
}

/* Orange media area — 332×332, 20px radius; orange tint on hover only */
.bs-system__card-media {
    position: relative;
    width: 100%;
    /* Use aspect-ratio so the box scales with the column width instead of
       overflowing on narrow viewports. 332 ÷ 332 = 1 / 1 */
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Orange overlay — hidden by default, revealed on card hover */
.bs-system__card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bs-color-orange);
    mix-blend-mode: color;
    opacity: 0;
    transition: opacity var(--bs-transition-speed) ease;
    pointer-events: none;
    z-index: 1;
}

.bs-system__card:hover .bs-system__card-media::after {
    opacity: 1;
}

/* Product image — fill the orange media box without distortion. */
.bs-system__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Product info — Figma: 12px top padding, plain bg */
.bs-system__card-info {
    padding: 12px 0 0;
}

.bs-system__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* Product title — Figma: 20px/28px, weight 400, -0.2px */
.bs-system__card-name {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
    /* Allow the name to shrink so it never pushes the arrow out of the row. */
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bs-system__card-arrow {
    /* Lock the icon to 24 × 24 and prevent flexbox from stretching it. */
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform var(--bs-transition-speed) ease;
}

/* Product tagline — Figma: 20px/28px, opacity 0.7 */
.bs-system__card-tagline {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--bs-text-primary);
    /*opacity: 0.7;*/
    margin: 0;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  CTA SECTION                                             ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-cta {
    padding: 80px 0;
    background-color: var(--bs-page-bg);
    transition: background-color var(--bs-transition-speed) ease;
}

/* CTA card — Figma: 182px height, horizontal layout, 20px radius */
.bs-cta__card {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    background: var(--bs-color-orange);
    color: var(--bs-color-black);
    border-radius: 20px;
    height: 182px;
    display: flex;
    align-items: center;
    padding: 0 64px;
}

/* Left column: subtitle */
.bs-cta__left {
    flex: 0 0 auto;
    margin-right: auto;
}

/* Subtitle — Figma: 20px/28px */
.bs-cta__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

/* Right column: title + button */
.bs-cta__right {
    flex: 0 0 auto;
}

/* CTA title — Figma: 80px/66px, weight 500, -1.8px */
.bs-cta__title {
    font-size: 80px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 0 0 12px 0;
}

/* CTA button — Figma: 20px/28px, weight 500, -0.4px */
.bs-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bs-color-black);
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-cta__button:hover {
    opacity: 0.7;
}

/* Light theme: white text on the orange CTA card for contrast */
.theme-light .bs-cta__card {
    color: #ffffff;
}

.theme-light .bs-cta__button {
    color: #ffffff;
}

/* Arrow SVG has a hardcoded dark fill; invert it to white in light mode */
.theme-light .bs-cta__arrow {
    filter: brightness(0) invert(1);
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  TESTIMONIALS SECTION                                    ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-testimonials {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 0 0;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-testimonials__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Section title — Figma: 20px/28px, weight 400, orange, -0.4px */
.bs-testimonials__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    color: var(--bs-color-orange);
    margin: 0 0 48px 0;
}

/* Statistics row — Figma: evenly spaced, centered */
.bs-testimonials__stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
    text-align: center;
}

.bs-testimonials__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Stat number — Figma: 80px, weight 500, -1.6px */
.bs-testimonials__stat-number {
    font-size: 80px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.6px;
    color: var(--bs-text-primary);
    margin-bottom: 16px;
}

/* Stat label — Figma: 50px/41px, weight 500, -1px, opacity 0.7 */
.bs-testimonials__stat-label {
    font-size: 50px;
    font-weight: 500;
    line-height: 41px;
    letter-spacing: -1px;
    color: var(--bs-text-primary);
    opacity: 0.7;
}

/* Testimonial card — Figma: 607px min-height, two-column, 20px radius */
.bs-testimonials__card {
    background: var(--bs-card-bg);
    border-radius: 20px;
    padding: 32px;
    min-height: 607px;
    display: flex;
    gap: 48px;
    margin: 0;
    transition: background-color var(--bs-transition-speed) ease;
}

/* Dark theme: translucent card bg per Figma */
.theme-dark .bs-testimonials__card {
    background: rgba(78, 75, 72, 0.25);
}

/* Left column: company logo — Figma: 129×100 */
.bs-testimonials__card-left {
    flex: 0 0 auto;
    width: 249px;
}

.bs-testimonials__card-logo {
    width: 129px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--bs-text-primary);
}

/* Right column: quote + author */
.bs-testimonials__card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bs-testimonials__quote {
    margin: 0 0 auto 0;
}

/* Quote text — Figma: 30px/36px, weight 500 */
.bs-testimonials__quote p {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    color: var(--bs-text-primary);
    margin: 0 0 24px 0;
}

.bs-testimonials__quote p:last-child {
    margin-bottom: 0;
}

/* Author — Figma: 22px, weight 500, opacity 0.7 */
.bs-testimonials__author {
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    color: var(--bs-text-primary);
    opacity: 0.7;
    margin-top: 40px;
}

/* ── Carousel container ──────────────────────────────────── */
.bs-testimonials__carousel {
    /* Tall enough for the longest slide at full desktop width */
    min-height: 600px;
}

/* Mobile wrapper — hidden on desktop, shown on mobile */
.bs-testimonials__mobile {
    display: none;
}

/* Remove MudCarousel default background so the card bg shows through */
.bs-testimonials__carousel .mud-carousel-item {
    background: transparent;
}

/* ── Responsive: tablet — narrower columns wrap more text ── */
@media (max-width: 1024px) {
    .bs-testimonials__carousel {
        min-height: 800px;
    }

    .bs-testimonials__quote p {
        font-size: 22px;
        line-height: 30px;
    }

    .bs-testimonials__author {
        font-size: 18px;
    }
}

/* ── Responsive: mobile — swap to content-adaptive wrapper ─ */
@media (max-width: 768px) {
    /* Hide MudCarousel on mobile */
    .bs-testimonials__carousel {
        display: none !important;
    }

    /* Show the simple mobile wrapper — height adapts to content */
    .bs-testimonials__mobile {
        display: block;
    }

    /* Stack card columns */
    .bs-testimonials__card {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        min-height: auto;
    }

    .bs-testimonials__card-left {
        width: 100%;
    }

    .bs-testimonials__quote p {
        font-size: 20px;
        line-height: 28px;
    }

    .bs-testimonials__author {
        font-size: 16px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .bs-testimonials__quote p {
        font-size: 18px;
        line-height: 26px;
    }
}

/* ── Dots — outside container, orange per Figma ──────────── */
.bs-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 32px 0 48px;
}

.bs-testimonials__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: var(--bs-color-orange);
    opacity: 0.35;
    cursor: pointer;
    padding: 0;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-testimonials__dot--active {
    opacity: 1;
}

.bs-testimonials__dot:hover {
    opacity: 0.65;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  COMPLIANCE SECTION                                      ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-compliance {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 80px 0;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

/* Compliance grid — Figma: 3 columns centered, large gap */
.bs-compliance__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 102px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.bs-compliance__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

/* Icon — Figma: 88×88 dotted globe */
.bs-compliance__icon {
    width: 88px;
    height: 88px;
}

/* Compliance text — Figma: 30px/32px, weight 600, -1.6px, max-width 300px */
.bs-compliance__text {
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1.6px;
    margin: 0;
    color: var(--bs-text-primary);
    max-width: 300px;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  FOOTER                                                  ║
   ╚═══════════════════════════════════════════════════════════╝ */

/* Footer: orange bg + black text always — reduced height per design feedback */
.bs-footer {
    background: var(--bs-color-orange);
    color: var(--bs-color-black);
    min-height: 403px;
    padding: 25px 0;
}

.bs-footer__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Bottom bar — copyright left, links right */
.bs-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

/* Copyright — Figma: 20px/28px */
.bs-footer__copyright {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

/* Footer links — Figma: 94px gap */
.bs-footer__links {
    display: flex;
    gap: 94px;
}

/* Footer link — Figma: 20px/28px */
.bs-footer__link {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--bs-color-black);
    text-decoration: none;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-footer__link:hover {
    opacity: 0.7;
}

/* Brand wordmark at footer bottom */
.bs-footer__brand {
    display: block;
    text-align: center;
    overflow: hidden;
}

.bs-footer__brand-logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    /* Shift Logo_light_beige to #101820 */
    filter: brightness(0) invert(4%) sepia(21%) saturate(2462%) hue-rotate(179deg) brightness(97%) contrast(92%);
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  SOLUTIONS HERO SECTION                                  ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-solutions-hero {
    width: 100%;
    padding-top: 77px;
}

/* Hero image area with orange overlay — Figma: 466px, 20px radius, 31px side margins */
.bs-solutions-hero__media {
    position: relative;
    height: 550px;
    max-width: calc(var(--bs-max-width) - 64px);
    width: calc(100% - 64px);
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.bs-solutions-hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bs-solutions-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.bs-solutions-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bs-color-orange);
    mix-blend-mode: color;
}

.bs-solutions-hero__media-content {
    position: absolute;
    bottom: 48px;
    left: 48px;
    z-index: 1;
}

/* Title — Figma: 60px/66px, weight 500, -1.8px, white */
.bs-solutions-hero__title {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    color: #ffffff;
    margin: 0;
}

/* Content below hero image — page background */
.bs-solutions-hero__below {
    background-color: var(--bs-page-bg);
    padding: 31px 0 0;
    transition: background-color var(--bs-transition-speed) ease;
}

.bs-solutions-hero__below-inner {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Scroll CTA — Figma: 20px, orange, -0.4px, top-left of its column */
.bs-solutions-hero__scroll-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bs-color-orange);
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    white-space: nowrap;
    align-self: start;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-solutions-hero__scroll-cta:hover {
    opacity: 0.7;
}

.bs-solutions-hero__info {
    min-width: 0;
}

/* Subtitle — Figma: 60px/66px, weight 500, -1.8px */
.bs-solutions-hero__subtitle {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 0 0 32px;
    color: var(--bs-text-primary);
    transition: color var(--bs-transition-speed) ease;
}

/* Description — Figma: 22px/28px, weight 500, opacity 0.8 */
.bs-solutions-hero__text {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: var(--bs-text-primary);
    opacity: 0.8;
    margin: 0;
    max-width: 680px;
    transition: color var(--bs-transition-speed) ease;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  SOLUTIONS OVERVIEW SECTION                              ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-solutions-overview {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 20px 0 0;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-solutions-overview__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* 4-column grid — Figma: 332px cards, 32px gap for better spacing */
.bs-solutions-overview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.bs-solutions-overview__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 8px;
}

/* Card media — Figma: square aspect, rounded, white bg */
.bs-solutions-overview__card-media {
    background: var(--bs-card-bg);
    border-radius: 20px;
    padding: 16px;
    height: 20.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: background-color var(--bs-transition-speed) ease, transform var(--bs-transition-speed) ease;
}

.theme-dark .bs-solutions-overview__card-media {
    background-color: var(--bs-surface);
}

.bs-solutions-overview__card-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Card content */
.bs-solutions-overview__card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
    text-align: center;
}

/* Card title — Figma: 20px/28px, weight 400, -0.2px */
.bs-solutions-overview__card-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.2px;
    margin: 0;
    color: var(--bs-text-primary);
}

/* Card description — Figma: 20px/28px, opacity 0.7 */
.bs-solutions-overview__card-description {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: var(--bs-text-primary);
    /*opacity: 0.7;*/
    margin: 0;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  SOLUTIONS ACCORDION SECTION                             ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-solutions-accordion {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 80px 0;
    transition: background-color var(--bs-transition-speed) ease, color var(--bs-transition-speed) ease;
}

.bs-solutions-accordion__divider-wrap {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.bs-solutions-accordion__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.bs-solutions-accordion__header {
    flex-shrink: 0;
    padding-top: 28px;
}

/* Section title — Figma: 20px/28px, orange, -0.4px */
.bs-solutions-accordion__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    color: var(--bs-color-orange);
    margin: 0;
}

/* Accordion list — right-aligned per Figma */
.bs-solutions-accordion__list {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 856px;
    margin-left: auto;
}

/* Accordion item (button) */
.bs-solutions-accordion__item {
    background: none;
    border: none;
    padding: 24px 0;
    cursor: pointer;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: opacity var(--bs-transition-speed) ease;
    width: 100%;
    color: inherit;
    font-family: var(--bs-font-family);
    border-top: 1px solid var(--bs-divider);
}

.bs-solutions-accordion__item:first-child {
    border-top: none;
}

.bs-solutions-accordion__item:hover {
    opacity: 0.8;
}

/* Item header (title + icon) */
.bs-solutions-accordion__item-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
}

/* Text group (title + subtitle stacked) */
.bs-solutions-accordion__item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

/* Item title — Figma: 60px/66px, weight 500, -1.8px */
.bs-solutions-accordion__item-title {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 0;
    color: var(--bs-text-primary);
}

/* Item icon */
.bs-solutions-accordion__item-icon {
    flex-shrink: 0;
    margin-left: auto;
    transition: transform var(--bs-transition-speed) ease;
}

.theme-dark .bs-solutions-accordion__item-icon {
    filter: brightness(0) invert(1);
}

/* Item content (visible when expanded) */
.bs-solutions-accordion__item-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

/* Item subtitle — Figma: 28px/normal, weight 500 */
.bs-solutions-accordion__item-subtitle {
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    color: var(--bs-text-primary);
}

/* Item description — Figma: 28px/normal, weight 400 Changed by RK 260407*/
.bs-solutions-accordion__item-description {
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    color: var(--bs-text-primary);
}

/* Bullet list with proper text wrapping */
.bs-solutions-accordion__item-description ul {
    list-style-position: outside;
    margin: 0;
    padding-left: 24px;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  RESPONSIVE BREAKPOINTS                                  ║
   ╚═══════════════════════════════════════════════════════════╝ */

/* Large tablet: ≤ 1200px */
@media (max-width: 1200px) {
    .bs-cta__card {
        height: auto;
        flex-direction: column;
        padding: 48px 64px;
        align-items: flex-start;
    }

    .bs-cta__left {
        margin-right: 0;
        margin-bottom: 24px;
    }

    .bs-cta__title {
        font-size: 60px;
        line-height: 56px;
    }

    .bs-testimonials__stat-number {
        font-size: 60px;
    }

    .bs-testimonials__stat-label {
        font-size: 36px;
        line-height: 32px;
    }
}

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
    .bs-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-features__grid .bs-features__card:last-child {
        grid-column: 1 / -1;
    }

    .bs-system__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-compliance__container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 32px;
    }

    .bs-compliance__container .bs-compliance__item:last-child {
        grid-column: 1 / -1;
    }

    }

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
    .bs-hero__media {
        height: 400px;
        width: calc(100% - 32px);
    }

    .bs-hero__below-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bs-hero__title {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-features__description {
        margin-left: 0;
        font-size: 18px;
        line-height: 26px;
    }

    .bs-features__grid {
        grid-template-columns: 1fr;
    }

    .bs-features__grid .bs-features__card:last-child {
        grid-column: auto;
    }

    .bs-features__card {
        height: 360px;
    }

    .bs-features__card-title {
        font-size: 32px;
        line-height: 28px;
    }

    .bs-system__grid {
        grid-template-columns: 1fr;
    }

    .bs-testimonials__stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .bs-testimonials__stat {
        flex-basis: calc(50% - 16px);
    }

    .bs-testimonials__card {
        flex-direction: column;
        min-height: auto;
    }

    .bs-testimonials__card-left {
        width: auto;
    }

    .bs-testimonials__quote p {
        font-size: 22px;
        line-height: 30px;
    }

    .bs-testimonials__author {
        font-size: 18px;
    }

    .bs-compliance__container {
        grid-template-columns: 1fr;
        padding: 0 32px;
    }

    .bs-compliance__container .bs-compliance__item:last-child {
        grid-column: auto;
    }

    .bs-compliance__text {
        font-size: 24px;
        line-height: 28px;
    }

    .bs-cta__card {
        margin-left: 16px;
        margin-right: 16px;
        padding: 32px;
    }

    .bs-cta__title {
        font-size: 48px;
        line-height: 48px;
    }

    .bs-footer__heading,
    .bs-footer__email {
        font-size: 28px;
        line-height: 34px;
    }

    /* Stack nav links vertically so long labels like "BrightSentinel Cloud"
       never wrap or overflow on narrow viewports. */
    .bs-footer__links {
        flex-direction: column;
        gap: 12px;
    }

    .bs-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Remove the desktop fixed height and shrink the top-row gap so
       there is no empty space between the copy and the logo. */
    .bs-footer {
        min-height: 0;
    }

    }

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
    .bs-hero__media {
        height: 320px;
        width: calc(100% - 24px);
    }

    .bs-hero__title {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-features__card {
        height: 320px;
    }

    .bs-features__card-title {
        font-size: 28px;
        line-height: 24px;
    }

    .bs-testimonials__stat {
        flex-basis: 100%;
    }

    .bs-testimonials__stat-number {
        font-size: 48px;
    }

    .bs-testimonials__stat-label {
        font-size: 28px;
        line-height: 24px;
    }

    .bs-cta__title {
        font-size: 36px;
        line-height: 38px;
    }

    .bs-footer__heading,
    .bs-footer__email {
        font-size: 24px;
        line-height: 30px;
    }
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  SOLUTIONS RESPONSIVE BREAKPOINTS                        ║
   ╚═══════════════════════════════════════════════════════════╝ */

@media (max-width: 1024px) {
    .bs-solutions-overview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-solutions-accordion__container {
        flex-direction: column;
        gap: 24px;
    }

    .bs-solutions-accordion__list {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .bs-solutions-hero__media {
        height: 400px;
        width: calc(100% - 32px);
    }

    .bs-solutions-hero__title {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-solutions-hero__media-content {
        bottom: 32px;
        left: 32px;
    }

    .bs-solutions-hero__below-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bs-solutions-hero__subtitle {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-solutions-overview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-solutions-accordion__item-title {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-solutions-accordion__item-subtitle,
    .bs-solutions-accordion__item-description {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bs-solutions-hero__media {
        height: 320px;
        width: calc(100% - 24px);
    }

    .bs-solutions-hero__title {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-solutions-hero__subtitle {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-solutions-overview__grid {
        grid-template-columns: 1fr;
    }

    .bs-solutions-accordion__item-title {
        font-size: 28px;
        line-height: 32px;
    }
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  ABOUT — HERO SECTION                                   ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-about-hero {
    width: 100%;
    padding-top: 77px;
}

/* Hero image area with orange overlay — Figma: 544px, 20px radius, ~31px side margins */
.bs-about-hero__media {
    position: relative;
    height: 544px;
    max-width: calc(var(--bs-max-width) - 64px);
    width: calc(100% - 64px);
    margin: 0 auto;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

.bs-about-hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Orange colour overlay (multiply) matching Figma */
.bs-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.bs-about-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bs-color-orange);
    mix-blend-mode: color;
}

.bs-about-hero__media-content {
    position: absolute;
    bottom: 48px;
    left: 48px;
    z-index: 1;
}

/* Title — Figma: 60px/66px, bold, -1.8px, cream/white */
.bs-about-hero__title {
    font-size: 60px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: -1.8px;
    color: var(--bs-color-cream);
    margin: 0;
}

/* Content below hero image — page background */
.bs-about-hero__below {
    background-color: var(--bs-page-bg);
    padding: 32px 0 0;
    transition: background-color var(--bs-transition-speed) ease;
}

.bs-about-hero__below-inner {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Scroll CTA — Figma: 20px, orange, -0.4px */
.bs-about-hero__scroll-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bs-color-orange);
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    flex-shrink: 0;
    white-space: nowrap;
    padding-top: 8px;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-about-hero__scroll-cta:hover {
    opacity: 0.7;
}

.bs-about-hero__info {
    min-width: 0;
}

/* Description — Figma: 22px/28px, weight 500 */
.bs-about-hero__text {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: var(--bs-text-primary);
    margin: 0 0 12px;
    transition: color var(--bs-transition-speed) ease;
}

.bs-about-hero__text:last-child {
    margin-bottom: 0;
}

.bs-about-hero__text strong {
    font-weight: 700;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  ABOUT — PILLARS SECTION (3 cards)                      ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-about-pillars {
    width: 100%;
    background-color: var(--bs-page-bg);
    transition: background-color var(--bs-transition-speed) ease;
    padding: 80px 0 80px;
}

.bs-about-pillars__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.bs-about-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card — Figma: 443px, 20px radius, 2px orange border, cream bg, 16px padding */
.bs-about-pillars__card {
    background: var(--bs-card-bg);
    border: 2px solid var(--bs-color-orange);
    border-radius: var(--bs-border-radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

/* Card title — Figma: 36px, semi-bold, -1.6px */
.bs-about-pillars__card-title {
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.6px;
    color: var(--bs-text-primary);
    margin: 0;
    transition: color var(--bs-transition-speed) ease;
}

/* Card subtitle — Figma: 20px, regular, dark-gray */
.bs-about-pillars__card-subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    color: var(--bs-text-secondary);
    margin: 0;
    transition: color var(--bs-transition-speed) ease;
}

/* Card bullet list — Figma: 18px, semi-bold, 36px line-height */
.bs-about-pillars__card-list {
    list-style: disc;
    margin: 0;
    padding-left: 27px;
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    /*opacity: 0.8;*/
    color: var(--bs-text-secondary);
    transition: color var(--bs-transition-speed) ease;
}

.bs-about-pillars__card-list li {
    padding-left: 10px;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  ABOUT — OUR WHY / STORY SECTION                        ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-about-story {
    width: 100%;
    background-color: var(--bs-page-bg);
    transition: background-color var(--bs-transition-speed) ease;
}

.bs-about-story__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* Left column: heading + explore link */
.bs-about-story__left {
    flex-shrink: 0;
    width: 680px;
    display: flex;
    flex-direction: column;
    gap: 400px;
}

/* Heading — Figma: 60px/66px, medium, -1.8px */
.bs-about-story__heading {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    color: var(--bs-text-primary);
    margin: 0;
    transition: color var(--bs-transition-speed) ease;
}

/* Explore link — Figma: 20px, orange, arrow icon */
.bs-about-story__explore-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bs-color-orange);
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-about-story__explore-link:hover {
    opacity: 0.7;
}

/* Right column: story prose */
.bs-about-story__right {
    flex: 1;
    max-width: 680px;
}

.bs-about-story__right p {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: var(--bs-text-primary);
    margin: 0 0 12px;
    transition: color var(--bs-transition-speed) ease;
}

.bs-about-story__right p:last-child {
    margin-bottom: 0;
}

.bs-about-story__right strong {
    font-weight: 700;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  ABOUT — FOUNDERS SECTION                               ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-about-founders {
    width: 100%;
    background-color: var(--bs-page-bg);
    transition: background-color var(--bs-transition-speed) ease;
    padding: 80px 0 80px;
    
}

.bs-about-founders__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Heading — Figma: 60px/66px, medium, -1.8px */
.bs-about-founders__heading {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    color: var(--bs-text-primary);
    margin: 0 0 16px;
    transition: color var(--bs-transition-speed) ease;
}

/* Two-column founder grid */
.bs-about-founders__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

/* Founder card */
.bs-about-founders__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Photo container — square, 20px radius */
.bs-about-founders__card-media {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

.bs-about-founders__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name + arrow row */
.bs-about-founders__card-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Name — Figma: 20px, regular, -0.2px */
.bs-about-founders__card-name {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: var(--bs-text-primary);
    transition: color var(--bs-transition-speed) ease;
}

.bs-about-founders__card-arrow {
    flex-shrink: 0;
}

/* Bio — Figma: 20px/28px, regular, 70% opacity */
.bs-about-founders__card-bio {
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    color: var(--bs-text-secondary);
    /*opacity: 0.7;*/
    margin: 0;
    transition: color var(--bs-transition-speed) ease;
}

/* Closing statement — Figma: 22px/28px, medium */
.bs-about-founders__closing {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: var(--bs-text-primary);
    margin: 0;
    max-width: 100%;
    transition: color var(--bs-transition-speed) ease;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  ABOUT — RESPONSIVE BREAKPOINTS                         ║
   ╚═══════════════════════════════════════════════════════════╝ */

@media (max-width: 1200px) {
    .bs-about-story__container {
        flex-direction: column;
        gap: 32px;
    }

    .bs-about-story__left {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .bs-about-hero__media {
        height: 400px;
        width: calc(100% - 32px);
    }

    .bs-about-hero__title {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-about-hero__media-content {
        bottom: 32px;
        left: 32px;
    }

    .bs-about-hero__below-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bs-about-pillars__grid {
        grid-template-columns: 1fr;
    }

    .bs-about-pillars__card-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .bs-about-story__heading {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-about-founders__heading {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-about-founders__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bs-about-hero__media {
        height: 320px;
        width: calc(100% - 24px);
    }

    .bs-about-hero__title {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-about-story__heading {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-about-founders__heading {
        font-size: 32px;
        line-height: 36px;
    }
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  PRICING HERO SECTION                                    ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-pricing-hero {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 120px 32px 0;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-pricing-hero__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
}

/* Figma: 60px/66px, weight 500, -1.8px tracking */
.bs-pricing-hero__title {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 0;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  PRICING CARDS SECTION                                   ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-pricing-cards {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 64px 32px;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-pricing-cards__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Top row: two cards side by side */
.bs-pricing-cards__row {
    display: flex;
    gap: 16px;
    width: 100%;
}

/* Card — Figma: orange border, cream bg, 20px radius, 32px padding */
.bs-pricing-cards__card {
    flex: 1;
    background: var(--bs-card-bg);
    border: 2px solid var(--bs-color-orange);
    border-radius: var(--bs-border-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    transition: background-color var(--bs-transition-speed) ease;
}

/* Dark theme card bg */
.theme-dark .bs-pricing-cards__card {
    background: rgba(78, 75, 72, 0.25);
}

/* Add-on card — narrower, centered */
.bs-pricing-cards__card--addon {
    max-width: 1080px;
    width: 100%;
}

.bs-pricing-cards__card-intro {
    font-size: 40px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 20px 0 0 0;
    padding-left: 10px;
    width: 100%;
    max-width: var(--bs-max-width);
    text-align: left;
    align-self: flex-start;
}

/* Wrapper for intro elements to override container centering */
.bs-pricing-cards__intro-wrapper {
    width: 100%;
    max-width: var(--bs-max-width);
    align-self: flex-start;
}


/* Title — Figma: 60px/66px, weight 500, -1.8px */
.bs-pricing-cards__card-title {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 0 0 0 8px;
    width: 100%;
}

/* Feature list — Figma: 22px, weight 500 */
.bs-pricing-cards__features {
    width: 100%;
    margin: 0 0 20px 0;
    padding-left: 33px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    list-style-type: disc;
}

/* Feature list — Figma: 22px, weight 500 */
.bs-pricing-cards__heading {
    width: 100%;
    margin: 0 6px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    list-style-type: disc;
}

.bs-pricing-cards__features li {
    margin-bottom: 4px;
}

.bs-pricing-cards__features li:last-child {
    margin-bottom: 0;
}

/* Price label — Figma: 36px, weight 500, centered, pushed to bottom area */
.bs-pricing-cards__price-label {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-top: auto;
    margin-bottom: 24px;
    width: 100%;
}

/* Price pills container — positioned at fixed distance from bottom */
.bs-pricing-cards__pills {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

/* Individual pill — Figma: 169px wide, 10px radius, 16px py */
.bs-pricing-cards__pill {
    width: 169px;
    border-radius: var(--bs-border-radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark pill variant — Figma: #4e4b48 bg, white text */
.bs-pricing-cards__pill--dark {
    background: #4e4b48;
    color: #ffffff;
    transition: background-color var(--bs-transition-speed) ease, color var(--bs-transition-speed) ease;
}

.bs-pricing-cards__pill--dark:hover {
    background: var(--bs-color-orange);
    color: var(--bs-color-black);
}

/* Orange pill variant — Figma: orange bg, black text */
.bs-pricing-cards__pill--orange {
    background: var(--bs-color-orange);
    color: var(--bs-color-black);
}

/* Pill name — Figma: 20px, bold */
.bs-pricing-cards__pill-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* Pill price container */
.bs-pricing-cards__pill-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* Price amount — Figma: 18px, weight 500 */
.bs-pricing-cards__pill-amount {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

/* VAT note — Figma: very small text */
.bs-pricing-cards__pill-vat {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.8;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  PRICING CTA SECTION                                    ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-pricing-cta {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 0 32px 80px;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-pricing-cta__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
}

.bs-pricing-cta__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 64px;
}

/* Title — Figma: 60px/66px, weight 500, -1.8px */
.bs-pricing-cta__title {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 0;
}

/* Link — Figma: 20px/28px, orange, -0.4px, with arrow icon */
.bs-pricing-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bs-color-orange);
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
    white-space: nowrap;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-pricing-cta__link:hover {
    opacity: 0.7;
}

.bs-pricing-cta__link svg {
    flex-shrink: 0;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  PRICING RESPONSIVE                                       ║
   ╚═══════════════════════════════════════════════════════════╝ */

@media (max-width: 1200px) {
    .bs-pricing-hero__title {
        font-size: 48px;
        line-height: 54px;
    }

    .bs-pricing-cards__card-title {
        font-size: 42px;
        line-height: 48px;
    }

    .bs-pricing-cards__price-label {
        font-size: 28px;
    }

    .bs-pricing-cta__title {
        font-size: 48px;
        line-height: 54px;
    }
    .bs-pricing-cards__card-intro {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 1024px) {
    .bs-pricing-cards__row {
        flex-direction: column;
    }

    .bs-pricing-cards__card--addon {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .bs-pricing-hero {
        padding: 100px 20px 0;
    }

    .bs-pricing-hero__title {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-pricing-cards {
        padding: 48px 20px;
    }

    .bs-pricing-cards__card {
        padding: 24px;
    }

    .bs-pricing-cards__card-title {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -1px;
    }

    .bs-pricing-cards__features {
        font-size: 18px;
    }

    .bs-pricing-cards__price-label {
        font-size: 24px;
    }

    .bs-pricing-cards__pills {
        flex-wrap: wrap;
    }

    .bs-pricing-cta {
        padding: 0 20px 64px;
    }

    .bs-pricing-cta__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .bs-pricing-cta__title {
        font-size: 40px;
        line-height: 44px;
    }
    .bs-pricing-cards__card-intro {
        font-size: 30px;
        line-height: 36px;
    }
   
}

@media (max-width: 480px) {
    .bs-pricing-hero__title {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-pricing-cards__card-title {
        font-size: 28px;
        line-height: 34px;
    }

    .bs-pricing-cards__features {
        font-size: 16px;
    }

    .bs-pricing-cards__price-label {
        font-size: 20px;
    }

    .bs-pricing-cards__pill {
        width: 100%;
    }

    .bs-pricing-cta__title {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-pricing-cards__card-intro {
        font-size: 28px;
        line-height: 32px;
    }
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  CONTACT HERO SECTION                                    ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-contact-hero {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 120px 32px 0;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-contact-hero__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
}

/* Title — Figma: 60px/66px, weight 500, -1.8px */
.bs-contact-hero__title {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    margin: 0 0 24px;
}

/* Description — Figma: 22px/28px, weight 500, max-width 680px */
.bs-contact-hero__description {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    max-width: 680px;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  CONTACT FORM SECTION                                    ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-contact-form {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    padding: 64px 32px 80px;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-contact-form__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
}

/* Card — Figma: cream bg, 20px radius, 32px padding, horizontal layout */
.bs-contact-form__card {
    background: var(--bs-card-bg);
    border-radius: var(--bs-border-radius);
    padding: 32px;
    display: flex;
    gap: 64px;
    align-items: flex-start;
    transition: background-color var(--bs-transition-speed) ease;
}

/* Dark theme card bg */
.theme-dark .bs-contact-form__card {
    background: rgba(78, 75, 72, 0.25);
}

/* Left side — label */
.bs-contact-form__left {
    flex: 0 0 300px;
}

/* "Get in touch with us." — Figma: 20px, orange, weight 400 */
.bs-contact-form__label {
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    color: var(--bs-color-orange);
    margin: 0;
}

/* Right side — form */
.bs-contact-form__right {
    flex: 1;
    min-width: 0;
    position: relative;
}

/* Iframe — hidden until loaded, then fades in */
.bs-contact-form__iframe {
    border: none;
    height: 600px;
    width: 100%;
    transition: height 0.5s ease, opacity 0.4s ease;
    overflow: hidden;
    opacity: 0;
}

.bs-contact-form__iframe.is-loaded {
    opacity: 1;
}

/* Loading spinner — centred in the form area, removed once iframe loads */
.bs-contact-form__spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.bs-contact-form__spinner-icon {
    width: 36px;
    height: 36px;
    animation: bs-spin 0.8s linear infinite;
}

@keyframes bs-spin {
    to { transform: rotate(360deg); }
}

/* Form field wrapper */
.bs-contact-form__field {
    margin-bottom: 10px;
}

/* Input / Select — Figma: cream bg, 90px height, 24px italic placeholder */
.bs-contact-form__input {
    display: block;
    width: 100%;
    height: 90px;
    padding: 0 16px;
    background: var(--bs-color-cream);
    border: none;
    border-radius: 0;
    font-family: var(--bs-font-family);
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    line-height: 28px;
    color: var(--bs-text-primary);
    outline: none;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
    -webkit-appearance: none;
    appearance: none;
}

.bs-contact-form__input::placeholder {
    font-style: italic;
    color: var(--bs-text-secondary);
    opacity: 0.4;
}

/* Dark theme input bg — use background-color (not shorthand) to preserve
   background-image / repeat / position set on .bs-contact-form__select */
.theme-dark .bs-contact-form__input {
    background-color: rgba(78, 75, 72, 0.35);
}

/* Select dropdown arrow */
.bs-contact-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%234e4b48' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
    cursor: pointer;
}

.theme-dark .bs-contact-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23DBC8B6' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

/* Buttons row — Figma: two equal-width orange buttons, 60px height */
.bs-contact-form__buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.bs-contact-form__btn {
    flex: 1;
    height: 60px;
    background: var(--bs-color-orange);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-family: var(--bs-font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-contact-form__btn:hover {
    opacity: 0.85;
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  CONTACT RESPONSIVE                                      ║
   ╚═══════════════════════════════════════════════════════════╝ */

@media (max-width: 1200px) {
    .bs-contact-hero__title {
        font-size: 48px;
        line-height: 54px;
    }

    .bs-contact-hero__description {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .bs-contact-form__card {
        flex-direction: column;
        gap: 24px;
    }

    .bs-contact-form__left {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bs-contact-hero {
        padding: 100px 20px 0;
    }

    .bs-contact-hero__title {
        font-size: 40px;
        line-height: 44px;
    }

    .bs-contact-hero__description {
        font-size: 18px;
        line-height: 26px;
    }

    .bs-contact-form {
        padding: 48px 20px 64px;
    }

    .bs-contact-form__card {
        padding: 24px;
    }

    .bs-contact-form__input {
        height: 72px;
        font-size: 20px;
    }

    .bs-contact-form__btn {
        height: 52px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bs-contact-hero__title {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-contact-hero__description {
        font-size: 16px;
        line-height: 24px;
    }

    .bs-contact-form__input {
        height: 60px;
        font-size: 18px;
    }

    .bs-contact-form__buttons {
        flex-direction: column;
    }

    .bs-contact-form__btn {
        height: 48px;
    }
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  TEXT PAGE (LEGAL / POLICY PAGES)                        ║
   ╚═══════════════════════════════════════════════════════════╝ */

/*
   Reusable two-column layout for long-form text pages (Privacy Policy,
   Terms of Use, etc.).  Left column is a sticky sidebar with the page
   title and metadata; right column holds all the prose content.
*/

.bs-text-page {
    width: 100%;
    background-color: var(--bs-page-bg);
    padding: 120px 0 80px;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-text-page__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left sticky sidebar */
.bs-text-page__left {
    flex-shrink: 0;
    width: 320px;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Page title — matches AboutStory heading style */
.bs-text-page__heading {
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.8px;
    color: var(--bs-text-primary);
    margin: 0;
    transition: color var(--bs-transition-speed) ease;
}

/* Date / version metadata below the heading */
.bs-text-page__meta {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--bs-text-secondary);
    margin: 0;
    transition: color var(--bs-transition-speed) ease;
}

/* Cross-link to the sibling legal page */
.bs-text-page__cross-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bs-color-orange);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-text-page__cross-link:hover {
    opacity: 0.7;
}

/* Right prose content column */
.bs-text-page__right {
    flex: 1;
    min-width: 0;
    color: var(--bs-text-primary);
    transition: color var(--bs-transition-speed) ease;
}

/* Section headings inside the prose */
.bs-text-page__right h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.6px;
    color: var(--bs-text-primary);
    margin: 48px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--bs-divider);
    transition: color var(--bs-transition-speed) ease,
                border-color var(--bs-transition-speed) ease;
}

.bs-text-page__right h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Body paragraphs */
.bs-text-page__right p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--bs-text-primary);
    margin: 0 0 16px;
    transition: color var(--bs-transition-speed) ease;
}

.bs-text-page__right p:last-child {
    margin-bottom: 0;
}

/* Inline links */
.bs-text-page__right a {
    color: var(--bs-color-orange);
    text-decoration: none;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-text-page__right a:hover {
    opacity: 0.7;
}

.bs-text-page__right strong {
    font-weight: 600;
}

/* Definition / data tables */
.bs-text-page__right table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 26px;
}

.bs-text-page__right th,
.bs-text-page__right td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--bs-divider);
    vertical-align: top;
    transition: border-color var(--bs-transition-speed) ease;
}

.bs-text-page__right th {
    font-weight: 600;
    width: 180px;
    white-space: nowrap;
    color: var(--bs-text-primary);
}

.bs-text-page__right td {
    color: var(--bs-text-secondary);
    transition: color var(--bs-transition-speed) ease;
}

/* Unordered / ordered lists */
.bs-text-page__right ul,
.bs-text-page__right ol {
    padding-left: 24px;
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 28px;
    color: var(--bs-text-primary);
    transition: color var(--bs-transition-speed) ease;
}

.bs-text-page__right li {
    margin-bottom: 8px;
}

.bs-text-page__right li:last-child {
    margin-bottom: 0;
}

/* ── Text page responsive ─────────────────────────────────── */

/* Tablet: stack sidebar above content */
@media (max-width: 1024px) {
    .bs-text-page__container {
        flex-direction: column;
        gap: 40px;
    }

    .bs-text-page__left {
        width: 100%;
        position: static;
        flex-direction: row;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 16px 32px;
    }

    .bs-text-page__heading {
        font-size: 40px;
        line-height: 44px;
        flex-basis: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bs-text-page {
        padding: 80px 0 60px;
    }

    .bs-text-page__container {
        padding: 0 24px;
        gap: 32px;
    }

    .bs-text-page__heading {
        font-size: 32px;
        line-height: 36px;
    }

    .bs-text-page__right h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .bs-text-page__right th {
        width: auto;
        white-space: normal;
    }
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  COOKIE CONSENT BANNER                                   ║
   ╚═══════════════════════════════════════════════════════════╝ */

.bs-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bs-surface);
    border-top: 1px solid var(--bs-divider);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    padding: 24px 0;
    animation: bs-cookie-slide-up 0.4s ease;
}

@keyframes bs-cookie-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.bs-cookie-banner__container {
    max-width: var(--bs-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Default view ── */

.bs-cookie-banner__main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.bs-cookie-banner__text {
    flex: 1;
}

.bs-cookie-banner__text p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: var(--bs-text-primary);
}

.bs-cookie-banner__link {
    color: var(--bs-color-orange);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-cookie-banner__link:hover {
    opacity: 0.7;
}

.bs-cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.bs-cookie-banner__btn {
    padding: 10px 20px;
    border-radius: var(--bs-border-radius-sm);
    font-family: var(--bs-font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    border: none;
    transition: opacity var(--bs-transition-speed) ease,
                background-color var(--bs-transition-speed) ease;
    white-space: nowrap;
}

.bs-cookie-banner__btn:hover {
    opacity: 0.85;
}

.bs-cookie-banner__btn--accept {
    background: var(--bs-color-orange);
    color: #ffffff;
}

.bs-cookie-banner__btn--reject {
    background: transparent;
    color: var(--bs-text-primary);
    border: 1.5px solid var(--bs-divider);
}

.bs-cookie-banner__btn--settings {
    background: transparent;
    color: var(--bs-text-secondary);
    border: none;
    text-decoration: underline;
    padding-left: 0;
    padding-right: 0;
}

/* ── Settings view ── */

.bs-cookie-banner__settings {
    max-width: 640px;
}

.bs-cookie-banner__settings-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--bs-text-primary);
    margin: 0 0 20px;
}

.bs-cookie-banner__category {
    padding: 16px 0;
    border-bottom: 1px solid var(--bs-divider);
}

.bs-cookie-banner__category:last-of-type {
    border-bottom: none;
}

.bs-cookie-banner__category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bs-cookie-banner__category-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    color: var(--bs-text-primary);
}

.bs-cookie-banner__category-badge {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: var(--bs-color-orange);
    background: rgba(227, 82, 5, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
}

.bs-cookie-banner__category-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    color: var(--bs-text-secondary);
    margin: 6px 0 0;
}

/* ── Cookie banner responsive ── */

@media (max-width: 768px) {
    .bs-cookie-banner {
        padding: 20px 0;
    }

    .bs-cookie-banner__container {
        padding: 0 20px;
    }

    .bs-cookie-banner__main {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .bs-cookie-banner__actions {
        flex-wrap: wrap;
    }

    .bs-cookie-banner__btn--accept,
    .bs-cookie-banner__btn--reject {
        flex: 1;
        text-align: center;
    }
}

/* +-----------------------------------------------------------+
   ¦  404 NOT FOUND PAGE                                      ¦
   +-----------------------------------------------------------+ */

.bs-not-found {
    background-color: var(--bs-page-bg);
    color: var(--bs-text-primary);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 80px;
    transition: background-color var(--bs-transition-speed) ease,
                color var(--bs-transition-speed) ease;
}

.bs-not-found__container {
    text-align: center;
    max-width: 600px;
}

.bs-not-found__title {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -4px;
    color: var(--bs-color-orange);
    margin: 0 0 16px;
}

.bs-not-found__text {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    margin: 0 0 32px;
    opacity: 0.8;
}

.bs-not-found__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bs-color-orange);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4px;
    transition: opacity var(--bs-transition-speed) ease;
}

.bs-not-found__link:hover {
    opacity: 0.7;
}
