﻿        :root {
            --bg: #081120;
            --bg-soft: #0f172a;
            --surface: rgba(255,255,255,0.06);
            --surface-strong: rgba(255,255,255,0.09);
            --text: #edf2ff;
            --text-soft: #c7d2fe;
            --muted: #93a4c3;
            --line: rgba(255,255,255,0.12);
            --primary: #6d7cff;
            --primary-2: #3dd9c5;
            --accent: #8b5cf6;
            --success: #34d399;
            --warning: #fbbf24;
            --shadow: 0 20px 60px rgba(0,0,0,0.35);
            --radius: 22px;
            --container: 1180px;
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 15% 20%, rgba(61, 217, 197, 0.14), transparent 0 22%),
                radial-gradient(circle at 85% 10%, rgba(109, 124, 255, 0.18), transparent 0 24%),
                radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.12), transparent 0 30%),
                linear-gradient(180deg, #07101d 0%, #0b1220 45%, #081120 100%);
            line-height: 1.6;
        }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        .container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }
        .section { padding: 100px 0; }
        .section-title {
            font-size: clamp(2rem, 4vw, 3.4rem);
            line-height: 1.05;
            margin: 0 0 1rem;
            letter-spacing: -0.04em;
        }
        .section-subtitle {
            max-width: 760px;
            color: var(--muted);
            font-size: 1.05rem;
            margin: 0;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            padding: .55rem .95rem;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,0.05);
            color: var(--text-soft);
            font-size: .92rem;
            backdrop-filter: blur(10px);
        }
        .badge-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-2), var(--primary));
            box-shadow: 0 0 18px rgba(61, 217, 197, .55);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 40;
            backdrop-filter: blur(14px);
            background: rgba(8,17,32,.62);
            border-bottom: 1px solid rgba(255,255,255,.06);
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            min-height: 78px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: .85rem;
            font-weight: 800;
            letter-spacing: -.03em;
        }
        .logo-mark {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
        .logo-text small {
            display: block;
            font-size: .72rem;
            font-weight: 600;
            color: var(--muted);
            letter-spacing: .06em;
            text-transform: uppercase;
        }
        .logo-text span {
            font-size: 1.15rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            color: var(--text-soft);
        }
        .nav-links a {
            font-size: .96rem;
            transition: color .2s ease, opacity .2s ease;
        }
        .nav-links a:hover { color: white; }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: .9rem 1.15rem;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,.08);
            background: linear-gradient(135deg, rgba(109,124,255,.18), rgba(61,217,197,.14));
            font-weight: 700;
        }

        .menu-toggle {
            display: none;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.05);
            color: white;
            border-radius: 12px;
            padding: .7rem .85rem;
            cursor: pointer;
        }

        .hero {
            padding: 84px 0 70px;
            position: relative;
            overflow: hidden;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 2.4rem;
            align-items: center;
        }
        .hero-copy h1 {
            margin: 1.2rem 0 1.2rem;
            font-size: clamp(2.7rem, 5vw, 5rem);
            line-height: .96;
            letter-spacing: -.05em;
        }
        .hero-copy p {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 720px;
            margin: 0 0 2rem;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .6rem;
            padding: 1rem 1.3rem;
            border-radius: 16px;
            border: 1px solid transparent;
            font-weight: 800;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
        }
        .btn:hover { transform: translateY(-2px); }
        .btn-primary {
            color: white;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            box-shadow: 0 18px 40px rgba(109,124,255,.28);
        }
        .btn-secondary {
            color: white;
            background: rgba(255,255,255,.04);
            border-color: var(--line);
        }
        .hero-note {
            color: var(--text-soft);
            font-size: .95rem;
        }

        .hero-card {
            position: relative;
            padding: 1.4rem;
            border: 1px solid var(--line);
            border-radius: 30px;
            background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .hero-card::before {
            content: "";
            position: absolute;
            inset: auto -15% -35% auto;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(61,217,197,.25), transparent 65%);
            pointer-events: none;
        }
        .window {
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 22px;
            background: rgba(8,17,32,.88);
            overflow: hidden;
        }
        .window-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .9rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,.06);
            background: rgba(255,255,255,.03);
        }
        .window-dots {
            display: flex;
            gap: .45rem;
        }
        .window-dots span {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: rgba(255,255,255,.3);
        }
        .window-label {
            font-size: .85rem;
            color: var(--muted);
        }
        .dashboard {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 1rem;
            padding: 1rem;
        }
        .dashboard-panel,
        .dashboard-side {
            display: grid;
            gap: 1rem;
        }
        .stat,
        .mini-card,
        .task-card {
            border: 1px solid rgba(255,255,255,.07);
            border-radius: 18px;
            background: rgba(255,255,255,.03);
            padding: 1rem;
        }
        .stat strong {
            display: block;
            font-size: 1.7rem;
            margin-top: .2rem;
        }
        .stat span,
        .mini-card span,
        .task-card span {
            color: var(--muted);
            font-size: .9rem;
        }
        .kpis {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: .9rem;
        }
        .bars {
            display: grid;
            gap: .7rem;
        }
        .bar-row {
            display: grid;
            gap: .4rem;
        }
        .bar-track {
            height: 10px;
            border-radius: 999px;
            background: rgba(255,255,255,.08);
            overflow: hidden;
        }
        .bar-fill {
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--primary-2), var(--primary));
        }
        .chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: .55rem;
        }
        .chip {
            padding: .45rem .7rem;
            border-radius: 999px;
            background: rgba(255,255,255,.06);
            font-size: .82rem;
            color: var(--text-soft);
            border: 1px solid rgba(255,255,255,.07);
        }

        .trust-row {
            margin-top: 1.6rem;
            display: flex;
            flex-wrap: wrap;
            gap: .8rem;
            color: var(--text-soft);
        }
        .trust-item {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            padding: .75rem 1rem;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: rgba(255,255,255,.04);
        }
        .trust-item::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--success);
            box-shadow: 0 0 12px rgba(52,211,153,.6);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            margin-top: 2.4rem;
        }
        .card {
            position: relative;
            padding: 1.4rem;
            background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
            border: 1px solid var(--line);
            border-radius: 24px;
            box-shadow: var(--shadow);
        }
        .card h3 {
            margin: .7rem 0 .65rem;
            font-size: 1.25rem;
        }
        .card p {
            margin: 0;
            color: var(--muted);
        }
        .icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, rgba(61,217,197,.22), rgba(109,124,255,.18));
            border: 1px solid rgba(255,255,255,.08);
            font-size: 1.2rem;
        }

        .apps-grid,
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            margin-top: 2.6rem;
        }
        .app-card,
        .price-card {
            padding: 1.5rem;
            border-radius: 26px;
            border: 1px solid var(--line);
            background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
            box-shadow: var(--shadow);
        }
        .app-top,
        .price-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .app-tag,
        .price-badge {
            padding: .45rem .7rem;
            border-radius: 999px;
            font-size: .78rem;
            background: rgba(255,255,255,.06);
            color: var(--text-soft);
            border: 1px solid rgba(255,255,255,.07);
            white-space: nowrap;
        }
        .app-card h3,
        .price-card h3 { margin: 0; font-size: 1.3rem; }
        .app-card p,
        .price-card p { color: var(--muted); margin: 0 0 1.2rem; }
        .app-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: .8rem;
            margin-top: 1.2rem;
        }
        .status {
            font-size: .9rem;
            color: var(--text-soft);
        }
        .price-amount {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: .75rem;
            letter-spacing: -.04em;
        }
        .feature-list {
            list-style: none;
            margin: 1.2rem 0 0;
            padding: 0;
            display: grid;
            gap: .75rem;
        }
        .feature-list li {
            position: relative;
            padding-left: 1.5rem;
            color: var(--text-soft);
        }
        .feature-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .55rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-2), var(--primary));
        }
        .featured {
            transform: translateY(-8px);
            border-color: rgba(109,124,255,.35);
            background: linear-gradient(180deg, rgba(109,124,255,.16), rgba(255,255,255,.04));
        }

        .split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.4rem;
            margin-top: 2.4rem;
        }
        .panel {
            padding: 1.5rem;
            border-radius: 26px;
            border: 1px solid var(--line);
            background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
            box-shadow: var(--shadow);
        }
        .panel h3 { margin-top: 0; font-size: 1.45rem; }
        .panel p { color: var(--muted); }
        .panel ul {
            list-style: none;
            padding: 0;
            margin: 1.1rem 0 0;
            display: grid;
            gap: .8rem;
        }
        .panel li {
            padding: .95rem 1rem;
            border-radius: 16px;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.07);
            color: var(--text-soft);
        }

        .contact-wrap {
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            gap: 1.4rem;
            margin-top: 2.5rem;
        }
        .contact-card,
        .form-card {
            padding: 1.6rem;
            border-radius: 28px;
            border: 1px solid var(--line);
            background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
            box-shadow: var(--shadow);
        }
        .contact-points {
            display: grid;
            gap: .9rem;
            margin-top: 1.2rem;
        }
        .contact-point {
            padding: 1rem 1rem;
            border-radius: 18px;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.07);
        }
        .contact-point strong { display: block; margin-bottom: .25rem; }
        form { display: grid; gap: 1rem; }
        .field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        label {
            display: grid;
            gap: .45rem;
            color: var(--text-soft);
            font-weight: 600;
            font-size: .95rem;
        }
        input:not([type="checkbox"]):not([type="radio"]), textarea, select {
            width: 100%;
            border: 1px solid rgba(255,255,255,.09);
            background: rgba(255,255,255,.04);
            color: white;
            border-radius: 16px;
            padding: .95rem 1rem;
            font: inherit;
            resize: vertical;
            outline: none;
            transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        input:not([type="checkbox"]):not([type="radio"]):focus, textarea:focus, select:focus {
            border-color: rgba(109,124,255,.55);
            box-shadow: 0 0 0 4px rgba(109,124,255,.13);
            background: rgba(255,255,255,.06);
        }
        textarea { min-height: 150px; }
        select {
            background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.7) 50%), linear-gradient(135deg, rgba(255,255,255,.7) 50%, transparent 50%);
            background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
            background-size: 6px 6px, 6px 6px;
            background-repeat: no-repeat;
            padding-right: 3rem;
        }
        select option {
            background: #111a2e;
            color: #edf2ff;
        }
        .form-note {
            color: var(--muted);
            font-size: .9rem;
            margin: 0;
        }
        .consent-check {
            display: flex;
            align-items: flex-start;
            gap: .65rem;
            color: var(--text-soft);
            font-size: .9rem;
            line-height: 1.45;
        }
        .consent-check input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: .2rem;
            flex: 0 0 auto;
            appearance: none;
            -webkit-appearance: none;
            border: 1px solid rgba(255,255,255,.3);
            border-radius: 6px;
            background: rgba(255,255,255,.04);
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
        }
        .consent-check input[type="checkbox"]::after {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 2px;
            transform: scale(0);
            transition: transform .16s ease;
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
        }
        .consent-check input[type="checkbox"]:checked {
            border-color: rgba(109,124,255,.75);
            box-shadow: 0 0 0 3px rgba(109,124,255,.18);
            background: rgba(109,124,255,.16);
        }
        .consent-check input[type="checkbox"]:checked::after {
            transform: scale(1);
        }
        .consent-check input[type="checkbox"]:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(109,124,255,.22);
        }
        .consent-check a {
            text-decoration: underline;
        }
        .success-box {
            display: none;
            margin-top: 1rem;
            padding: 1rem 1.1rem;
            border-radius: 18px;
            border: 1px solid rgba(52,211,153,.22);
            background: rgba(52,211,153,.1);
            color: #d1fae5;
        }
        .error-box {
            display: none;
            margin-top: 1rem;
            padding: 1rem 1.1rem;
            border-radius: 18px;
            border: 1px solid rgba(248,113,113,.35);
            background: rgba(248,113,113,.12);
            color: #fecaca;
        }
        .success-box.show { display: block; }
        .error-box.show { display: block; }

        .faq-wrap {
            display: grid;
            gap: 1rem;
            margin-top: 2.2rem;
            max-width: 900px;
        }
        .faq-item {
            border: 1px solid var(--line);
            border-radius: 20px;
            background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
            overflow: hidden;
            box-shadow: 0 16px 38px rgba(0,0,0,.24);
            transition: border-color .2s ease, transform .2s ease;
        }
        .faq-item:hover {
            border-color: rgba(109,124,255,.36);
            transform: translateY(-1px);
        }
        .faq-item summary {
            cursor: pointer;
            padding: 1rem 1.2rem;
            font-weight: 800;
            color: var(--text);
            list-style: none;
            position: relative;
            padding-right: 2.4rem;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: var(--primary-2);
            font-weight: 900;
        }
        .faq-item[open] summary::after {
            content: "−";
        }
        .faq-item p {
            margin: 0;
            padding: 0 1.2rem 1.1rem;
            color: var(--text-soft);
            line-height: 1.6;
            border-top: 1px solid rgba(255,255,255,.06);
        }

        .footer {
            padding: 34px 0 60px;
            color: var(--muted);
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            align-items: center;
            padding-top: 1.6rem;
            border-top: 1px solid rgba(255,255,255,.08);
        }
        .footer-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .footer-links button {
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.14);
            color: var(--text-soft);
            font: inherit;
            cursor: pointer;
            padding: .38rem .7rem;
            border-radius: 999px;
            transition: background .2s ease, border-color .2s ease, color .2s ease;
        }
        .footer-links button:hover {
            background: rgba(109,124,255,.2);
            border-color: rgba(109,124,255,.45);
            color: #fff;
        }

        .cookie-banner {
            position: fixed;
            right: 1rem;
            bottom: 1rem;
            z-index: 90;
            border: 1px solid var(--line);
            background:
                radial-gradient(circle at 85% -20%, rgba(61,217,197,.26), transparent 46%),
                linear-gradient(180deg, rgba(9,18,34,.98), rgba(7,14,27,.98));
            border-radius: 20px;
            padding: 1rem 1rem .95rem;
            box-shadow: 0 24px 55px rgba(0,0,0,.42);
            display: none;
            gap: 1rem;
            width: min(560px, calc(100% - 2rem));
            backdrop-filter: blur(12px);
        }
        .cookie-banner.show {
            display: grid;
        }
        .cookie-top {
            display: grid;
            gap: .45rem;
        }
        .cookie-title {
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.2;
            letter-spacing: -.01em;
            color: #fff;
        }
        .cookie-banner p {
            margin: 0;
            color: var(--text-soft);
            font-size: .92rem;
        }
        .cookie-actions {
            display: flex;
            gap: .75rem;
            flex-wrap: wrap;
        }
        .cookie-link-btn {
            background: none;
            border: 0;
            color: var(--primary-2);
            text-decoration: underline;
            cursor: pointer;
            padding: 0;
            font: inherit;
            font-size: .9rem;
            text-align: left;
        }
        .cookie-preferences {
            display: none;
            border-top: 1px solid rgba(255,255,255,.1);
            padding-top: .9rem;
            gap: .8rem;
        }
        .cookie-preferences.show {
            display: grid;
        }
        .cookie-pref {
            border: 1px solid rgba(255,255,255,.1);
            background: rgba(255,255,255,.03);
            border-radius: 14px;
            padding: .75rem .8rem;
            display: grid;
            gap: .5rem;
        }
        .cookie-pref-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: .8rem;
        }
        .cookie-pref h4 {
            margin: 0;
            font-size: .95rem;
            color: #fff;
        }
        .cookie-pref p {
            margin: 0;
            font-size: .86rem;
            color: var(--muted);
        }
        .switch {
            position: relative;
            display: inline-flex;
            width: 46px;
            height: 26px;
        }
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,.2);
            border-radius: 999px;
            transition: background .2s ease;
        }
        .slider:before {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            left: 3px;
            top: 3px;
            border-radius: 50%;
            background: #fff;
            transition: transform .2s ease;
        }
        .switch input:checked + .slider {
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
        }
        .switch input:checked + .slider:before {
            transform: translateX(20px);
        }
        .switch input:disabled + .slider {
            opacity: .65;
        }
        .cookie-pref-actions {
            display: flex;
            justify-content: flex-end;
        }

        .legal-main {
            padding: 86px 0 72px;
        }
        .legal-card {
            border: 1px solid var(--line);
            border-radius: 24px;
            background: rgba(255,255,255,.04);
            box-shadow: var(--shadow);
            padding: 1.5rem;
        }
        .legal-card h1 {
            margin-top: 0;
            margin-bottom: .6rem;
            font-size: clamp(2rem, 4vw, 2.8rem);
            letter-spacing: -.03em;
        }
        .legal-meta {
            color: var(--muted);
            margin: 0 0 1.2rem;
        }
        .legal-card h2 {
            margin-top: 1.4rem;
            margin-bottom: .55rem;
            font-size: 1.25rem;
        }
        .legal-card p,
        .legal-card li {
            color: var(--text-soft);
        }
        .legal-card ul {
            padding-left: 1.2rem;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .7s ease, transform .7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1024px) {
            .hero-grid,
            .split,
            .contact-wrap,
            .dashboard,
            .apps-grid,
            .pricing-grid,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .featured { transform: none; }
        }

        @media (max-width: 860px) {
            .menu-toggle { display: inline-flex; }
            .nav-links {
                position: absolute;
                left: 1rem;
                right: 1rem;
                top: calc(100% + .75rem);
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem;
                border-radius: 20px;
                border: 1px solid var(--line);
                background: rgba(8,17,32,.98);
                box-shadow: var(--shadow);
            }
            .nav-links.open { display: flex; }
            .nav-links a { padding: .35rem 0; }
            .field-row,
            .kpis {
                grid-template-columns: 1fr;
            }
            .hero { padding-top: 52px; }
            .section { padding: 78px 0; }
        }

        @media (max-width: 560px) {
            .container { width: min(100% - 1.2rem, var(--container)); }
            .hero-actions { flex-direction: column; }
            .btn { width: 100%; }
            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .cookie-banner {
                right: .6rem;
                bottom: .6rem;
                width: calc(100% - 1.2rem);
            }
        }

.blog-card-badge {
    display: inline-flex;
    margin-bottom: 1rem;
}

.blog-card-title {
    margin-top: 0;
}

.blog-card-title a {
    color: inherit;
    text-decoration: underline;
}

