:root {
    --primary: #3B82F6;
    --primary-hover: #2563EB;
    --success: #10B981;
    --text: #1F2937;
    --text-secondary: #6B7280;
    --border: #E5E7EB;
    --bg: #FAFAFA;
    --white: #FFFFFF;
}


/* Навбар — сучасний, чистий */
.navbar {
    background: var(--white) !important;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary) !important;
}

.navbar .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(59, 130, 246, 0.05);
}


/* Контент */
.main-content {
    padding: 2rem;
    min-height: 0;
    flex: 1 1 auto;
}

/* Футер */
.footer {
    background: white;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 2rem 0;
    margin-top: auto;
    position: static;
    width: 100%;
}
.poll-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.poll-card:hover {
    transform: translateY(-1px);
}
.card-header {
    background-color: #f8f9fa;
    border-bottom: none;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}
/* Анімація появи табів */
.animated-tab {
    animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анімація карток */
.animated-card {
    opacity: 0;
    animation: cardFade 0.5s ease forwards;
}

@keyframes cardFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-card:nth-child(1) { animation-delay: 0.05s; }
.animated-card:nth-child(2) { animation-delay: 0.12s; }
.animated-card:nth-child(3) { animation-delay: 0.18s; }
.animated-card:nth-child(4) { animation-delay: 0.24s; }
.animated-card:nth-child(5) { animation-delay: 0.30s; }
.animated-card:nth-child(6) { animation-delay: 0.36s; }

/* Кнопка "Продовжити" — основна дія */
.btn-task-action {
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    border-radius: 0.6rem;
}

/* Кнопка "Керування" — вторинна дія */
.btn-task-manage {
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    border-radius: 0.6rem;
    color: var(--text-secondary);
    border-color: var(--border);
    background: var(--white);
}

.btn-task-manage:hover {
    background: rgba(0,0,0,0.04);
    color: var(--text);
}
/* Sticky індикатор */
.checklist-task-run-card .d-flex.gap-2 > form {
    margin: 0;
}

.btn-task-action,
.btn-task-manage,
.btn-task-cancel {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

.btn-task-action i,
.btn-task-manage i,
.btn-task-cancel i {
    margin: 0;
}

.sticky-progress {
    position: sticky;
    top: 80px; /* висота навбару + відступ */
    z-index: 1;
}


/* =============================================
   Checklists таблиця — фінальний чистий стиль 2026
   ============================================= */

.checklist-index {
    padding: 1.5rem 0;
}

.checklist-index h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.25rem 0;
}

/* Кнопка Create Checklist */
.checklist-index .btn-success {
    background-color: var(--success);
    border: none;
    border-radius: 0.75rem;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.18);
    transition: all 0.18s ease;
}

.checklist-index .btn-success:hover {
    background-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.28);
}

/* Контейнер таблиці — картковий вигляд */
.grid-view {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* Summary (Показані ... ) */
.grid-view .summary {
    padding: 1rem 1.5rem;
    background: rgba(59, 130, 246, 0.015);
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

/* Таблиця */
.grid-view .table {
    margin-bottom: 0;
    --bs-table-border-color: var(--border);
}

/* Заголовки */
.grid-view thead th {
    background: rgba(59, 130, 246, 0.025);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.81rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid var(--border);
    border-top: none;
}

/* Тіло */
.grid-view tbody tr {
    transition: background 0.2s ease;
}

.grid-view tbody tr:hover {
    background: rgba(59, 130, 246, 0.035);
}

/* Клітинки */
.grid-view td {
    padding: 1.1rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.94rem;
    border-top: 1px solid var(--border);
    vertical-align: middle;
}

.grid-view tr:last-child td {
    border-bottom: none;
}

/* Колонка NAME — головний акцент */
.grid-view td a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}

.grid-view td a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Колонка дій (іконки) */
.grid-view .action-column {
    text-align: right;
    padding-right: 1.5rem !important;
    white-space: nowrap;
}

.grid-view .action-column a {
    color: var(--text-secondary);
    margin-left: 0.9rem;
    font-size: 1.15rem;
    transition: all 0.18s;
}

.grid-view .action-column a:hover {
    color: var(--primary);
    transform: scale(1.18);
}

/* Пагінація */
.grid-view .pagination {
    justify-content: center;
    margin: 1.5rem 0 1.25rem;
    padding: 0.5rem 0;
    gap: 0.35rem;
}

.grid-view .page-item .page-link {
    border-radius: 0.5rem;
    width: 36px;
    height: 36px;
    padding: 0;
    line-height: 36px;
    text-align: center;
    color: var(--primary);
    border: 1px solid var(--border);
    background-color: transparent;
    transition: all 0.18s;
}

.grid-view .page-item .page-link:hover {
    background-color: rgba(59, 130, 246, 0.07);
    border-color: var(--primary);
}

.grid-view .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 600;
}

.grid-view .page-item.disabled .page-link {
    color: #9ca3af;
    background-color: #f8f9fa;
    border-color: var(--border);
    opacity: 0.65;
}

.table-responsive {
    border-radius: 1rem;
    overflow: hidden;
}

/* Modern landing page */
.landing-page {
    --landing-ink: #0f172a;
    --landing-muted: #64748b;
    --landing-line: rgba(37, 99, 235, 0.14);
    --landing-blue: #2563eb;
    --landing-blue-dark: #1e40af;
    --landing-blue-soft: #dbeafe;
    --landing-sky: #eff6ff;
    --landing-cream: #ffffff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -1.5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(96, 165, 250, 0.32), transparent 28rem),
        radial-gradient(circle at 88% 0%, rgba(37, 99, 235, 0.16), transparent 25rem),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 44%, #ffffff 100%);
    color: var(--landing-ink);
    font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
}

.landing-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.landing-hero {
    position: relative;
    padding: clamp(74px, 8vw, 132px) 0 76px;
}

.landing-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    bottom: -10rem;
    width: 36rem;
    height: 36rem;
    border-radius: 999px;
    background: rgba(16, 32, 27, 0.06);
}

.landing-hero-grid,
.landing-use-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: clamp(32px, 6vw, 78px);
    align-items: center;
}

.landing-eyebrow,
.landing-product-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--landing-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-hero h1,
.landing-section h2,
.landing-final h2 {
    margin: 0;
    color: var(--landing-ink);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.landing-hero h1 {
    max-width: 780px;
    font-size: clamp(3.35rem, 8vw, 7.25rem);
}

.landing-lead {
    max-width: 710px;
    margin: 28px 0 0;
    color: #334139;
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    line-height: 1.65;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.landing-btn:hover,
.landing-btn:focus {
    transform: translateY(-2px);
    text-decoration: none;
}

.landing-btn-primary {
    background: linear-gradient(135deg, var(--landing-blue) 0%, var(--landing-blue-dark) 100%);
    color: #ffffff !important;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.landing-btn-ghost {
    border: 1px solid rgba(16, 32, 27, 0.18);
    background: rgba(255, 255, 255, 0.6);
    color: var(--landing-ink) !important;
}

.landing-note {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--landing-muted);
}

.landing-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 640px;
    margin-top: 34px;
}

.landing-metrics div {
    padding: 18px;
    border: 1px solid var(--landing-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(12px);
}

.landing-metrics strong,
.landing-metrics span {
    display: block;
}

.landing-metrics strong {
    font-size: 1.45rem;
    line-height: 1;
}

.landing-metrics span {
    margin-top: 8px;
    color: var(--landing-muted);
    font-size: 0.9rem;
}

.landing-product-card {
    position: relative;
    z-index: 1;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.72)),
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.3), transparent 18rem);
    box-shadow: 0 32px 90px rgba(30, 64, 175, 0.18);
    transform: rotate(1.5deg);
    animation: landingFloat 6s ease-in-out infinite;
}

.landing-product-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: -1;
    border-radius: 30px;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: rotate(-5deg);
}

.landing-product-carousel {
    display: grid;
    gap: 18px;
}

.landing-carousel-stack {
    position: relative;
    min-height: 420px;
}

.landing-carousel-slide[hidden] {
    display: none !important;
}

.landing-carousel-slide.is-current {
    animation: landingScenarioFade .35s ease;
}

.landing-product-top,
.landing-product-bottom > div:first-child,
.landing-price-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.landing-product-top h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.65rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.landing-status {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--landing-blue-soft);
    color: var(--landing-blue-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.landing-progress {
    height: 12px;
    margin: 28px 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(16, 32, 27, 0.1);
}

.landing-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--landing-blue-dark), #60a5fa);
}

.landing-task-list {
    display: grid;
    gap: 12px;
}

.landing-task-list div,
.landing-use-list div,
.landing-price-limits div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-task-list div {
    padding: 16px;
    border: 1px solid var(--landing-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    color: #415047;
    font-weight: 700;
}

.landing-task-list i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(16, 32, 27, 0.08);
    color: var(--landing-blue);
}

.landing-task-list .is-active {
    border-color: rgba(15, 123, 95, 0.35);
    background: rgba(219, 234, 254, 0.72);
    color: var(--landing-ink);
}

.landing-product-bottom {
    display: grid;
    gap: 18px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--landing-line);
}

.landing-product-bottom span {
    color: var(--landing-muted);
}

.landing-product-bottom strong {
    font-size: 2.2rem;
    line-height: 1;
}

.landing-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.landing-carousel-arrow {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.landing-carousel-arrow:hover,
.landing-carousel-arrow:focus {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.72);
}

.landing-carousel-dots {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    gap: 10px;
}

.landing-carousel-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    transition: transform .2s ease, background-color .2s ease, width .2s ease;
}

.landing-carousel-dot.is-current {
    width: 28px;
    background: #fff;
}

.landing-channel-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-channel-pills span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--landing-blue);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
}

.landing-section {
    padding: clamp(72px, 8vw, 112px) 0;
}

.landing-section-alt {
    background: rgba(255, 255, 255, 0.38);
    border-top: 1px solid rgba(16, 32, 27, 0.08);
    border-bottom: 1px solid rgba(16, 32, 27, 0.08);
}

.landing-section-head {
    max-width: 790px;
    margin: 0 auto 42px;
    text-align: center;
}

.landing-section h2,
.landing-final h2 {
    font-size: clamp(2.4rem, 5.2vw, 4.7rem);
}

.landing-section-head p,
.landing-final p {
    margin: 18px auto 0;
    color: var(--landing-muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.landing-feature-grid,
.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.landing-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.landing-feature-card,
.landing-step-card,
.landing-price-card {
    border: 1px solid var(--landing-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 18px 46px rgba(16, 32, 27, 0.07);
}

.landing-feature-card {
    padding: 28px;
    min-height: 258px;
}

.landing-feature-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--landing-blue) 0%, var(--landing-blue-dark) 100%);
    color: #ffffff;
}

.landing-feature-card h3,
.landing-step-card h3 {
    margin: 0 0 12px;
    color: var(--landing-ink);
    font-size: 1.24rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.landing-feature-card p,
.landing-step-card p,
.landing-price-period {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.58;
}

.landing-use-grid h2 {
    max-width: 620px;
    font-size: clamp(2.1rem, 4.4vw, 4rem);
}

.landing-use-list {
    display: grid;
    gap: 12px;
}

.landing-use-list div {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    font-weight: 800;
}

.landing-use-list i {
    color: #bfdbfe;
}

.landing-step-card {
    padding: 24px;
}

.landing-step-card span {
    display: block;
    margin-bottom: 42px;
    color: var(--landing-blue);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.landing-price-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    color: var(--landing-ink);
    background: rgba(255, 255, 255, 0.9);
}

.landing-price-card.is-featured {
    background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
    transform: translateY(-10px);
}

.landing-price-card h3,
.landing-price-card strong,
.landing-price-card .landing-plan-price {
    color: inherit;
}

.landing-price-card span,
.landing-price-card p {
    color: var(--landing-muted);
}

.landing-price-card.is-featured .landing-plan-price {
    color: #ffffff;
}

.landing-price-card.is-featured h3,
.landing-price-card.is-featured strong {
    color: #ffffff;
}

.landing-price-head span {
    color: var(--landing-muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-price-head h3 {
    margin: 6px 0 0;
    font-size: 1.35rem;
    font-weight: 900;
}

.landing-price-head em {
    padding: 7px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
}

.landing-plan-price {
    margin-top: 28px;
    color: inherit;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.landing-price-limits {
    display: grid;
    gap: 10px;
    margin: 26px 0;
}

.landing-price-limits div {
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(16, 32, 27, 0.1);
}

.landing-price-card.is-featured .landing-price-limits div {
    border-color: rgba(255, 250, 240, 0.14);
}

.landing-price-card.is-featured .landing-price-limits span,
.landing-price-card.is-featured .landing-price-head span,
.landing-price-card.is-featured .landing-price-period {
    color: rgba(255, 255, 255, 0.72);
}

.landing-price-limits strong {
    font-size: 1.05rem;
}

.landing-btn-card {
    width: 100%;
    margin-top: auto;
    background: var(--landing-blue);
    color: #ffffff !important;
}

.landing-price-card.is-featured .landing-btn-card {
    background: #ffffff;
    color: var(--landing-blue-dark) !important;
}

.landing-final {
    position: relative;
    z-index: 1;
    isolation: isolate;
    padding: clamp(76px, 8vw, 118px) 0;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    color: #ffffff;
}

.landing-final h2 {
    color: #ffffff;
}

.landing-final p {
    max-width: 740px;
    color: rgba(255, 250, 240, 0.72);
    margin-bottom: 30px;
}

.landing-final .landing-btn-primary {
    background: #ffffff;
    color: var(--landing-blue-dark) !important;
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

.landing-page.landing-page,
.theme-light .landing-page,
.theme-dark .landing-page {
    background:
        radial-gradient(circle at 12% 10%, rgba(96, 165, 250, 0.32), transparent 28rem),
        radial-gradient(circle at 88% 0%, rgba(37, 99, 235, 0.16), transparent 25rem),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 44%, #ffffff 100%) !important;
    color: var(--landing-ink) !important;
}

.landing-page .landing-section,
.landing-page .landing-section-alt {
    background: transparent !important;
}

.landing-page .landing-final {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%) !important;
    color: #ffffff !important;
}

.landing-page .landing-final h2 {
    color: #ffffff !important;
}

.landing-page .landing-final p {
    color: rgba(255, 250, 240, 0.72) !important;
}

.landing-page .landing-price-card {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--landing-ink) !important;
}

.landing-page .landing-price-card h3,
.landing-page .landing-price-card strong,
.landing-page .landing-price-card .landing-plan-price {
    color: inherit !important;
}

.landing-page .landing-price-card span,
.landing-page .landing-price-card p {
    color: var(--landing-muted) !important;
}

.landing-page .landing-price-card.is-featured {
    background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%) !important;
    color: #ffffff !important;
}

.landing-page .landing-price-card.is-featured h3,
.landing-page .landing-price-card.is-featured strong,
.landing-page .landing-price-card.is-featured .landing-plan-price {
    color: #ffffff !important;
}

.landing-page .landing-price-card.is-featured span,
.landing-page .landing-price-card.is-featured p {
    color: rgba(255, 255, 255, 0.72) !important;
}

@keyframes landingFloat {
    0%, 100% {
        transform: rotate(1.5deg) translateY(0);
    }
    50% {
        transform: rotate(1.5deg) translateY(-12px);
    }
}

@keyframes landingScenarioFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .landing-hero-grid,
    .landing-use-grid,
    .landing-feature-grid,
    .landing-step-grid {
        grid-template-columns: 1fr;
    }

    .landing-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-product-card {
        transform: none;
        animation: none;
    }

    .landing-product-card::before {
        transform: rotate(-2deg);
    }

    .landing-carousel-stack {
        min-height: 0;
    }

    .landing-section-head {
        text-align: left;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .landing-page {
        margin-top: -1rem;
    }

    .landing-hero {
        padding-top: 54px;
    }

    .landing-actions {
        flex-direction: column;
    }

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

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

    .landing-btn {
        width: 100%;
    }

    .landing-product-card {
        border-radius: 28px;
    }
}
