@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --color-dark: #122d30;
    /* deep teal background */
    --color-primary: #87c76c;
    /* fresh green accent */
    --color-secondary: #cce5b3;
    /* pastel green for light areas */
    --color-light: #f7fcf5;
    /* very light background */
    --color-muted: #6c757d;
    /* muted grey for subtle text */
    --placeholder-weight: 300;
}

body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    background-color: var(--color-light);
    color: var(--color-dark);
}

/* Navbar styles */
.navbar {
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    min-height: 72px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar.navbar-transparent {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: none;
}

.navbar-leading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    display: block;
    height: 40px;
}

.navbar .offcanvas {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar .offcanvas-header {
    border-bottom: 1px solid rgba(11, 60, 73, 0.1);
}

.navbar .offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 2rem;
}

.navbar .offcanvas-body .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.navbar .offcanvas-body .navbar-nav .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1.25rem;
    transition: color 0.2s;
    padding: 0;
}

.navbar .offcanvas-body .navbar-nav .nav-link:hover,
.navbar .offcanvas-body .navbar-nav .nav-link:focus,
.navbar .offcanvas-body .navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.auth-icons {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
}

.auth-icons .nav-icon {
    color: var(--color-dark);
    font-size: 1.3rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.auth-icons .nav-icon:hover,
.auth-icons .nav-icon:focus {
    color: var(--color-primary);
}

.navbar .btn-outline-secondary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.navbar .btn-outline-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn,
.btn-primary,
.btn-outline-light,
.btn-outline-secondary {
    border-radius: 999px;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.navbar .btn-primary:hover {
    background-color: #74b75c;
}

@media (min-width: 992px) {
    .navbar-brand img.desktop-logo {
        height: 42px;
    }

    .navbar .offcanvas {
        position: static;
        transform: none;
        visibility: visible;
        background-color: transparent;
        backdrop-filter: none;
        box-shadow: none;
        flex-grow: 1;
    }

    .navbar .offcanvas.offcanvas-lg {
        width: auto;
    }

    .navbar .offcanvas-body {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0;
    }

    .navbar .offcanvas-body .navbar-nav {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        justify-content: center;
        width: auto;
        margin: 0 auto;
    }

    .navbar .offcanvas-body .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .offcanvas-header {
        display: none;
    }

    .auth-icons {
        display: none !important;
    }
}

.back-to-top {
    --progress: 0deg;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.25rem;
    height: 3.25rem;
    border: none;
    border-radius: 50%;
    background: conic-gradient(var(--color-primary) var(--progress), rgba(54, 87, 91, 0.15) var(--progress));
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(11, 60, 73, 0.25);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1040;
}

.back-to-top::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 3px rgba(11, 60, 73, 0.08);
}

.back-to-top__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.back-to-top:hover::before,
.back-to-top:focus-visible::before {
    background: #ffffff;
}

.back-to-top:hover .back-to-top__icon,
.back-to-top:focus-visible .back-to-top__icon {
    color: var(--color-primary);
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(54, 87, 91, 0.25);
}

@media (max-width: 575.98px) {
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 3rem;
        height: 3rem;
    }
}

.monitoring-title {
    display: inline-flex;
    align-items: stretch;
    padding: 0;
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: 0.01em;
}

.monitoring-title__primary,
.monitoring-title__secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.25rem;
}

.monitoring-title__primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.monitoring-title__secondary {
    background: var(--color-primary);
    color: var(--color-dark);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.monitoring-illustration {
    max-width: 360px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .monitoring-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        gap: 0.5rem;
    }

    .monitoring-title__primary,
    .monitoring-title__secondary {
        padding: 0.35rem 1rem;
    }

    .monitoring-illustration {
        max-width: 280px;
    }
}

/* Hero section */
.hero-partners {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hero-partners__wrapper {
    background-color: rgba(19, 22, 29, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 1.25rem 0;
}

.hero-partners__logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.hero-partners__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
}

.hero-partners__logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-partners__logo:hover,
.hero-partners__logo:focus {
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .hero-partners__wrapper {
        padding: 1rem 0;
    }

    .hero-partners__logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }

    .hero-partners__logo {
        height: 28px;
    }
}

.hero-section {
    min-height: 100vh;
    position: relative;
    padding-top: 120px;
    padding-bottom: 100px;
    background-color: #13161d;
}

.homepage-top {
    overflow: hidden;
}

.homepage-top__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('../img/video_cover.webp') center / cover no-repeat;
    z-index: 0;
    overflow: hidden;
}

.homepage-top__video.is-playing {
    background: none;
}

.homepage-top__video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.homepage-top__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

.hero-heading {
    color: var(--color-dark);
}

.hero-subtitle {
    color: var(--color-dark);
    opacity: 0.85;
}

.hero-section .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.hero-section .btn-primary:hover {
    background-color: #74b75c;
    border-color: #74b75c;
    color: var(--color-dark);
}

.hero-section .btn-outline-light {
    border-color: var(--color-dark);
    color: var(--color-dark);
    background-color: transparent;
}

.hero-section .btn-outline-light:hover {
    background: linear-gradient(135deg, #546C6E 0%, #122d30 100%);
    color: #ffffff;
    border-color: var(--color-dark);
}

/* Section backgrounds */
.section-dark {
    background: linear-gradient(135deg, #546C6E 0%, #122d30 100%);
    color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-light {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--color-primary);
}

.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
    color: var(--color-dark);
}

/* Feature cards */
.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}

/* Plan cards */
.plan-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card.featured {
    background: linear-gradient(135deg, #546C6E 0%, #122d30 100%);
    color: #ffffff;
}

.plan-card .btn {
    border-radius: 25px;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}

/* Metric cards */
.metric-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}

.trusted-section {
    background-color: #fbfff4;
    position: relative;
}

.trusted-metrics {
    --gap: 1rem;
}

.trusted-metric-card {
    background: #ffffff;
    border: 1px solid rgba(16, 65, 73, 0.08);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 24px rgba(16, 65, 73, 0.08);
    height: 100%;
}

.trusted-metric-card p {
    color: rgba(16, 65, 73, 0.7);
}

.trusted-metric-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16, 65, 73, 0.08);
    font-size: 1.35rem;
}

.trusted-map {
    width: 100%;
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(16, 65, 73, 0.12);
    box-shadow: 0 18px 36px rgba(16, 65, 73, 0.12);
}

@media (max-width: 991.98px) {
    .trusted-map {
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .trusted-map {
        height: 260px;
    }
}

/* Footer styles */

.footer {
    background: linear-gradient(135deg, #546C6E 0%, #122d30 100%);
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 40px;
}

.footer h5,
.footer h6 {
    color: #ffffff;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.footer .btn-primary:hover {
    /* Slightly darkened primary colour on hover */
    background-color: #74b75c;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

/* Utility classes overrides */
.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: #6fb855;
    border-color: #6fb855;
}

/* Remove list bullets where appropriate */
ul.list-unstyled li i {
    color: var(--color-primary);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .navbar .btn {
        display: none;
    }
}

/* Hero carousel controls */
.hero-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    opacity: 1;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    z-index: 5;
}

.hero-carousel-control--prev { left: 1rem; }
.hero-carousel-control--next { right: 1rem; }

.hero-carousel-control:hover,
.hero-carousel-control:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.9);
}

.hero-carousel-control:active {
    transform: translateY(-50%) scale(0.98);
}

.hero-carousel-control__icon {
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .hero-carousel-control { width: 42px; height: 42px; }
}

/* Auth pages */
.auth-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, rgba(11, 60, 73, 0.92) 0%, rgba(18, 45, 48, 0.9) 60%, rgba(49, 80, 88, 0.88) 100%);
    overflow: hidden;
}

.auth-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(135, 199, 108, 0.28), transparent 55%);
    pointer-events: none;
}

.register-hero::after {
    background: radial-gradient(circle at top left, rgba(125, 172, 255, 0.25), transparent 55%);
}

.auth-card {
    position: relative;
    padding: 2.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.auth-card .form-control,
.auth-card .form-select {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 300;
    font-style: normal;
}

.auth-card .form-control::placeholder,
.auth-card .form-select option {
    color: var(--bs-secondary-color);
    font-weight: var(--placeholder-weight);
    opacity: 0.7;
}

.auth-card .form-control:focus,
.auth-card .form-select:focus {
    border-color: rgba(135, 199, 108, 0.6);
    box-shadow: 0 0 0 0.25rem rgba(135, 199, 108, 0.25);
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-highlight-card {
    padding: 1.1rem 1.2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    height: 100%;
}

.auth-highlight-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(135, 199, 108, 0.2);
    color: var(--color-secondary);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.auth-feature-tile,
.auth-feature-panel,
.support-card {
    border-radius: 18px;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.auth-feature-tile__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 65, 73, 0.08);
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.auth-video-card .ratio {
    border-radius: 24px;
    overflow: hidden;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.support-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.support-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(135, 199, 108, 0.18);
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.auth-benefits li {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .auth-hero {
        padding-top: 120px;
        padding-bottom: 90px;
    }

    .auth-card {
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .auth-hero {
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .auth-card {
        padding: 1.75rem;
    }
}

/* Pricing page */
.pricing-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 120px;
    background: linear-gradient(140deg, rgba(11, 60, 73, 0.95) 0%, rgba(18, 45, 48, 0.92) 50%, rgba(50, 84, 88, 0.9) 100%);
    overflow: hidden;
}

.pricing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(135, 199, 108, 0.35), transparent 50%);
    pointer-events: none;
}

.pricing-hero .badge {
    background-color: rgba(135, 199, 108, 0.15) !important;
    color: var(--color-secondary) !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-hero .btn-lg {
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
}

.pricing-hero-card {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.pricing-hero-card__header {
    margin-bottom: 1.5rem;
}

.pricing-hero-stat {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.25rem;
}

.pricing-plan {
    border-radius: 20px;
    border: 1px solid rgba(17, 63, 73, 0.08);
    box-shadow: 0 18px 36px rgba(12, 56, 66, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(12, 56, 66, 0.12);
}

.pricing-plan.featured {
    background: linear-gradient(135deg, rgba(18, 45, 48, 0.95), rgba(11, 60, 73, 0.9));
}

.pricing-plan.enterprise {
    background: #ffffff;
}

.pricing-plan__price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
}

.pricing-plan__price-note {
    font-size: 0.85rem;
    color: rgba(12, 56, 66, 0.65);
}

.pricing-plan.featured .pricing-plan__price,
.pricing-plan.featured .pricing-plan__price-note {
    color: #ffffff;
}

.pricing-plan.enterprise .pricing-plan__price {
    color: var(--color-dark);
}

.pricing-benefit-card {
    flex: 1;
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-benefit-card__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(135, 199, 108, 0.15);
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.pricing-feature-tile {
    padding: 1.75rem;
    border-radius: 18px;
    background: #ffffff;
    height: 100%;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.pricing-feature-tile__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(135, 199, 108, 0.12);
    color: var(--color-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pricing-faq .accordion-item {
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(15, 50, 58, 0.12);
    overflow: hidden;
}

.pricing-faq .accordion-button {
    font-weight: 600;
    padding: 1.1rem 1.25rem;
}

.pricing-faq .accordion-button:not(.collapsed) {
    background: rgba(135, 199, 108, 0.15);
    color: var(--color-dark);
}

.pricing-contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.pricing-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--placeholder-weight);
    opacity: 0.7;
}

@media (max-width: 991.98px) {
    .pricing-hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .pricing-hero-card {
        margin-top: 3rem;
    }
}

@media (max-width: 575.98px) {
    .pricing-plan__price {
        font-size: 1.5rem;
    }
}
