:root {
    --landing-bg: #ffffff;
    --landing-text: #2d2d2d;
    --landing-text-muted: #6b6b6b;
    --landing-pastel-1: #f8f0f5;
    --landing-pastel-2: #f0f4f8;
    --landing-pastel-3: #f5f0f8;
    --landing-pastel-4: #f0f8f5;
    --landing-accent: #b8a9c9;
    --landing-accent-soft: #d4c8e0;
    --landing-cta: #9b8ab3;
    --landing-cta-hover: #7d6b95;
    --landing-radius: 1.25rem;
    --landing-radius-sm: 0.75rem;
    --landing-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --landing-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Мобилка: минимальная ширина 425px (L), контент не уже */
.landing-page {
    background-color: var(--landing-bg);
    color: var(--landing-text);
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 1rem;
    line-height: 1.6;
    min-width: 425px;
}

@media (min-width: 992px) {
    .landing-page {
        min-width: auto;
    }
}

/* Без подчёркивания у ссылок и кнопок по всему сайту */
.landing-page a,
.landing-page a:hover,
.landing-page a:focus,
.landing-page button,
.landing-page button:hover,
.landing-page button:focus,
.landing-page .nav-link,
.landing-page .nav-link:hover,
.landing-page .btn {
    text-decoration: none !important;
}

.landing-main {
    min-height: 100vh;
}

/* Плавное появление блоков при прокрутке */
.landing-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.landing-animate.landing-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Каскадное появление дочерних элементов (карточки, пункты) */
.landing-animate-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(5) { transition-delay: 0.33s; }
.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(6) { transition-delay: 0.4s; }
.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(7) { transition-delay: 0.47s; }
.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(8) { transition-delay: 0.54s; }
.landing-animate.landing-animate-visible.landing-animate-stagger > *:nth-child(9) { transition-delay: 0.61s; }

.landing-animate.landing-animate-visible.landing-animate-stagger > * {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.landing-header {
    background-color: var(--landing-bg);
    box-shadow: var(--landing-shadow);
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.landing-header .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.landing-header .navbar-collapse {
    gap: 1rem;
}

.landing-nav-links {
    gap: 0.25rem;
}

.landing-nav-links .nav-link {
    color: var(--landing-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: var(--landing-radius-sm);
    transition: color 0.2s, background-color 0.2s;
}

.landing-nav-links .nav-link:hover {
    color: var(--landing-cta);
    background-color: var(--landing-pastel-3);
}

/* Название сайта — крупно, полужирно, заглавными */
.landing-header-brand {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--landing-text);
    transition: color 0.2s;
}

.landing-header-brand:hover {
    color: var(--landing-cta);
}

/* Header CTA — самая правая, яркая кнопка */
.landing-btn-cta {
    font-weight: 700;
    padding: 0.65rem 1.6rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #a78bb8 0%, #8b6fa3 100%);
    box-shadow: 0 4px 16px rgba(139, 111, 163, 0.45);
    border: none;
}

.landing-btn-cta:hover {
    background: linear-gradient(135deg, #9370a8 0%, #7a5d8f 100%);
    color: #fff;
    box-shadow: 0 6px 22px rgba(139, 111, 163, 0.55);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .landing-header .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
        padding-top: 0.5rem;
        gap: 1rem;
    }
    .landing-header .landing-btn-cta {
        margin-left: 0;
        margin-top: 0.25rem;
    }
    .landing-nav-links {
        width: 100%;
        margin-left: 0;
    }
}

/* Modal */
.landing-modal-content {
    padding: 0.5rem;
}

.landing-modal-content .modal-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Section spacing — reusable for partials */
.landing-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Веб: каждый блок на всю высоту экрана */
@media (min-width: 992px) {
    .landing-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.landing-section-title {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--landing-text);
    margin-bottom: 0.5rem;
}

.landing-section-subtitle {
    color: var(--landing-text-muted);
    font-size: 1.05rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* Hero block */
.landing-hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

/* Веб: hero на всю высоту экрана */
@media (min-width: 992px) {
    .landing-hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.landing-hero-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--landing-text);
    margin-bottom: 1rem;
}

.landing-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--landing-text-muted);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Hero card layout: soft green bg + white card */
.landing-hero-card-section {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
    background: #fff;
    min-height: auto;
}

.landing-hero-card-wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-hero-card {
    background: #fff;
    box-shadow: 0 10px 48px rgba(0, 0, 0, 0.06);
    padding: 2.75rem 1.5rem;
    overflow: hidden;
}

/* Content column: spacing and hierarchy */
.landing-hero-content {
    --hero-space: 1.5rem;
}

.landing-hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--landing-text-muted);
    background: var(--landing-pastel-2);
    border-radius: 2rem;
    margin-bottom: var(--hero-space);
}

.landing-hero-card .landing-hero-title {
    max-width: none;
    margin: 0 0 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--landing-text);
}

.landing-hero-card .landing-hero-subtitle {
    max-width: 26rem;
    margin: 0 0 1.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--landing-text-muted);
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.landing-hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 1.25rem;
}

.landing-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-hero-stat-value {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    color: var(--landing-text);
}

.landing-hero-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text);
}

.landing-hero-stat-icon svg {
    width: 2.1rem;
    height: 2.1rem;
}

.landing-hero-stat-label {
    font-size: 0.8rem;
    color: var(--landing-text-muted);
    margin-top: 0.15rem;
}

.landing-hero-stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--landing-accent-soft);
    flex-shrink: 0;
}

/* Hero buttons: refined */
.landing-btn-hero {
    padding: 0.8rem 1.85rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0.65rem;
}

.landing-btn-hero.landing-btn-primary {
    box-shadow: 0 2px 12px rgba(155, 138, 179, 0.25);
}

/* Asymmetric overlapping image collage */
.landing-hero-images {
    position: relative;
    min-height: 300px;
    margin: 2rem 0;
    padding-right: 0.5rem;
}

.landing-hero-img-block {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.landing-hero-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main image: largest, left, slight tilt */
.landing-hero-img-1 {
    width: 58%;
    max-width: 280px;
    top: 0;
    left: -2%;
    z-index: 3;
    border-radius: 1.1rem;
}

.landing-hero-img-1 img {
    border-radius: 1.1rem;
}

/* Middle: offset right and down, smaller */
.landing-hero-img-2 {
    width: 44%;
    max-width: 220px;
    top: 22%;
    right: 0;
    z-index: 2;
    border-radius: 1rem;
}

.landing-hero-img-2 img {
    border-radius: 1rem;
}

/* Bottom: overlapping left, distinct size */
.landing-hero-img-3 {
    width: 42%;
    max-width: 200px;
    bottom: -4%;
    left: 22%;
    z-index: 1;
    border-radius: 0.9rem;
}

.landing-hero-img-3 img {
    border-radius: 0.9rem;
}

/* Floating decorative elements */
.landing-hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.landing-hero-deco-1 {
    width: 12px;
    height: 12px;
    background: var(--landing-pastel-3);
    top: 8%;
    right: 12%;
    z-index: 4;
}

.landing-hero-deco-2 {
    width: 8px;
    height: 8px;
    background: var(--landing-pastel-4);
    top: 52%;
    right: 2%;
    z-index: 4;
}

.landing-hero-deco-3 {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--landing-accent-soft);
    bottom: 28%;
    left: 2%;
    z-index: 4;
}

.landing-hero-deco-4 {
    width: 10px;
    height: 10px;
    background: var(--landing-pastel-2);
    bottom: 8%;
    right: 28%;
    z-index: 4;
}

/* Hero photo in frame (single photo, style match) */
.landing-hero-media-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.landing-hero-photo-frame {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: var(--landing-radius);
    overflow: hidden;
    max-width: 340px;
    margin: 0 auto;
}

.landing-hero-photo-frame .landing-hero-photo-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--landing-radius) - 0.25rem);
    object-fit: contain;
    object-position: bottom;
    vertical-align: bottom;
}

@media (min-width: 992px) {
    .landing-hero-media-col {
        justify-content: flex-end;
    }
    .landing-hero-photo-frame {
        max-width: 380px;
        margin: 0;
        margin-left: auto;
    }
    .landing-hero-card-section {
        padding-top: 3.5rem;
        padding-bottom: 4.5rem;
        min-height: 85vh;
        display: flex;
        align-items: center;
    }
    .landing-hero-card {
        padding: 3.5rem 2.75rem;
    }
    .landing-hero-content {
        --hero-space: 1.75rem;
    }
    .landing-hero-card .landing-hero-title {
        margin-bottom: 1.25rem;
    }
    .landing-hero-card .landing-hero-subtitle {
        margin-bottom: 2rem;
    }
    .landing-hero-actions {
        margin-bottom: 2.25rem;
    }
    .landing-hero-images {
        min-height: 360px;
        margin: 0;
        padding-right: 0;
    }
    .landing-hero-img-1 {
        max-width: 300px;
    }
    .landing-hero-img-2 {
        max-width: 240px;
    }
    .landing-hero-img-3 {
        max-width: 215px;
    }
}

@media (min-width: 992px) {
    .landing-hero-content .landing-hero-actions,
    .landing-hero-content .landing-hero-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .landing-hero-stat-divider {
        display: none;
    }
    .landing-hero-deco {
        display: none;
    }
}

/* CTA buttons */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--landing-radius-sm);
    border: none;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.landing-btn-primary {
    background-color: var(--landing-cta);
    color: #fff;
    box-shadow: var(--landing-shadow);
}

.landing-btn-primary:hover {
    background-color: var(--landing-cta-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--landing-shadow-hover);
}

.landing-btn-outline {
    background-color: transparent;
    color: var(--landing-cta);
    border: 2px solid var(--landing-accent-soft);
}

.landing-btn-outline:hover {
    background-color: var(--landing-pastel-3);
    color: var(--landing-cta-hover);
    border-color: var(--landing-accent);
}

/* About carousel */
.landing-about-carousel-wrapper {
    position: relative;
    padding: 0 2.5rem;
}

.landing-about-carousel {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    box-shadow: var(--landing-shadow);
}

.landing-about-carousel .carousel-item {
    background: #fff;
}

.landing-about-slide {
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.landing-about-slide-media {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 360px;
    background: var(--landing-pastel-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landing-about-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.landing-about-slide-body {
    flex: 1 1 auto;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-about-slide-title {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--landing-text);
    margin-bottom: 0.75rem;
}

.landing-about-slide-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--landing-text-soft);
    margin: 0;
}

.landing-about-carousel-indicators {
    display: none;
}

.landing-about-carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--landing-accent-soft);
    border: none;
    opacity: 0.7;
}

.landing-about-carousel-indicators button.active {
    background-color: var(--landing-cta);
    opacity: 1;
}

.landing-about-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--landing-accent-soft);
    opacity: 0.9;
}

.landing-about-carousel-control:hover {
    background: var(--landing-accent);
    opacity: 1;
}

.landing-about-carousel-control .carousel-control-prev-icon,
.landing-about-carousel-control .carousel-control-next-icon {
    width: 0.75rem;
    height: 0.75rem;
    filter: invert(0.3);
}

.landing-about-carousel-control.carousel-control-prev {
    left: 0;
}

.landing-about-carousel-control.carousel-control-next {
    right: 0;
}

@media (max-width: 767.98px) {
    .landing-about-carousel-wrapper {
        padding: 0 2.25rem;
    }
    .landing-about-carousel-control {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
        min-height: 2.25rem;
    }
}

@media (min-width: 768px) {
    .landing-about-slide {
        flex-direction: row;
        min-height: 400px;
        align-items: stretch;
    }

    .landing-about-slide-reverse {
        flex-direction: row-reverse;
    }

    .landing-about-slide-media {
        width: 40%;
        max-width: 300px;
        flex-shrink: 0;
        aspect-ratio: unset;
        max-height: none;
    }

    .landing-about-slide-body {
        flex: 1;
        min-width: 0;
        padding: 2rem 2.5rem;
        border-left: 1px solid var(--landing-accent-soft);
    }

    .landing-about-slide-reverse .landing-about-slide-body {
        border-left: none;
        border-right: 1px solid var(--landing-accent-soft);
    }

    .landing-about-slide-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .landing-about-slide-text {
        font-size: 1rem;
    }

    .landing-about-carousel-wrapper {
        padding: 0 4rem;
    }

    .landing-about-carousel-control {
        width: 3rem;
        height: 3rem;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--landing-accent-soft);
        box-shadow: var(--landing-shadow);
    }

    .landing-about-carousel-control .carousel-control-prev-icon,
    .landing-about-carousel-control .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }
}

/* Pastel blocks */
.landing-block {
    background-color: var(--landing-pastel-1);
    border-radius: var(--landing-radius);
    padding: 2rem;
    box-shadow: var(--landing-shadow);
}

.landing-block-2 { background-color: var(--landing-pastel-2); }
.landing-block-3 { background-color: var(--landing-pastel-3); }
.landing-block-4 { background-color: var(--landing-pastel-4); }

/* Cards */
.landing-card {
    background: #fff;
    border-radius: var(--landing-radius);
    padding: 1.75rem;
    box-shadow: var(--landing-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.landing-card:hover {
    box-shadow: var(--landing-shadow-hover);
    transform: translateY(-2px);
}

.landing-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--landing-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--landing-pastel-3);
    color: var(--landing-cta);
    margin-bottom: 1rem;
}

.landing-card-title {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--landing-text);
    margin-bottom: 0.5rem;
}

.landing-card-text {
    color: var(--landing-text-muted);
    font-size: 0.95rem;
}

/* Pricing card */
.landing-price-card {
    background: #fff;
    border-radius: var(--landing-radius);
    padding: 2rem;
    box-shadow: var(--landing-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.landing-price-card:hover {
    box-shadow: var(--landing-shadow-hover);
    transform: translateY(-2px);
}

.landing-price-card.featured {
    border: 2px solid var(--landing-accent-soft);
    background: linear-gradient(to bottom, var(--landing-pastel-3), #fff);
}

.landing-price-amount {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--landing-cta);
}

.landing-price-period {
    color: var(--landing-text-muted);
    font-size: 0.9rem;
}

/* Review card */
.landing-review-card {
    background: #fff;
    border-radius: var(--landing-radius);
    padding: 1.5rem;
    box-shadow: var(--landing-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.landing-review-text {
    font-style: italic;
    color: var(--landing-text);
    margin-bottom: 1rem;
}

.landing-review-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--landing-text);
}

.landing-review-role {
    font-size: 0.85rem;
    color: var(--landing-text-muted);
}

/* CTA block (trial lesson) */
.landing-cta-block {
    background: linear-gradient(135deg, var(--landing-pastel-3) 0%, var(--landing-pastel-1) 100%);
    border-radius: var(--landing-radius);
    padding: 3rem 2rem;
    text-align: center;
}

.landing-cta-block .landing-section-title {
    margin-bottom: 0.75rem;
}

.landing-cta-block .landing-section-subtitle {
    margin-bottom: 1.5rem;
}

/* Form */
.landing-form .form-control,
.landing-form .form-select {
    border-radius: var(--landing-radius-sm);
    border: 1px solid var(--landing-accent-soft);
    padding: 0.65rem 1rem;
}

.landing-form .form-control:focus {
    border-color: var(--landing-accent);
    box-shadow: 0 0 0 3px rgba(184, 169, 201, 0.2);
}

.landing-form label {
    font-weight: 500;
    color: var(--landing-text);
}

.landing-form-consent {
    color: var(--landing-text-muted);
    font-size: 0.875rem;
}

.landing-form-consent a {
    color: var(--landing-cta);
}

.privacy-content ul {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.25rem;
}

/* Footer */
.landing-footer {
    background-color: var(--landing-pastel-2);
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.landing-footer-brand {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--landing-text);
}

.landing-footer-label {
    color: var(--landing-text-muted);
    margin-right: 0.35rem;
}

.landing-footer-links a {
    margin: 0 0.2rem;
}

.landing-footer-sep {
    color: var(--landing-text-muted);
    margin: 0 0.15rem;
    font-weight: 300;
}

.landing-footer-hr {
    border-color: rgba(0, 0, 0, 0.08);
    margin: 0;
}

.landing-footer-text {
    color: var(--landing-text-muted);
    font-size: 0.9rem;
}

.landing-footer-dev > div,
.landing-footer-dev > a {
    display: block;
}

.landing-footer-dev > div + div,
.landing-footer-dev > a {
    margin-top: 0.2rem;
}

.landing-footer-dev-link {
    text-decoration: none;
}

.landing-footer-dev-link .landing-footer-dev-tagline {
    margin-top: 0.15rem;
    font-size: 0.85em;
    opacity: 0.9;
}

.landing-footer a {
    color: var(--landing-cta);
    text-decoration: none;
}

.landing-footer a:hover {
    color: var(--landing-cta-hover);
}

/* Utilities */
.landing-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .landing-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .landing-hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}
