/*
 * Modern public landing page
 * Keeps the current brand palette and every existing image intact.
 */

.landing-page {
    --landing-accent: #2ca58d;
    --landing-ink: #111936;
    --landing-heading: #343a40;
    --landing-surface: #ffffff;
    --landing-muted-surface: #eceff1;
    --landing-border: rgba(17, 25, 54, 0.1);
    --landing-border-strong: rgba(17, 25, 54, 0.18);
    --landing-shadow-sm: 0 12px 32px rgba(17, 25, 54, 0.07);
    --landing-shadow-lg: 0 28px 70px rgba(17, 25, 54, 0.12);
    --landing-radius-sm: 14px;
    --landing-radius: 22px;
    --landing-radius-lg: 30px;
    background: var(--landing-surface);
    color: var(--landing-heading);
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

.landing-page section {
    position: relative;
    padding: clamp(72px, 8vw, 112px) 0;
    scroll-margin-top: 104px;
}

.landing-page .container {
    position: relative;
    z-index: 2;
}

.landing-page .title {
    margin-bottom: 58px;
}

.landing-page .title > [class*="col-"] {
    width: 100%;
    max-width: 960px;
}

.landing-page .title h2,
.landing-page section h2 {
    color: var(--landing-ink);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.landing-page .title h2 {
    font-size: clamp(1.35rem, 3.15vw, 3.15rem);
    white-space: nowrap;
}

.landing-page .title p {
    max-width: 680px;
    margin: 18px auto 0;
    color: rgba(52, 58, 64, 0.72);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Floating navigation */
.landing-page > .navbar {
    position: fixed;
    top: 14px;
    left: 50%;
    width: min(calc(100% - 40px), 1320px);
    padding: 12px 14px;
    border: 1px solid rgba(17, 25, 54, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(17, 25, 54, 0.08);
    backdrop-filter: blur(18px) saturate(145%);
    transform: translateX(-50%);
    transition: box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.landing-page > .navbar.top-nav-collapse {
    border-color: rgba(17, 25, 54, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(17, 25, 54, 0.12);
}

.landing-page .navbar-brand img {
    max-height: 48px;
    width: auto;
}

.landing-page .navbar .navbar-nav {
    align-items: center;
    gap: 2px;
}

.landing-page .navbar .nav-link {
    position: relative;
    padding: 11px 12px;
    color: rgba(17, 25, 54, 0.68);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    white-space: nowrap;
    transition: color 180ms ease, transform 180ms ease;
}

.landing-page .navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 2px;
    border-radius: 99px;
    background: var(--landing-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.landing-page .navbar .nav-link:hover,
.landing-page .navbar .nav-link:focus,
.landing-page .navbar .nav-link.active {
    color: var(--landing-ink);
    transform: translateY(-1px);
}

.landing-page .navbar .nav-link:hover::after,
.landing-page .navbar .nav-link:focus::after,
.landing-page .navbar .nav-link.active::after {
    transform: scaleX(1);
}

.landing-page .navbar .btn,
.landing-page header .btn {
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid rgba(44, 165, 141, 0.42);
    border-radius: 12px;
    background: linear-gradient(135deg, #39b9a0 8%, #226b78 92%);
    background-size: 140% 140%;
    background-position: 0 50%;
    box-shadow: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, background-position 220ms ease;
}

.landing-page .navbar .btn:hover,
.landing-page .navbar .btn:focus,
.landing-page header .btn:hover,
.landing-page header .btn:focus {
    border-color: rgba(17, 25, 54, 0.42);
    background: linear-gradient(135deg, #39b9a0 8%, #226b78 92%);
    background-size: 140% 140%;
    background-position: 100% 50%;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: none;
}

/* Hero */
.landing-page header {
    min-height: 100svh;
    padding: 170px 0 120px;
    background: linear-gradient(180deg, var(--landing-surface) 0%, var(--landing-muted-surface) 100%);
    isolation: isolate;
}

.landing-page header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 26%, rgba(44, 165, 141, 0.13), transparent 24%),
        radial-gradient(circle at 18% 76%, rgba(17, 25, 54, 0.07), transparent 28%),
        linear-gradient(132deg, transparent 0 14%, rgba(17, 25, 54, 0.045) 14.1% 14.2%, transparent 14.3% 100%),
        linear-gradient(42deg, transparent 0 76%, rgba(44, 165, 141, 0.07) 76.1% 76.2%, transparent 76.3% 100%);
}

.landing-page header::after {
    opacity: 0.42;
    background-size: 68%;
}

.landing-page header h1 {
    max-width: 680px;
    margin-bottom: 28px !important;
    background: linear-gradient(112deg, var(--landing-ink) 0 64%, var(--landing-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: clamp(3rem, 4.35vw, 4.15rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.landing-page header h4 {
    max-width: 620px;
    color: rgba(52, 58, 64, 0.75) !important;
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
    font-weight: 400;
    line-height: 1.65;
}

.landing-page header .my-xl-5 {
    margin-top: 34px !important;
    margin-bottom: 38px !important;
}

.landing-page header .d-inline-flex.align-items-center {
    max-width: 610px;
    padding: 14px 18px 14px 14px;
    border: 1px solid var(--landing-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: var(--landing-shadow-sm);
    backdrop-filter: blur(12px);
}

.landing-page header .d-inline-flex .avtar {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(44, 165, 141, 0.18);
    border-radius: 15px;
    background: rgba(44, 165, 141, 0.09) !important;
}

.landing-page header .d-inline-flex h5 {
    color: rgba(17, 25, 54, 0.78);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.55;
}

.landing-page header .hero-image {
    position: relative;
    padding: 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--landing-radius-lg);
    background:
        linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.64)) padding-box,
        linear-gradient(135deg, rgba(44, 165, 141, 0.72), rgba(17, 25, 54, 0.16), rgba(44, 165, 141, 0.42)) border-box;
    box-shadow: 0 34px 90px rgba(17, 25, 54, 0.16), 0 0 0 10px rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(12px);
    transform: none !important;
}

.landing-page header .hero-image::before,
.landing-page header .hero-image::after {
    content: "";
    position: absolute;
    width: 62px;
    height: 62px;
    pointer-events: none;
}

.landing-page header .hero-image::before {
    top: 12px;
    left: 12px;
    border-top: 1px solid rgba(44, 165, 141, 0.48);
    border-left: 1px solid rgba(44, 165, 141, 0.48);
    border-radius: 14px 0 0;
}

.landing-page header .hero-image::after {
    right: 12px;
    bottom: 12px;
    border-right: 1px solid rgba(17, 25, 54, 0.22);
    border-bottom: 1px solid rgba(17, 25, 54, 0.22);
    border-radius: 0 0 14px;
}

.landing-page header .hero-image > img {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Parallel story panels */
.landing-page .landing-story {
    overflow: hidden;
    background: linear-gradient(180deg, var(--landing-surface) 0%, var(--landing-muted-surface) 100%) !important;
}

.landing-page .landing-story::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0 22%, rgba(44, 165, 141, 0.045) 22.1% 22.2%, transparent 22.3% 100%);
}

.landing-page .landing-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.landing-page .landing-story-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 40px;
    overflow: hidden;
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--landing-shadow-sm);
    flex-direction: column;
}

.landing-page .landing-story-card::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 72px;
    height: 72px;
    border-top: 1px solid rgba(17, 25, 54, 0.12);
    border-right: 1px solid rgba(17, 25, 54, 0.12);
    border-radius: 0 16px 0 0;
    pointer-events: none;
}

.landing-page .landing-story-media {
    position: relative;
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(44, 165, 141, 0.16);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 25, 54, 0.12);
}

.landing-page .landing-story-media img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.landing-page .landing-story-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.landing-page .landing-story h2 {
    min-height: 2.16em;
    margin: 0;
    font-size: clamp(1.8rem, 2.7vw, 2.7rem);
    font-weight: 700;
}

.landing-page .landing-story .text-lg {
    width: 100% !important;
    max-width: 560px;
    color: rgba(52, 58, 64, 0.72);
    line-height: 1.7;
}

.landing-page .customize-list {
    max-width: none;
    margin-bottom: 0;
}

.landing-page .customize-list li {
    gap: 12px;
    padding: 10px 0;
    color: rgba(17, 25, 54, 0.78);
    font-size: 0.95rem;
    line-height: 1.5;
}

.landing-page .customize-list li i {
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--landing-accent) 10%, var(--landing-ink) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

.landing-page .landing-story img {
    filter: none;
}

/* Feature catalog slider */
.landing-page .landing-offers {
    overflow: hidden;
    background: var(--landing-surface);
}

.landing-page .landing-offers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, calc(100% - 40px));
    height: 1px;
    background: var(--landing-border);
    transform: translateX(-50%);
}

.landing-page .offers-slider-shell {
    position: relative;
    padding: 10px 54px 52px;
}

.landing-page .offers-slider {
    overflow: hidden;
}

.landing-page .offers-slider .swiper-wrapper {
    align-items: stretch;
}

.landing-page .offers-slider .swiper-slide {
    display: flex;
    height: auto;
}

.landing-page .offer-feature-card {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    min-height: 292px;
    padding: 34px 30px 30px;
    overflow: hidden;
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 25, 54, 0.06);
    text-align: left;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.landing-page .offer-feature-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -46px;
    width: 122px;
    height: 122px;
    border: 1px solid rgba(44, 165, 141, 0.14);
    border-radius: 50%;
}

.landing-page .offer-feature-card:hover {
    border-color: rgba(44, 165, 141, 0.32);
    transform: translateY(-7px);
    box-shadow: var(--landing-shadow-sm);
}

.landing-page .offer-feature-icon {
    display: grid;
    width: 74px;
    height: 74px;
    margin-bottom: 30px;
    place-items: center;
    border: 1px solid rgba(44, 165, 141, 0.2);
    border-radius: 19px;
    background: linear-gradient(145deg, rgba(44, 165, 141, 0.11), rgba(17, 25, 54, 0.055));
    box-shadow: 0 12px 28px rgba(17, 25, 54, 0.08);
}

.landing-page .offer-feature-icon i {
    background: linear-gradient(135deg, var(--landing-accent) 10%, var(--landing-ink) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.35rem;
    -webkit-text-fill-color: transparent;
}

.landing-page .offer-feature-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 13px;
    color: var(--landing-ink);
    font-size: clamp(1rem, 1.15vw, 1.16rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
    white-space: nowrap;
}

.landing-page .offer-feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(52, 58, 64, 0.7);
    font-size: 0.93rem;
    line-height: 1.7;
}

.landing-page .offers-nav {
    position: absolute;
    top: calc(50% - 28px);
    z-index: 4;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--landing-border);
    border-radius: 50%;
    background: #fff;
    color: var(--landing-ink);
    box-shadow: var(--landing-shadow-sm);
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.landing-page .offers-nav:hover,
.landing-page .offers-nav:focus {
    background: var(--landing-ink);
    color: #fff;
    transform: translateY(-2px);
}

.landing-page .offers-button-prev {
    left: 0;
}

.landing-page .offers-button-next {
    right: 0;
}

.landing-page .offers-pagination,
.landing-page .app-slider-pagination {
    position: absolute;
    right: 0;
    bottom: 8px !important;
    left: 0;
    z-index: 4;
}

.landing-page .offers-pagination .swiper-pagination-bullet,
.landing-page .app-slider-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(17, 25, 54, 0.28);
    opacity: 1;
    transition: width 180ms ease, background-color 180ms ease;
}

.landing-page .offers-pagination .swiper-pagination-bullet-active,
.landing-page .app-slider-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 99px;
    background: var(--landing-accent);
}

/* Pricing */
.landing-page .pricingpricing {
    overflow: hidden;
    background: var(--landing-muted-surface) !important;
}

.landing-page .pricingpricing::before,
.landing-page .pricingpricing::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.landing-page .pricingpricing::before {
    top: 60px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-top: 1px solid rgba(17, 25, 54, 0.11);
    border-right: 1px solid rgba(17, 25, 54, 0.11);
    transform: rotate(45deg);
}

.landing-page .pricingpricing::after {
    right: 4%;
    bottom: 8%;
    width: 72px;
    height: 72px;
    background-image: radial-gradient(rgba(17, 25, 54, 0.17) 1px, transparent 1px);
    background-size: 10px 10px;
}

.landing-page .pricingpricing .row.text-center.justify-content-center {
    gap: 28px 0;
}

.landing-page .pricingpricing .price-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--landing-border-strong);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--landing-shadow-sm);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.landing-page .pricingpricing .price-card:hover {
    border-color: rgba(44, 165, 141, 0.38);
    transform: translateY(-9px);
    box-shadow: var(--landing-shadow-lg);
}

.landing-page .pricingpricing .price-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 42px 34px 34px;
    text-align: left;
}

.landing-page .pricingpricing .pricing-plan-card.is-featured {
    border-color: rgba(44, 165, 141, 0.5);
    background:
        linear-gradient(180deg, rgba(44, 165, 141, 0.08), rgba(255, 255, 255, 0.96) 20%),
        #fff;
}

.landing-page .pricingpricing .pricing-plan-badge {
    align-self: center;
    margin-bottom: 14px;
    padding: 7px 13px;
    border: 1px solid rgba(44, 165, 141, 0.23);
    border-radius: 99px;
    background: rgba(44, 165, 141, 0.09);
    color: #197a68;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.landing-page .pricingpricing .price-card h2 {
    color: var(--landing-ink);
    font-size: 1.8rem;
    text-align: center;
}

.landing-page .pricingpricing .price-card h2::after {
    width: 52px;
    height: 3px;
    margin-top: 16px;
    border-radius: 99px;
    background: var(--landing-accent);
}

.landing-page .pricingpricing .price-price {
    margin: 8px 0 28px;
    color: var(--landing-ink);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
    text-align: center;
}

.landing-page .pricingpricing .price-price sup {
    top: -1.55em;
    margin-left: 3px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
}

.landing-page .pricingpricing .price-price span {
    color: rgba(17, 25, 54, 0.62);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
}

.landing-page .pricingpricing .pricing-plan-period {
    margin: 22px 0 0;
    color: rgba(17, 25, 54, 0.54);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.landing-page .pricingpricing .product-list {
    flex: 1 1 auto;
    margin-bottom: 28px;
}

.landing-page .pricingpricing .product-list .list-group-item {
    padding: 13px 0;
    border-color: rgba(17, 25, 54, 0.08);
    background: transparent;
    color: rgba(17, 25, 54, 0.76);
    font-size: 0.92rem;
    line-height: 1.45;
}

.landing-page .pricingpricing .product-list .pricing-feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.landing-page .pricingpricing .product-list .pricing-feature-row::before {
    display: none;
}

.landing-page .pricingpricing .pricing-feature-row span {
    min-width: 0;
}

.landing-page .pricingpricing .pricing-feature-row strong {
    color: #197a68;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.landing-page .pricingpricing .pricing-feature-row.is-unavailable {
    color: rgba(17, 25, 54, 0.46);
}

.landing-page .pricingpricing .pricing-feature-row.is-unavailable strong {
    color: rgba(17, 25, 54, 0.35);
}

.landing-page .pricingpricing .price-card .btn {
    align-self: stretch;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid var(--landing-ink);
    border-radius: 11px;
    color: var(--landing-ink);
    font-weight: 700;
    text-align: center;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.landing-page .pricingpricing .price-card .btn:hover,
.landing-page .pricingpricing .price-card .btn:focus {
    background: var(--landing-ink) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Product slider */
.landing-page .application-slider {
    padding-top: 120px;
    overflow: hidden;
    background: var(--landing-surface);
}

.landing-page .application-slider .title {
    margin-bottom: 42px;
}

.landing-page .app-slider {
    padding: 14px 24px 54px;
    overflow: hidden;
    border: 1px solid var(--landing-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--landing-shadow-lg);
}

.landing-page .app-slider .swiper-slide {
    display: flex;
    height: auto;
    opacity: 1 !important;
    flex-direction: column;
    transition: none !important;
}

.landing-page .app-slider img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 680px;
    margin: 0 auto;
    object-fit: contain;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    border: 1px solid var(--landing-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 54px rgba(17, 25, 54, 0.12);
    transition: box-shadow 200ms ease;
}

.landing-page .app-slider .swiper-slide-active img {
    box-shadow: 0 24px 64px rgba(17, 25, 54, 0.16);
    transform: none !important;
}

.landing-page .app-slider .swiper-slide h3 {
    min-height: 1.95rem;
    margin: 24px 0 8px;
    color: var(--landing-ink);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    white-space: nowrap;
}

.landing-page .app-slider .swiper-slide p {
    max-width: 680px;
    min-height: 3.2rem;
    margin: 0 auto;
    color: rgba(52, 58, 64, 0.72);
    font-size: 0.96rem;
    line-height: 1.6;
}

.landing-page .app-slider .avtar {
    width: 52px;
    height: 52px;
    border: 1px solid var(--landing-border);
    background: var(--landing-ink);
    color: #fff;
    box-shadow: var(--landing-shadow-sm);
}

.landing-page .app-slider-pagination {
    bottom: 18px !important;
}

/* Testimonials */
.landing-page .landing-testimonials {
    background: var(--landing-muted-surface) !important;
}

.landing-page .testaments-cards {
    column-gap: 22px;
}

.landing-page .testaments-cards::after {
    height: 18%;
    background: linear-gradient(0deg, var(--landing-muted-surface), transparent);
}

.landing-page .testaments-cards .card {
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid var(--landing-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(17, 25, 54, 0.05);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.landing-page .testaments-cards .card:hover {
    border-color: rgba(44, 165, 141, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--landing-shadow-sm);
}

.landing-page .testaments-cards .card-body {
    padding: 24px;
}

.landing-page .testaments-cards h4 {
    color: var(--landing-ink);
}

.landing-page .testaments-cards p {
    color: rgba(52, 58, 64, 0.72);
    line-height: 1.65;
}

/* Dark brand band */
.landing-page .choose-section {
    position: relative;
    overflow: hidden;
    padding: 34px 0 0;
    background-color: var(--landing-ink) !important;
}

.landing-page .choose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 38%, rgba(44, 165, 141, 0.14) 38.1% 38.2%, transparent 38.3% 100%),
        linear-gradient(35deg, transparent 0 75%, rgba(255, 255, 255, 0.05) 75.1% 75.2%, transparent 75.3% 100%);
}

.landing-page .choose-section h2 {
    margin: 0;
    color: #fff;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.landing-page .choose-section .row {
    min-height: 176px;
}

.landing-page .choose-section .col-md-9 > .d-flex {
    display: grid !important;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: clamp(22px, 3vw, 48px);
}

.landing-page .choose-section .col-md-9 > .d-flex > .flex-shrink-0 {
    max-width: none;
}

.landing-page .choose-section .col-md-9 > .d-flex > .flex-grow-1 {
    min-width: 0;
    margin-left: 0 !important;
}

.landing-page .choose-slider {
    height: 82px;
}

.landing-page .choose-slider .swiper-slide {
    display: flex;
    align-items: center;
    height: 82px;
    opacity: 0 !important;
    transition: opacity 320ms ease;
}

.landing-page .choose-slider .swiper-slide h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: nowrap;
}

.landing-page .choose-section .flex-shrink-0 > h2 {
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    white-space: nowrap;
}

.landing-page .choose-slider .swiper-slide-active h2 {
    color: var(--landing-accent);
}

.landing-page .choose-slider .swiper-slide-active {
    opacity: 1 !important;
}

.landing-page .choose-slider .swiper-slide-active h2::after {
    content: "";
    display: block;
    width: min(180px, 42%);
    height: 3px;
    margin-top: 12px;
    border-radius: 99px;
    background: var(--landing-accent);
    animation: landing-progress 2.8s linear infinite;
    transform-origin: left;
}

@keyframes landing-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.landing-page .choose-section .hand-img {
    display: block;
    max-height: 210px;
    margin: 0 auto;
    object-fit: contain;
    object-position: bottom;
}

/* FAQ */
.landing-page .frameworks-section {
    background: var(--landing-surface);
}

.landing-page .frameworks-section .accordion {
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--landing-border);
}

.landing-page .frameworks-section .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--landing-border);
    background: transparent;
}

.landing-page .frameworks-section .accordion-button {
    padding: 24px 4px;
    background: transparent;
    box-shadow: none;
    color: var(--landing-ink) !important;
    font-size: 1.05rem;
    line-height: 1.45;
}

.landing-page .frameworks-section .accordion-button:not(.collapsed) {
    color: var(--landing-accent) !important;
}

.landing-page .frameworks-section .accordion-body {
    max-width: 780px;
    padding: 0 4px 24px;
    color: rgba(52, 58, 64, 0.7) !important;
    line-height: 1.7;
}

/* Footer */
.landing-page .footer {
    position: relative;
    overflow: hidden;
    padding-top: 48px;
    background-color: var(--landing-ink) !important;
}

.landing-page .footer::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(44, 165, 141, 0.22);
    border-radius: 50%;
}

.landing-page .footer h4,
.landing-page .footer h5 {
    color: #fff;
}

.landing-page .footer .footer-main-row {
    align-items: flex-start;
    gap: 30px 0;
}

.landing-page .footer .landing-logo img {
    width: auto;
    max-width: 190px;
    max-height: 52px;
}

.landing-page .footer .footer-about-title {
    margin: 16px 0 8px;
    font-size: 1.18rem;
}

.landing-page .footer .footer-about-text {
    max-width: 650px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
}

.landing-page .footer .footer-contact {
    width: min(100%, 430px);
    margin-left: auto;
}

.landing-page .footer .footer-contact-title {
    margin: 2px 0 16px;
    font-size: 1.08rem;
}

.landing-page .footer .footer-contact-list {
    display: grid;
    gap: 10px;
}

.landing-page .footer .footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.landing-page .footer .footer-contact-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(44, 165, 141, 0.28);
    border-radius: 11px;
    background: rgba(44, 165, 141, 0.1);
}

.landing-page .footer .footer-contact-icon i {
    background: linear-gradient(135deg, #39b9a0 8%, #76d6c4 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.25rem;
}

.landing-page .footer .footer-contact-list li > div {
    min-width: 0;
}

.landing-page .footer .footer-contact-label {
    display: block;
    margin-bottom: 1px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.75rem;
}

.landing-page .footer .footer-contact-list a,
.landing-page .footer .footer-contact-empty {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-page .footer .footer-contact-list a {
    transition: color 180ms ease;
}

.landing-page .footer .footer-contact-list a:hover,
.landing-page .footer .footer-contact-list a:focus {
    color: #76d6c4;
}

.landing-page .footer .footer-link a {
    position: relative;
    margin-top: 14px;
}

.landing-page .footer .footer-link a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: var(--landing-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.landing-page .footer .footer-link a:hover::after,
.landing-page .footer .footer-link a:focus::after {
    transform: scaleX(1);
}

.landing-page .footer .sub-footer {
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .footer .footer-copyright {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-page .footer .footer-copyright-symbol {
    display: inline-grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border: 1px solid rgba(118, 214, 196, 0.34);
    border-radius: 50%;
    color: #76d6c4;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.landing-page .footer .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.landing-page .footer .footer-legal-links .list-inline-item {
    margin: 0;
}

.landing-page .footer .footer-legal-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    transition: color 180ms ease;
}

.landing-page .footer .footer-legal-links a:hover,
.landing-page .footer .footer-legal-links a:focus {
    color: var(--landing-accent);
}

/* Accessible focus and motion */
.landing-page a:focus-visible,
.landing-page button:focus-visible {
    outline: 3px solid rgba(44, 165, 141, 0.28);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .landing-page *,
    .landing-page *::before,
    .landing-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1199.98px) {
    .landing-page > .navbar {
        width: calc(100% - 28px);
    }

    .landing-page .navbar .nav-link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 0.76rem;
    }

    .landing-page header h1 {
        font-size: clamp(2.8rem, 5vw, 4rem);
    }

    .landing-page header .hero-image {
        padding: 18px;
    }
}

@media (min-width: 1400px) {
    .landing-page header .hero-image {
        margin-right: clamp(28px, 2.5vw, 48px);
        margin-left: 10px;
    }

    .landing-page header .hero-image > img {
        width: 106%;
        max-width: none;
        margin-left: -3%;
    }
}

@media (min-width: 1700px) {
    .landing-page > .navbar {
        width: calc(100% - 48px);
        max-width: none;
    }

    .landing-page > .navbar > .container {
        width: 100%;
        max-width: none;
    }

    .landing-page header > .container {
        width: calc(100% - 96px);
        max-width: none;
    }

    .landing-page header h1 {
        max-width: 820px;
        font-size: clamp(3.75rem, 3.5vw, 4.15rem);
    }

    .landing-page header .hero-image {
        margin-right: 0;
        margin-left: clamp(18px, 1.5vw, 32px);
    }

    .landing-page header .hero-image > img {
        width: 110%;
        margin-left: -5%;
    }
}

@media (max-width: 991.98px) {
    .landing-page section {
        padding: 82px 0;
    }

    .landing-page header {
        min-height: auto;
        padding: 154px 0 92px;
        text-align: left;
    }

    .landing-page header .hero-image {
        margin-top: 54px;
    }

    .landing-page .navbar .navbar-collapse {
        max-height: calc(100dvh - 96px);
        margin-top: 12px;
        overflow-y: auto;
        border-top: 1px solid var(--landing-border);
    }

    .landing-page .navbar .navbar-nav {
        align-items: stretch;
        gap: 2px;
        padding: 12px 2px 2px;
    }

    .landing-page .navbar .nav-link {
        padding: 10px 8px;
        font-size: 0.88rem;
    }

    .landing-page .navbar .nav-link::after {
        right: auto;
        left: 8px;
        width: 36px;
    }

    .landing-page .navbar .btn {
        display: block;
        width: 100%;
        margin-top: 6px;
    }

    .landing-page .landing-story-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .landing-story-card {
        padding: 36px;
    }

    .landing-page .landing-story h2 {
        min-height: 0;
    }

    .landing-page .offer-feature-card {
        min-height: 276px;
    }
}

@media (max-width: 767.98px) {
    .landing-page > .navbar,
    .landing-page > .navbar.top-nav-collapse {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px 12px;
        border-radius: 18px;
    }

    .landing-page .navbar .navbar-collapse {
        max-height: calc(100vh - 96px);
        margin-top: 12px;
        overflow-y: auto;
        border-top: 1px solid var(--landing-border);
    }

    .landing-page .navbar .navbar-nav {
        align-items: stretch;
        gap: 2px;
        padding: 12px 2px 2px;
    }

    .landing-page .navbar .nav-link {
        padding: 10px 8px;
        font-size: 0.88rem;
    }

    .landing-page .navbar .nav-link::after {
        right: auto;
        left: 8px;
        width: 36px;
    }

    .landing-page .navbar .btn {
        display: block;
        width: 100%;
        margin-top: 6px;
    }

    .landing-page header {
        padding: 136px 0 76px;
        text-align: center;
    }

    .landing-page header h1 {
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(2.45rem, 11vw, 3.3rem);
    }

    .landing-page header h4 {
        margin-right: auto;
        margin-left: auto;
        font-size: 1rem;
    }

    .landing-page header .d-inline-flex.align-items-center {
        text-align: left;
    }

    .landing-page header .hero-image {
        margin-top: 44px;
        padding: 12px;
        border-radius: 20px;
    }

    .landing-page .landing-story-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .landing-page .landing-story-card::after {
        width: 46px;
        height: 46px;
    }

    .landing-page .landing-story-media {
        margin-bottom: 24px;
    }

    .landing-page .landing-story h2 {
        font-size: 2.1rem;
    }

    .landing-page .landing-story .text-lg {
        margin-bottom: 22px !important;
    }

    .landing-page .offers-slider-shell {
        padding-right: 0;
        padding-bottom: 56px;
        padding-left: 0;
    }

    .landing-page .offer-feature-card {
        min-height: 268px;
        padding: 28px 24px;
    }

    .landing-page .offer-feature-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 24px;
    }

    .landing-page .offer-feature-icon i {
        font-size: 2.1rem;
    }

    .landing-page .offers-nav {
        top: 50%;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.94);
    }

    .landing-page .offers-button-prev {
        left: 10px;
    }

    .landing-page .offers-button-next {
        right: 10px;
    }

    .landing-page .pricingpricing .price-card .card-body {
        padding: 34px 24px 26px;
    }

    .landing-page .app-slider {
        padding: 10px 12px 54px;
        border-radius: 20px;
    }

    .landing-page .app-slider .avtar {
        top: 42%;
        width: 42px;
        height: 42px;
        background: rgba(17, 25, 54, 0.92);
    }

    .landing-page .app-slider .swiper-button-prev {
        left: 18px;
    }

    .landing-page .app-slider .swiper-button-next {
        right: 18px;
    }

    .landing-page .choose-section {
        padding: 38px 0;
    }

    .landing-page .choose-section .row {
        min-height: 0;
    }

    .landing-page .choose-section .col-md-9 > .d-flex {
        display: block !important;
        text-align: center;
    }

    .landing-page .choose-section .col-md-9 > .d-flex > .flex-shrink-0 {
        max-width: none;
        margin-bottom: 18px;
    }

    .landing-page .choose-slider,
    .landing-page .choose-slider .swiper-slide {
        height: 72px;
    }

    .landing-page .choose-slider .swiper-slide {
        justify-content: center;
    }

    .landing-page .choose-slider .swiper-slide h2 {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
        text-align: center;
    }

    .landing-page .footer {
        padding-top: 44px;
    }

    .landing-page .footer .footer-contact {
        margin-right: 0;
        margin-left: 0;
    }

    .landing-page .footer .sub-footer .row {
        gap: 10px 0;
    }

    .landing-page .footer .sub-footer .col,
    .landing-page .footer .sub-footer .col-auto {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
    }

    .landing-page .footer .footer-legal-links,
    .landing-page .footer .footer-sos-link {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .landing-page section {
        padding: 68px 0;
    }

    .landing-page .title {
        margin-bottom: 40px;
    }

    .landing-page .title h2 {
        font-size: clamp(1.05rem, 5.2vw, 1.55rem);
    }

    .landing-page header .d-inline-flex.align-items-center {
        padding: 12px;
    }

    .landing-page header .d-inline-flex .avtar {
        width: 50px;
        height: 50px;
    }

    .landing-page header .d-inline-flex h5 {
        font-size: 0.82rem;
    }

    .landing-page .app-slider .swiper-slide h3 {
        white-space: normal;
    }

    .landing-page .app-slider .swiper-slide p {
        font-size: 0.88rem;
    }
}
