.webdev-landing {
    --primary: #6366F1;
    --gray-700: #334155;
    --gray-600: #475569;
    --white: #FFFFFF;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --bg: #f8fafc;
    --bg-soft: #eef2ff;
    --line: rgba(51, 65, 85, 0.08);
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 24px 80px rgba(99, 102, 241, 0.18);
    --radius: 24px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--gray-700);
    font-family: var(--font-sans);
}

.webdev-landing *,
.webdev-landing *::before,
.webdev-landing *::after {
    box-sizing: border-box;
}

.webdev-landing img {
    max-width: 100%;
    display: block;
}

.webdev-landing a {
    text-decoration: none;
}

.wd-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wd-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.wd-bg-1 {
    width: 320px;
    height: 320px;
    background: rgba(99, 102, 241, 0.12);
    top: 80px;
    left: -100px;
    animation: wdFloatBg 12s ease-in-out infinite;
}

.wd-bg-2 {
    width: 380px;
    height: 380px;
    background: rgba(99, 102, 241, 0.10);
    top: 900px;
    right: -140px;
    animation: wdFloatBg 16s ease-in-out infinite reverse;
}

@keyframes wdFloatBg {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

.wd-hero,
.wd-services,
.wd-platforms,
.wd-advantages,
.wd-process,
.wd-cases,
.wd-freebies,
.wd-reviews,
.wd-cta,
.wd-faq,
.wd-seo {
    padding: 88px 0;
    position: relative;
}

.wd-hero {
    padding-top: 130px;
}

.wd-trust {
    padding: 18px 0 0;
}

.wd-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    min-height: 78vh;
}

.wd-badge,
.wd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.10);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 22px;
}

.wd-kicker--light {
    background: rgba(255, 255, 255, 0.14);
    color: #e0e7ff;
}

.wd-title {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0 0 20px;
    font-weight: 800;
    color: var(--gray-700);
}

.wd-title span {
    color: var(--primary);
    display: inline-block;
}

.wd-subtitle,
.wd-section-head p,
.wd-platforms__content p,
.wd-freebies__content p,
.wd-cta__content p,
.wd-seo p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

.wd-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.wd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    transition: .25s ease;
    border: 1px solid transparent;
}

.wd-btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.28);
}

.wd-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.34);
}

.wd-btn--ghost {
    background: rgba(255, 255, 255, 0.85);
    color: var(--gray-700);
    border-color: var(--line);
    backdrop-filter: blur(10px);
}

.wd-btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.24);
    color: var(--primary);
}

.wd-btn--light {
    background: #fff;
    color: var(--primary);
}

.wd-btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(255, 255, 255, 0.18);
}

.wd-proof {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.wd-proof__item {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 65, 85, 0.08);
    border-radius: 18px;
    padding: 16px 18px;
    min-width: 160px;
    box-shadow: var(--shadow);
}

.wd-proof__item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--gray-700);
}

.wd-proof__item span {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
}

.wd-glass-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    box-shadow: var(--shadow-hover);
    backdrop-filter: blur(18px);
    padding: 20px;
    /* overflow: hidden; */
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    animation: wdLevitate 7s ease-in-out infinite;
}

@keyframes wdLevitate {

    0%,
    100% {
        transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(0);
    }

    50% {
        transform: perspective(1200px) rotateY(-6deg) rotateX(5deg) translateY(-12px);
    }
}

.wd-glass-card__top {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.wd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.35);
}

.wd-mockup {
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    border: 1px solid rgba(99, 102, 241, 0.12);
    padding: 18px;
    min-height: 420px;
    position: relative;
}

.wd-mockup__panel {
    background: #fff;
    border-radius: 20px;
    height: 100%;
    padding: 22px;
    box-shadow: inset 0 0 0 1px rgba(51, 65, 85, 0.06);
}

.wd-mockup__line {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.25), rgba(99, 102, 241, 0.10));
    margin-bottom: 12px;
}

.wd-w-80 {
    width: 80%;
}

.wd-w-60 {
    width: 60%;
}

.wd-w-90 {
    width: 90%;
}

.wd-mockup__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.wd-mini-card {
    height: 120px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12), rgba(99, 102, 241, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.12);
}

.wd-mockup__cta {
    height: 52px;
    width: 180px;
    border-radius: 16px;
    background: var(--primary);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.28);
    margin-top: 18px;
}

.wd-floating {
    position: absolute;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(51, 65, 85, 0.08);
    box-shadow: var(--shadow);
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: wdTagFloat 6s ease-in-out infinite;
}

.wd-floating--one {
    top: 70px;
    right: -8px;
}

.wd-floating--two {
    bottom: 110px;
    left: -18px;
    animation-delay: .8s;
}

.wd-floating--three {
    bottom: 30px;
    right: 20px;
    animation-delay: 1.4s;
}

@keyframes wdTagFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.wd-trust__row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.wd-trust__item,
.wd-platform,
.wd-freebie {
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    color: var(--gray-700);
    font-weight: 600;
    box-shadow: var(--shadow);
}

.wd-section-head {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.wd-section-head h2,
.wd-platforms__content h2,
.wd-freebies__content h2,
.wd-cta__content h2,
.wd-seo h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    color: var(--gray-700);
}

.wd-services__grid,
.wd-advantages__grid,
.wd-reviews__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.wd-service-card,
.wd-adv-card,
.wd-review,
.wd-step,
.wd-seo__box,
.wd-faq__item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.wd-service-card,
.wd-adv-card,
.wd-review {
    padding: 26px;
    transition: .3s ease;
}

.wd-adv-card {
    text-align: center;
}

.wd-service-card:hover,
.wd-adv-card:hover,
.wd-review:hover,
.wd-case:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.wd-service-card h3,
.wd-adv-card h3,
.wd-step h3,
.wd-review strong {
    margin: 0 0 12px;
    color: var(--gray-700);
    font-size: 20px;
}

.wd-service-card p,
.wd-adv-card p,
.wd-step p,
.wd-review p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

.wd-service-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.wd-service-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

.wd-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.wd-platforms__wrap,
.wd-freebies__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06), rgba(99, 102, 241, 0.02));
    border: 1px solid rgba(99, 102, 241, 0.10);
    border-radius: 30px;
    padding: 34px;
}

.wd-platforms__list,
.wd-freebies__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.wd-process__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.wd-step {
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.wd-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 18px;
}

.wd-cases__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    grid-auto-flow: dense;
}

.wd-case {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 260px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: .3s ease;
}

.wd-case img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.wd-case:hover img {
    transform: scale(1.06);
}

.wd-case--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.wd-case--square {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
}

.wd-case__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.72));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wd-case__overlay strong {
    font-size: 18px;
}

.wd-case__overlay em {
    font-style: normal;
    opacity: .88;
    font-size: 14px;
}

.wd-review__stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.wd-review strong {
    display: block;
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 16px;
}

.wd-review__project {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--gray-600);
    opacity: 0.7;
}

/* ===== Short review text with expand ===== */
.wd-review__text {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

.wd-review__text-short {
    display: inline;
}

.wd-review__text-ellipsis {
    display: inline;
}

.wd-review__text-full {
    display: none;
}

.wd-review--expanded .wd-review__text-short {
    display: none;
}

.wd-review--expanded .wd-review__text-ellipsis {
    display: none;
}

.wd-review--expanded .wd-review__text-full {
    display: inline;
}

.wd-review__expand-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 0;
    border: none;
    background: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.wd-review__expand-btn:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===== Review Modal ===== */
.wd-review-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    animation: wdModalFadeIn 0.25s ease;
}

.wd-review-modal--open {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes wdModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wd-review-modal__content {
    background: #fff;
    border-radius: 24px;
    max-width: 600px;
    width: calc(100% - 32px);
    max-height: 80vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.2);
}

.wd-review-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 4px 8px;
    transition: color 0.2s;
}

.wd-review-modal__close:hover {
    color: var(--gray-700);
}

.wd-review-modal__stars {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.wd-review-modal__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0 0 20px;
}

.wd-review-modal__author {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.wd-review-modal__project {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    opacity: 0.7;
}

.wd-review-modal__date {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    opacity: 0.5;
    margin-top: 8px;
}

.wd-center {
    text-align: center;
    margin-top: 30px;
}

.wd-cta__box {
    background: linear-gradient(135deg, #4f46e5 0%, #6366F1 55%, #818cf8 100%);
    border-radius: 32px;
    padding: 40px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(99, 102, 241, 0.28);
}

.wd-cta__box::before,
.wd-cta__box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    filter: blur(10px);
}

.wd-cta__box::before {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -50px;
}

.wd-cta__box::after {
    width: 180px;
    height: 180px;
    bottom: -70px;
    left: -40px;
}

.wd-cta__content,
.wd-form {
    position: relative;
    z-index: 2;
}

.wd-cta__content h2,
.wd-cta__content p {
    color: #fff;
}

.wd-form {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(12px);
}

.wd-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.wd-form input,
.wd-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    outline: none;
    font: inherit;
}

.wd-form input::placeholder,
.wd-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.wd-form textarea {
    min-height: 130px;
    resize: vertical;
    margin-bottom: 14px;
}

.wd-form__note {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.wd-faq__list {
    display: grid;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.wd-faq__item {
    padding: 0;
    overflow: hidden;
}

.wd-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-weight: 700;
    color: var(--gray-700);
    position: relative;
}

.wd-faq__item summary::-webkit-details-marker {
    display: none;
}

.wd-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.wd-faq__item[open] summary::after {
    content: "−";
}

.wd-faq__item p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--gray-600);
    line-height: 1.7;
}

.wd-seo__box {
    padding: 34px;
}

/* ===== Google Material Symbols Icons ===== */

.wd-adv-icon {
    font-size: 32px;
    color: var(--primary);
    margin: 0 auto 12px;
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.10);
    border-radius: 14px;
}

.wd-freebie-icon {
    font-size: 24px;
    color: var(--primary);
    vertical-align: middle;
    margin-right: 10px;
}

.wd-freebie {
    display: flex;
    align-items: center;
    gap: 0;
}

@media (max-width: 1100px) {

    .wd-hero__grid,
    .wd-platforms__wrap,
    .wd-freebies__wrap,
    .wd-cta__box {
        grid-template-columns: 1fr;
    }

    .wd-services__grid,
    .wd-advantages__grid,
    .wd-reviews__grid,
    .wd-process__timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .wd-cases__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wd-case--wide,
    .wd-case--square {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {

    .wd-hero,
    .wd-services,
    .wd-platforms,
    .wd-advantages,
    .wd-process,
    .wd-cases,
    .wd-freebies,
    .wd-reviews,
    .wd-cta,
    .wd-faq,
    .wd-seo {
        padding: 64px 0;
    }

    .wd-hero__grid {
        gap: 28px;
        min-height: auto;
    }

    .wd-title {
        font-size: 40px;
    }

    .wd-subtitle,
    .wd-section-head p,
    .wd-platforms__content p,
    .wd-freebies__content p,
    .wd-cta__content p,
    .wd-seo p {
        font-size: 16px;
    }

    .wd-services__grid,
    .wd-advantages__grid,
    .wd-reviews__grid,
    .wd-process__timeline,
    .wd-platforms__list,
    .wd-freebies__list,
    .wd-form__grid,
    .wd-cases__grid {
        grid-template-columns: 1fr;
    }

    .wd-glass-card {
        transform: none;
        animation: none;
    }

    .wd-mockup {
        min-height: 320px;
    }

    .wd-proof {
        flex-direction: column;
    }

    .wd-cta__box,
    .wd-platforms__wrap,
    .wd-freebies__wrap,
    .wd-seo__box {
        padding: 24px;
        border-radius: 24px;
    }

    .wd-case {
        min-height: 220px;
    }

    .wd-faq__item summary {
        padding-right: 56px;
    }
}

/* ===== Toast-уведомление ===== */
.wd-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.25);
    font-family: var(--font-sans);
    animation: wdToastIn 0.35s ease-out;
    max-width: 420px;
    min-width: 320px;
}

.wd-toast--success {
    background: #0e1a1a;
    border: 1px solid #1e8e5e;
}

.wd-toast--error {
    background: #1a0e0e;
    border: 1px solid #e04a4a;
}

.wd-toast__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wd-toast--success .wd-toast__icon {
    background: rgba(30, 142, 94, 0.2);
    color: #2ecc71;
}

.wd-toast--error .wd-toast__icon {
    background: rgba(224, 74, 74, 0.2);
    color: #e74c3c;
}

.wd-toast__icon .material-symbols-outlined {
    font-size: 22px;
}

.wd-toast__content {
    flex: 1;
    min-width: 0;
}

.wd-toast__title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #e4e8f1;
    margin-bottom: 2px;
}

.wd-toast__text {
    font-size: 13px;
    color: #8b95a9;
    line-height: 1.4;
    margin: 0;
}

.wd-toast__close {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7488;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-toast__close:hover {
    color: #e4e8f1;
}

.wd-toast__close .material-symbols-outlined {
    font-size: 20px;
}

@keyframes wdToastIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 520px) {
    .wd-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
        padding: 14px 16px;
    }
}
.wd-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.45;
    cursor: pointer;
}

.wd-form__consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin: 2px 0 0;
    accent-color: #fff;
}

.wd-form__consent a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
