/* LinkHub landing — ispirato a guns.lol */

:root {
    --lh-bg: #0a0a0a;
    --lh-card: #101010;
    --lh-card-2: #111111;
    --lh-border: #161616;
    --lh-border-2: #181818;
    --lh-purple: #7e2c8b;
    --lh-purple-soft: rgba(126, 44, 139, 0.39);
    --lh-purple-border: rgba(126, 44, 139, 0.49);
    --lh-purple-glow: rgba(218, 105, 255, 0.31);
    --lh-text: #fafafa;
    --lh-muted: #939393;
    --lh-muted-2: #c2c2c2;
    --lh-gradient: linear-gradient(90deg, #d283eb, #e3b5f1);
    --lh-gradient-bg: linear-gradient(135deg, rgba(126, 44, 139, 0.35) 0%, rgba(17, 17, 17, 0.9) 45%, rgba(10, 10, 10, 1) 100%);
    --lh-nav-max: 78rem;
    --lh-content-max: 75rem;
}

body.lh-landing {
    background-color: var(--lh-bg);
    color: var(--lh-text);
    overflow-x: hidden;
}

body.lh-landing ::selection {
    color: #09090b;
    background: #eeeeee;
}

body.lh-landing ::-webkit-scrollbar {
    width: 8px;
}

body.lh-landing ::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #181818;
}

/* Nav pill */
.lh-landing-nav-wrap {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 0 18px;
    pointer-events: none;
}

.lh-landing-nav {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--lh-nav-max), 100%);
    min-height: 77px;
    padding: 0 22px;
    border-radius: 50px;
    background: rgba(17, 17, 17, 0.84);
    border: 2px solid rgba(24, 24, 24, 0.9);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.lh-landing-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--lh-text);
    font-weight: 600;
    font-size: 1.45rem;
}

.lh-landing-logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lh-landing-logo-icon .lh-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lh-landing-logo span {
    color: #c265e0;
}

.lh-landing-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lh-landing-nav-links a {
    text-decoration: none;
    color: var(--lh-text);
    font-size: 1rem;
    font-weight: 400;
    padding: 0 14px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: 0.25s;
}

.lh-landing-nav-links a:hover:not(.lh-landing-btn-nav) {
    background: #202020;
}

.lh-landing-btn-nav {
    border-radius: 9999px !important;
    background: rgba(133, 74, 153, 0.36) !important;
    border: 2px solid rgba(133, 74, 153, 0.36) !important;
    padding: 0 18px !important;
}

.lh-landing-btn-nav:hover {
    background: rgba(133, 74, 153, 0.53) !important;
    box-shadow: 0 2px 16px rgba(218, 105, 255, 0.31);
}

/* Hero */
.lh-landing-hero-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(126, 44, 139, 0.28), transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(194, 101, 224, 0.12), transparent 50%),
        var(--lh-bg);
}

.lh-landing-hero {
    padding: 165px 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.lh-landing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid rgba(58, 26, 67, 0.77);
    background: var(--lh-gradient-bg);
    font-weight: 500;
    margin-bottom: 18px;
}

.lh-landing-badge strong {
    background: var(--lh-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.lh-landing-hero h1 {
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 2.95rem);
    font-weight: 600;
    color: var(--lh-text);
    line-height: 1.15;
    max-width: 18ch;
}

.lh-landing-hero .lh-landing-sub {
    margin: 0;
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: #dddddd;
    max-width: 36rem;
    line-height: 1.5;
}

.lh-landing-claim-wrap {
    margin-top: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.lh-landing-claim {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    background: var(--lh-card);
    border: 2px solid var(--lh-border);
    border-radius: 14px;
    padding: 12px;
    box-sizing: border-box;
}

.lh-landing-claim-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5e5e5;
    font-size: 0.97rem;
}

.lh-landing-claim-row {
    display: flex;
    gap: 6px;
    width: 100%;
}

.lh-landing-claim-prefix {
    position: relative;
    flex: 1;
    min-width: 0;
}

.lh-landing-claim-prefix-tag {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    color: #777;
    font-size: 0.95rem;
    font-weight: 500;
    pointer-events: none;
    white-space: nowrap;
}

.lh-landing-claim-prefix-tag i {
    color: #666;
    font-size: 1.1rem;
}

.lh-landing-claim input {
    width: 100%;
    box-sizing: border-box;
    background: #0c0c0c;
    border: 2px solid transparent;
    border-radius: 15px;
    color: #eee;
    font-size: 0.95rem;
    padding: 10px 12px 10px 7.5rem;
    outline: none;
    transition: 0.3s;
}

.lh-landing-claim input:hover,
.lh-landing-claim input:focus {
    border-color: #191919;
}

.lh-landing-btn-claim {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lh-text);
    cursor: pointer;
    border: 2px solid rgba(126, 44, 139, 0.34);
    background: linear-gradient(180deg, rgba(126, 44, 139, 0.39), rgba(109, 36, 122, 0.35));
    transition: 0.25s;
    white-space: nowrap;
}

.lh-landing-btn-claim:hover {
    border-color: rgba(135, 53, 153, 0.59);
}

.lh-landing-btn-claim:active {
    transform: translateY(4px);
}

.lh-landing-btn-primary {
    text-decoration: none;
    padding: 11px 17px;
    display: inline-flex;
    align-items: center;
    color: var(--lh-text);
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 500;
    background: rgba(218, 105, 255, 0.2);
    border: 2px solid rgba(126, 63, 149, 0.5);
    transition: 0.25s;
    box-shadow: 0 0 15px rgba(126, 63, 149, 0.5);
}

.lh-landing-btn-primary:hover {
    box-shadow: 0 2px 16px rgba(218, 105, 255, 0.31);
}

.lh-landing-btn-primary:active {
    transform: translateY(4px);
}

.lh-landing-btn-secondary {
    text-decoration: none;
    padding: 12px 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lh-text);
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 500;
    background: #171717;
    border: 2px solid #222222;
    transition: 0.25s;
}

.lh-landing-btn-secondary:hover {
    background: #1d1d1d;
    border-color: #252525;
}

.lh-landing-btn-secondary:active {
    transform: translateY(4px);
}

.lh-landing-hero-ctas {
    margin-top: 27px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.lh-landing-feedback {
    min-height: 1.25rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
}

.lh-landing-feedback .text-emerald-400 { color: #40b840; }
.lh-landing-feedback .text-red-400 { color: #d9534f; }

/* Profile preview + showcase */
.lh-landing-showcase {
    margin: 45px auto 0;
    padding: 0 30px;
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}

.lh-landing-preview-card {
    flex: 1 1 320px;
    max-width: 400px;
    background: var(--lh-card);
    border: 2px solid var(--lh-border);
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
}

.lh-landing-preview-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #0c0c0c;
    border-radius: 15px;
    position: relative;
}

.lh-landing-preview-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7e2c8b, #4a1a55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lh-landing-preview-meta h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 500;
}

.lh-landing-preview-meta p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: #979797;
}

.lh-landing-preview-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #191919;
    padding: 5px 8px;
    border-radius: 7px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ccc;
}

.lh-landing-preview-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lh-landing-preview-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #131313;
    border: 2px solid #181818;
    border-radius: 15px;
    color: #dfdfdf;
    font-size: 0.95rem;
    font-weight: 500;
}

.lh-landing-preview-link i {
    font-size: 1.2rem;
    color: #a258b4;
}

.lh-landing-info-panel {
    flex: 1 1 360px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lh-landing-info-panel h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 550;
    color: var(--lh-text);
}

.lh-landing-info-panel p {
    margin: 0;
    color: var(--lh-muted-2);
    font-size: 1.05rem;
    line-height: 1.55;
}

.lh-landing-info-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #e2e2e2;
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lh-landing-premium-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px;
    border-radius: 15px;
    border: 2px solid transparent;
    background: var(--lh-gradient-bg);
    cursor: default;
}

.lh-landing-premium-pill h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lh-landing-premium-pill span {
    font-size: 0.8rem;
    font-weight: 450;
    padding: 3px 10px;
    background: rgba(161, 79, 184, 0.42);
    border: 2px solid rgba(136, 65, 156, 0.64);
    border-radius: 15px;
    color: #fafafa;
}

.lh-landing-premium-pill p {
    margin: 0;
    font-size: 0.9rem;
    color: #b77dc9;
}

/* Community banner */
.lh-landing-community {
    margin: 9rem auto 0;
    width: min(var(--lh-content-max), calc(100% - 60px));
    padding: 27px;
    border-radius: 50px;
    border: 2px solid rgba(152, 73, 172, 0.23);
    background: var(--lh-gradient-bg);
    text-align: center;
    box-sizing: border-box;
}

.lh-landing-community p {
    margin: 0;
    font-size: 1.1rem;
    color: #fafafa;
}

.lh-landing-community a {
    background: var(--lh-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-decoration: none;
}

/* Features */
.lh-landing-features {
    margin-top: 13rem;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lh-landing-features h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 500;
    color: var(--lh-text);
}

.lh-landing-features h2 span {
    font-weight: 700;
    background: var(--lh-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lh-landing-features > p {
    margin: 10px 0 0;
    font-size: 1.2rem;
    color: #cecece;
    font-weight: 400;
}

.lh-landing-feature-grid {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 78rem;
}

.lh-landing-feature-card {
    display: flex;
    justify-content: space-between;
    width: min(250px, 100%);
    padding: 25px;
    background: var(--lh-card-2);
    border: 2px solid #141414;
    border-radius: 20px;
    transition: 0.3s;
    text-align: left;
}

.lh-landing-feature-card:hover {
    border-color: rgba(159, 83, 180, 0.23);
    cursor: default;
}

.lh-landing-feature-card h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 550;
}

.lh-landing-feature-card span {
    color: #b6b6b6;
    font-size: 1.05rem;
}

.lh-landing-feature-card i {
    font-size: 1.5rem;
    color: #9f53b4;
    align-self: center;
}

/* FAQ */
.lh-landing-faq {
    margin-top: 12rem;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.lh-landing-faq h2 {
    margin: 0;
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--lh-text);
}

.lh-landing-faq h2 span {
    font-weight: 700;
    background: linear-gradient(90deg, #d283eb, #a367b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lh-landing-faq-list {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lh-landing-faq-item {
    background: var(--lh-card);
    border: 2px solid #151515;
    border-radius: 17px;
    overflow: hidden;
    transition: border-color 0.16s, background 0.16s;
}

.lh-landing-faq-item.is-open,
.lh-landing-faq-item:hover {
    border-color: #212121;
    background: #121212;
}

.lh-landing-faq-trigger {
    width: 100%;
    border: none;
    background: transparent;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--lh-text);
    text-align: left;
}

.lh-landing-faq-trigger::after {
    content: "";
    width: 8px;
    min-width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
    opacity: 0.7;
}

.lh-landing-faq-item.is-open .lh-landing-faq-trigger::after {
    transform: rotate(-135deg);
}

.lh-landing-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.lh-landing-faq-body-inner {
    padding: 0 20px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Pricing */
.lh-landing-pricing {
    margin-top: 9rem;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lh-landing-pricing h2 {
    margin: 0 0 6px;
    font-size: 2.1rem;
    font-weight: 550;
    color: var(--lh-text);
    text-align: center;
}

.lh-landing-pricing > p {
    margin: 0 0 35px;
    text-align: center;
    color: #cecece;
    font-size: 1.2rem;
}

.lh-landing-pricing-cards {
    display: flex;
    gap: 28px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 820px;
}

.lh-landing-plan {
    width: 100%;
    max-width: 370px;
    padding: 20px;
    background: var(--lh-card);
    border: 2px solid #141414;
    border-radius: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.lh-landing-plan.is-premium {
    min-height: 480px;
    border-color: #191919;
    background-image: var(--lh-gradient-bg);
    background-origin: border-box;
    position: relative;
}

.lh-landing-plan-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #161616;
    border: 2px solid #1b1b1b;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    background-image: var(--lh-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lh-landing-plan-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.55rem;
    font-weight: 550;
    color: var(--lh-text);
    margin: 0;
}

.lh-landing-plan-head i {
    font-size: 1.4rem;
}

.lh-landing-plan-desc {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #a7a7a7;
    max-width: 300px;
}

.lh-landing-plan-price {
    margin-top: 25px;
    color: var(--lh-text);
}

.lh-landing-plan-price strong {
    font-size: 1.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lh-landing-plan-price span {
    color: #cacaca;
    font-size: 1rem;
    font-weight: 400;
}

.lh-landing-plan-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.lh-landing-plan-features li {
    list-style: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lh-text);
}

.lh-landing-plan-features li i {
    color: #a258b4;
    font-size: 0.9rem;
}

.lh-landing-plan-cta {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--lh-text);
    font-weight: 500;
    background: rgba(126, 44, 139, 0.53);
    border: 2px solid rgba(126, 44, 139, 0.61);
    transition: 0.25s;
    box-sizing: border-box;
    height: 45px;
}

.lh-landing-plan-cta:hover {
    background: rgba(126, 44, 139, 0.39);
    border-color: rgba(126, 44, 139, 0.55);
}

.lh-landing-plan-cta:active {
    transform: translateY(4px);
}

.lh-landing-plan:not(.is-premium) .lh-landing-plan-cta {
    margin-top: auto;
    background: rgba(243, 243, 243, 0.21);
    border-color: rgba(243, 243, 243, 0.12);
}

.lh-landing-plan:not(.is-premium) .lh-landing-plan-cta:hover {
    background: rgba(243, 243, 243, 0.28);
}

/* Footer */
.lh-landing-footer-wrap {
    margin-top: 28rem;
    width: 100%;
    border-top: 2px solid #0e0e0e;
    background: #0c0c0c;
    padding: 60px 30px 40px;
    box-sizing: border-box;
}

.lh-landing-footer {
    width: min(var(--lh-nav-max), 100%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 45px;
    flex-wrap: wrap;
}

.lh-landing-footer-brand img,
.lh-landing-footer-brand .lh-landing-logo-icon {
    width: 56px;
    height: 56px;
}

.lh-landing-footer-brand p {
    margin: 15px 0 0;
    color: #cfcece;
    font-size: 1rem;
    max-width: 350px;
    line-height: 1.5;
}

.lh-landing-footer-cols {
    display: flex;
    gap: 55px;
    flex-wrap: wrap;
}

.lh-landing-footer-col h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 450;
    color: var(--lh-text);
}

.lh-landing-footer-col nav {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.lh-landing-footer-col a {
    font-size: 1rem;
    text-decoration: none;
    color: #aaa8a8;
    transition: 0.3s;
}

.lh-landing-footer-col a:hover {
    color: #cccccc;
}

.lh-landing-footer-bottom {
    width: min(var(--lh-nav-max), 100%);
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1.5px solid #101010;
    text-align: center;
    color: #aaa8a8;
    font-size: 0.97rem;
}

/* Pagine legali → assets/css/legal.css */

/* Cookie bar */
.lh-landing-cookie {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    width: min(700px, calc(100% - 24px));
    padding: 10px 10px 10px 15px;
    background: #181818;
    border: 2px solid #1f1f1f;
    border-radius: 50px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, transform 0.4s;
}

.lh-landing-cookie.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.lh-landing-cookie p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--lh-text);
    font-weight: 500;
}

.lh-landing-cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.lh-landing-cookie-actions button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.25s;
}

.lh-landing-cookie-dismiss {
    background: transparent;
    color: #939393;
    padding: 4px 8px;
}

.lh-landing-cookie-dismiss:hover {
    color: #aaaaaa;
}

.lh-landing-cookie-accept {
    background: var(--lh-purple-soft);
    border: 2px solid var(--lh-purple-border);
    padding: 7px 15px;
    color: #fafafa;
    border-radius: 20px;
}

.lh-landing-cookie-accept:hover {
    background: rgba(126, 44, 139, 0.48);
}

@media (max-width: 770px) {
    .lh-landing-nav-links a:not(.lh-landing-btn-nav) {
        display: none;
    }
}

@media (max-width: 600px) {
    .lh-landing-hero {
        padding-top: 140px;
    }

    .lh-landing-claim-row {
        flex-direction: column;
    }

    .lh-landing-community {
        border-radius: 25px;
        margin-top: 6rem;
    }

    .lh-landing-features,
    .lh-landing-faq,
    .lh-landing-pricing {
        margin-top: 8rem;
    }

    .lh-landing-footer-wrap {
        margin-top: 14rem;
    }

    .lh-landing-cookie {
        flex-direction: column;
        border-radius: 20px;
        padding: 14px;
        text-align: center;
    }

    .lh-landing-cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 465px) {
    .lh-landing-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .lh-landing-hero-ctas a {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}
