:root {
    --wd-primary: #008EF3;
    --wd-accent: #FF8C43;
    --wd-bg: #07111f;
    --wd-bg-2: #0b172a;
    --wd-panel: rgba(12, 27, 48, 0.92);
    --wd-panel-soft: rgba(16, 34, 59, 0.78);
    --wd-line: rgba(255, 255, 255, 0.11);
    --wd-line-strong: rgba(255, 255, 255, 0.18);
    --wd-text: #f5f8fc;
    --wd-muted: #b8c6d9;
    --wd-soft: #d8e2ee;
    --wd-success: #44d28f;
    --wd-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --wd-radius: 26px;
    --wd-radius-sm: 18px;
    --wd-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--wd-text);
    background:
        radial-gradient(circle at top left, rgba(0, 142, 243, 0.23), transparent 34rem),
        radial-gradient(circle at 85% 18%, rgba(255, 140, 67, 0.18), transparent 28rem),
        linear-gradient(180deg, #06101d 0%, #081426 38%, #07111f 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

code {
    border: 1px solid var(--wd-line);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.12rem 0.38rem;
    border-radius: 8px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wd-container {
    width: min(calc(100% - 40px), var(--wd-container));
    margin: 0 auto;
}

.wd-site-shell {
    min-height: 100vh;
}

.wd-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--wd-line);
    background: rgba(5, 13, 25, 0.82);
    backdrop-filter: blur(18px);
}

.wd-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wd-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.wd-brand__mark {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background:
        linear-gradient(135deg, rgba(0, 142, 243, 1), rgba(255, 140, 67, 1));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 16px 40px rgba(0, 142, 243, 0.24);
}

.wd-brand__copy {
    display: grid;
    line-height: 1.2;
}

.wd-brand__copy strong {
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.wd-brand__copy em {
    color: var(--wd-muted);
    font-size: 0.82rem;
    font-style: normal;
}

.wd-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wd-nav__link {
    color: var(--wd-soft);
    border: 1px solid transparent;
    padding: 10px 14px;
    border-radius: 999px;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease,
        color 160ms ease;
}

.wd-nav__link:hover,
.wd-nav__link.is-active {
    color: #fff;
    border-color: var(--wd-line-strong);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.wd-login-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.wd-login-menu__trigger {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--wd-soft);
    border: 1px solid var(--wd-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    padding: 0 15px;
    font: inherit;
    font-size: 0.96rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        color 160ms ease,
        border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.wd-login-menu__trigger:hover,
.wd-login-menu__trigger:focus-visible,
.wd-login-menu.is-open .wd-login-menu__trigger,
.wd-login-menu:focus-within .wd-login-menu__trigger {
    color: #fff;
    border-color: rgba(0, 142, 243, 0.46);
    background: rgba(0, 142, 243, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(0, 142, 243, 0.14);
}

.wd-login-menu__chevron {
    transition: transform 160ms ease;
}

.wd-login-menu.is-open .wd-login-menu__chevron,
.wd-login-menu:focus-within .wd-login-menu__chevron {
    transform: rotate(180deg);
}

.wd-login-menu__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 80;
    display: grid;
    gap: 8px;
    min-width: 310px;
    padding: 10px;
    border: 1px solid var(--wd-line);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(0, 142, 243, 0.16), transparent 14rem),
        rgba(5, 13, 25, 0.985);
    box-shadow: var(--wd-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px) scale(0.985);
    transform-origin: top right;
    transition:
        opacity 150ms ease,
        visibility 150ms ease,
        transform 150ms ease;
}

.wd-login-menu.is-open .wd-login-menu__panel,
.wd-login-menu:focus-within .wd-login-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wd-login-menu__panel::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 30px;
    width: 12px;
    height: 12px;
    border-left: 1px solid var(--wd-line);
    border-top: 1px solid var(--wd-line);
    background: rgba(5, 13, 25, 0.985);
    transform: rotate(45deg);
}

.wd-login-menu__item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    transition:
        border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
}

.wd-login-menu__item:hover,
.wd-login-menu__item:focus-visible {
    border-color: rgba(255, 140, 67, 0.38);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.wd-login-menu__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--wd-line);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.07);
}

.wd-login-menu__item strong,
.wd-login-menu__item em {
    display: block;
}

.wd-login-menu__item strong {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.15;
}

.wd-login-menu__item em {
    margin-top: 3px;
    color: var(--wd-muted);
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1.35;
}


.wd-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--wd-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
}

.wd-nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    margin: 4px auto;
    border-radius: 999px;
}

.wd-main {
    overflow: clip;
}

.wd-hero {
    padding: 88px 0 72px;
}

.wd-hero__grid,
.wd-split,
.wd-cta-panel__inner,
.wd-contact-layout,
.wd-faq-layout {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 40px;
    align-items: center;
}

.wd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7ecff;
    border: 1px solid rgba(0, 142, 243, 0.32);
    background: rgba(0, 142, 243, 0.12);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.wd-hero h1,
.wd-page-hero h1 {
    margin: 18px 0 18px;
    max-width: 900px;
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.wd-hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, #fff 0%, #9ed9ff 42%, #ffd1b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.wd-hero p,
.wd-page-hero p,
.wd-section-heading p,
.wd-feature-band__item p,
.wd-story-card p,
.wd-note-card p,
.wd-contact-card p,
.wd-note-banner p,
.wd-footer__copy {
    color: var(--wd-muted);
    margin: 0;
}

.wd-hero p {
    max-width: 720px;
    font-size: 1.12rem;
}

.wd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.wd-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--wd-line-strong);
    font-weight: 800;
    letter-spacing: -0.01em;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.wd-button:hover {
    transform: translateY(-2px);
}

.wd-button--accent {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-accent));
    box-shadow: 0 18px 42px rgba(0, 142, 243, 0.23);
}

.wd-button--ghost {
    background: rgba(255, 255, 255, 0.06);
}

.wd-button--small {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 0.94rem;
}

.wd-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.wd-trust-strip span,
.wd-story-card__label {
    color: var(--wd-soft);
    border: 1px solid var(--wd-line);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.84rem;
    font-weight: 800;
}

.wd-dashboard-mock,
.wd-process-card,
.wd-note-card,
.wd-contact-card,
.wd-note-banner {
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
    box-shadow: var(--wd-shadow);
}

.wd-dashboard-mock {
    overflow: hidden;
    position: relative;
}

.wd-dashboard-mock::before {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 140, 67, 0.18);
    filter: blur(10px);
}

.wd-dashboard-mock__top {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    border-bottom: 1px solid var(--wd-line);
}

.wd-dashboard-mock__top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.34);
}

.wd-dashboard-mock__top strong {
    margin-left: auto;
    color: #fff;
    font-size: 0.96rem;
}

.wd-dashboard-mock__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 22px;
    position: relative;
    z-index: 1;
}

.wd-mini-stat {
    display: grid;
    gap: 5px;
    min-height: 108px;
    border: 1px solid var(--wd-line);
    background: rgba(5, 13, 25, 0.46);
    border-radius: 19px;
    padding: 16px;
}

.wd-mini-stat em {
    color: var(--wd-muted);
    font-style: normal;
    font-size: 0.82rem;
}

.wd-mini-stat strong {
    font-size: 2.1rem;
    letter-spacing: -0.05em;
}

.wd-workboard {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    border: 1px solid var(--wd-line);
    background: rgba(5, 13, 25, 0.48);
    border-radius: 22px;
    padding: 16px;
}

.wd-workboard__row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.06);
}

.wd-workboard__row strong {
    color: #fff;
}

.wd-workboard__row span {
    color: var(--wd-soft);
}

.wd-workboard__row i {
    color: #d7ecff;
    font-style: normal;
    font-size: 0.83rem;
    border: 1px solid rgba(0, 142, 243, 0.32);
    background: rgba(0, 142, 243, 0.13);
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 800;
}

.wd-section,
.wd-page-hero {
    padding: 72px 0;
}

.wd-page-hero {
    padding-top: 74px;
    padding-bottom: 38px;
}

.wd-page-hero__inner {
    max-width: 1000px;
}

.wd-page-hero p {
    max-width: 820px;
    font-size: 1.1rem;
}

.wd-section--soft {
    background: rgba(255, 255, 255, 0.035);
    border-block: 1px solid var(--wd-line);
}

.wd-section--split {
    border-block: 1px solid var(--wd-line);
    background:
        linear-gradient(135deg, rgba(0,142,243,0.08), rgba(255,140,67,0.05)),
        rgba(255, 255, 255, 0.025);
}

.wd-section-heading {
    max-width: 860px;
    margin-bottom: 32px;
}

.wd-section-heading--tight {
    margin-bottom: 26px;
}

.wd-section-heading h2,
.wd-split h2,
.wd-cta-panel h2,
.wd-faq-layout h2,
.wd-contact-card h2,
.wd-note-banner h2 {
    margin: 16px 0 12px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.wd-card-grid,
.wd-pricing-grid,
.wd-story-grid {
    display: grid;
    gap: 20px;
}

.wd-card-grid--three,
.wd-story-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.wd-feature-card,
.wd-price-card,
.wd-story-card,
.wd-feature-band__item {
    border: 1px solid var(--wd-line);
    background: var(--wd-panel-soft);
    border-radius: var(--wd-radius);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.17);
}

.wd-feature-card h3,
.wd-price-card h2,
.wd-price-card h3,
.wd-story-card h2,
.wd-feature-band__item h2,
.wd-note-card h3 {
    margin: 12px 0 10px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.wd-feature-card h3 {
    font-size: 1.34rem;
}

.wd-feature-card p {
    color: var(--wd-muted);
    margin: 0;
}

.wd-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--wd-line);
    background: rgba(255,255,255,0.07);
    border-radius: 18px;
    font-size: 1.35rem;
}

.wd-process-card,
.wd-note-card,
.wd-note-banner {
    padding: 28px;
}

.wd-process-list,
.wd-story-card ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.wd-process-list li,
.wd-story-card li {
    border: 1px solid var(--wd-line);
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    color: var(--wd-soft);
}

.wd-process-list strong {
    color: var(--wd-accent);
    margin-right: 8px;
}

.wd-text-link {
    display: inline-block;
    margin-top: 18px;
    color: #d7ecff;
    font-weight: 900;
}

.wd-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wd-price-card.is-featured {
    border-color: rgba(255, 140, 67, 0.52);
    background:
        radial-gradient(circle at top right, rgba(255, 140, 67, 0.18), transparent 18rem),
        rgba(15, 33, 58, 0.94);
    transform: translateY(-8px);
}

.wd-price-card__badge {
    position: absolute;
    top: -14px;
    right: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--wd-accent), #ffb07d);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.wd-price-card__eyebrow {
    color: #d7ecff;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 900;
}

.wd-price-card__price {
    display: flex;
    align-items: end;
    gap: 10px;
    margin: 16px 0;
}

.wd-price-card__price strong {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.wd-price-card__price span {
    color: var(--wd-muted);
    padding-bottom: 7px;
    font-weight: 700;
}

.wd-price-card p {
    color: var(--wd-muted);
    margin: 0 0 20px;
}

.wd-price-card .wd-button {
    margin-top: auto;
}

.wd-pricing-grid--full .wd-price-card {
    min-height: 700px;
}

.wd-tick-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.wd-tick-list li {
    position: relative;
    padding-left: 28px;
    color: var(--wd-soft);
}

.wd-tick-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--wd-success);
    font-weight: 1000;
}

.wd-tick-list--compact {
    margin: 12px 0 24px;
}

.wd-feature-band {
    display: grid;
    gap: 20px;
}

.wd-feature-band__item {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 26px;
    align-items: start;
}

.wd-feature-band__item p {
    margin-top: 0;
}

.wd-story-grid {
    grid-template-columns: repeat(2, 1fr);
}

.wd-story-card p {
    margin: 12px 0 18px;
}

.wd-story-card ol {
    gap: 9px;
}

.wd-story-card li {
    padding: 11px 14px;
}

.wd-note-card p {
    font-size: 1.12rem;
}

.wd-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    background: rgba(255,255,255,0.045);
}

.wd-pricing-table {
    width: 100%;
    min-width: 740px;
    border-collapse: collapse;
}

.wd-pricing-table th,
.wd-pricing-table td {
    text-align: left;
    vertical-align: top;
    padding: 20px 22px;
    border-bottom: 1px solid var(--wd-line);
}

.wd-pricing-table tr:last-child td {
    border-bottom: 0;
}

.wd-pricing-table th {
    color: #fff;
    background: rgba(255,255,255,0.07);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.wd-pricing-table td {
    color: var(--wd-soft);
}

.wd-faq-layout {
    align-items: start;
}

.wd-accordion {
    display: grid;
    gap: 14px;
}

.wd-faq-item {
    border: 1px solid var(--wd-line);
    border-radius: 20px;
    background: rgba(255,255,255,0.055);
    overflow: hidden;
}

.wd-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 22px;
    font-weight: 900;
    color: #fff;
}

.wd-faq-item summary::-webkit-details-marker {
    display: none;
}

.wd-faq-item p {
    color: var(--wd-muted);
    margin: 0;
    padding: 0 22px 22px;
}

.wd-contact-layout {
    align-items: stretch;
}

.wd-contact-card {
    padding: 30px;
}

.wd-contact-card--outline {
    background: rgba(255,255,255,0.04);
}

.wd-contact-card small {
    display: block;
    color: var(--wd-muted);
    margin-top: 16px;
}

.wd-contact-card .wd-button {
    margin-top: 22px;
}

.wd-note-banner {
    display: grid;
    gap: 12px;
}

.wd-cta-panel {
    padding-top: 40px;
    padding-bottom: 88px;
}

.wd-cta-panel__inner {
    border: 1px solid var(--wd-line);
    border-radius: 34px;
    padding: 34px;
    background:
        radial-gradient(circle at 12% 10%, rgba(0,142,243,0.22), transparent 24rem),
        radial-gradient(circle at 90% 80%, rgba(255,140,67,0.18), transparent 22rem),
        rgba(255,255,255,0.06);
    box-shadow: var(--wd-shadow);
}

.wd-footer {
    border-top: 1px solid var(--wd-line);
    background: rgba(3, 9, 18, 0.82);
    padding: 54px 0 28px;
}

.wd-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 0.7fr;
    gap: 30px;
}

.wd-brand--footer {
    margin-bottom: 18px;
}

.wd-footer__copy {
    max-width: 560px;
}

.wd-footer h3 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.wd-footer__links {
    display: grid;
    gap: 10px;
}

.wd-footer__links a {
    color: var(--wd-muted);
}

.wd-footer__links a:hover {
    color: #fff;
}

.wd-footer__bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--wd-line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--wd-muted);
    font-size: 0.92rem;
}


/* --------------------------------------------------------------------------
   Motion polish and review/social-proof section
   -------------------------------------------------------------------------- */

.wd-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--wd-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.wd-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wd-dashboard-mock {
    animation: wd-dashboard-float 8s ease-in-out infinite;
}

@keyframes wd-dashboard-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.wd-feature-card,
.wd-price-card,
.wd-story-card,
.wd-feature-band__item,
.wd-process-card,
.wd-contact-card,
.wd-note-card,
.wd-note-banner,
.wd-review-card,
.wd-review-summary,
.wd-faq-item {
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.wd-feature-card:hover,
.wd-story-card:hover,
.wd-feature-band__item:hover,
.wd-process-card:hover,
.wd-contact-card:hover,
.wd-note-card:hover,
.wd-note-banner:hover,
.wd-review-card:hover,
.wd-review-summary:hover,
.wd-faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.24);
}

.wd-price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.26);
}

.wd-price-card.is-featured:hover {
    transform: translateY(-13px);
}

.wd-button--accent:hover {
    box-shadow:
        0 22px 52px rgba(0, 142, 243, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.wd-text-link {
    transition: color 180ms ease, transform 180ms ease;
}

.wd-text-link:hover {
    color: #fff;
    transform: translateX(3px);
}

.wd-section--reviews {
    border-block: 1px solid var(--wd-line);
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 142, 243, 0.12), transparent 24rem),
        radial-gradient(circle at 84% 80%, rgba(255, 140, 67, 0.10), transparent 22rem),
        rgba(255, 255, 255, 0.024);
}

.wd-section-heading--reviews {
    max-width: 920px;
}

.wd-review-heading__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.wd-review-mode {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--wd-line);
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 12px;
    color: var(--wd-soft);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wd-review-mode--test {
    border-color: rgba(255, 140, 67, 0.42);
    background: rgba(255, 140, 67, 0.13);
    color: #ffe2cd;
}

.wd-review-mode--live {
    border-color: rgba(68, 210, 143, 0.42);
    background: rgba(68, 210, 143, 0.13);
    color: #d9fff0;
}

.wd-review-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(0,142,243,0.12), rgba(255,140,67,0.07)),
        rgba(10, 24, 43, 0.82);
    box-shadow: 0 24px 76px rgba(0, 0, 0, 0.22);
    margin-bottom: 20px;
}

.wd-review-score {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.wd-review-score__stars,
.wd-review-card__stars {
    color: #ffd166;
    letter-spacing: 0.08em;
    font-weight: 1000;
}

.wd-review-score__stars {
    font-size: clamp(1.4rem, 3vw, 2rem);
    white-space: nowrap;
}

.wd-review-score__copy {
    display: grid;
    gap: 3px;
}

.wd-review-score__copy strong {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.wd-review-score__copy span {
    color: var(--wd-muted);
    font-weight: 700;
}

.wd-review-providers {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.wd-review-providers span {
    border: 1px solid var(--wd-line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--wd-soft);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 0.86rem;
    font-weight: 900;
}

.wd-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wd-review-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 270px;
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    background: var(--wd-panel-soft);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.17);
}

.wd-review-card__stars {
    font-size: 1.08rem;
}

.wd-review-card blockquote {
    margin: 0;
    color: #f4f8fd;
    font-size: 1.08rem;
    line-height: 1.7;
    font-weight: 650;
    letter-spacing: -0.012em;
}

.wd-review-card footer {
    display: grid;
    gap: 2px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--wd-line);
}

.wd-review-card footer strong {
    color: #fff;
    letter-spacing: -0.02em;
}

.wd-review-card footer span {
    color: var(--wd-muted);
    font-size: 0.93rem;
}



/* -------------------------------------------------------------------------- */
/* Launch-readiness additions: screenshot slots, legal pages, forms, cookies */
/* -------------------------------------------------------------------------- */

.wd-product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.wd-screenshot-card {
    margin: 0;
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    background: var(--wd-panel-soft);
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.wd-screenshot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 142, 243, 0.38);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.wd-screenshot-card img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--wd-line);
}

.wd-screenshot-card figcaption {
    display: grid;
    gap: 6px;
    padding: 20px 22px 22px;
}

.wd-screenshot-card figcaption strong {
    color: #fff;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.wd-screenshot-card figcaption span {
    color: var(--wd-muted);
}

.wd-footer__legal {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--wd-line);
    color: var(--wd-muted);
    font-size: 0.92rem;
}

.wd-footer__legal p {
    margin: 0;
}

.wd-footer__legal strong {
    color: var(--wd-soft);
}

.wd-footer__link-button {
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.wd-footer__link-button:hover {
    color: #fff;
}

.wd-legal-meta {
    margin-top: 12px;
    color: var(--wd-muted);
    font-weight: 800;
    font-size: 0.95rem;
}

.wd-legal-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.wd-legal-card {
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    background: var(--wd-panel-soft);
    padding: 28px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.wd-legal-card h2 {
    margin-top: 0;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.wd-legal-card p:last-child,
.wd-legal-card ul:last-child,
.wd-legal-card dl:last-child {
    margin-bottom: 0;
}

.wd-legal-card a,
.wd-cookie-banner a,
.wd-consent-check a {
    color: #d7ecff;
    text-decoration: underline;
    text-decoration-color: rgba(0, 142, 243, 0.6);
    text-underline-offset: 0.18em;
}

.wd-legal-list {
    margin: 14px 0 0;
    padding-left: 1.25rem;
    color: var(--wd-soft);
}

.wd-legal-list li + li {
    margin-top: 8px;
}

.wd-legal-details {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
}

.wd-legal-details div {
    display: grid;
    gap: 3px;
    border-top: 1px solid var(--wd-line);
    padding-top: 12px;
}

.wd-legal-details dt {
    color: var(--wd-muted);
    font-weight: 900;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wd-legal-details dd {
    margin: 0;
    color: var(--wd-soft);
    font-weight: 700;
}

.wd-contact-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.72fr);
    gap: 24px;
    align-items: start;
}

.wd-contact-side {
    display: grid;
    gap: 24px;
}

.wd-contact-card--form {
    padding: 30px;
}

.wd-lead-form {
    display: grid;
    gap: 22px;
    margin-top: 24px;
}

.wd-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wd-field {
    display: grid;
    gap: 8px;
}

.wd-field--full {
    grid-column: 1 / -1;
}

.wd-field span {
    color: var(--wd-soft);
    font-weight: 900;
}

.wd-field span b {
    color: var(--wd-accent);
}

.wd-field input,
.wd-field select,
.wd-field textarea {
    width: 100%;
    border: 1px solid var(--wd-line-strong);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 14px 15px;
    font: inherit;
    outline: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.wd-field textarea {
    resize: vertical;
    min-height: 150px;
}

.wd-field input:focus,
.wd-field select:focus,
.wd-field textarea:focus {
    border-color: rgba(0, 142, 243, 0.78);
    box-shadow: 0 0 0 4px rgba(0, 142, 243, 0.14);
    background: rgba(255, 255, 255, 0.09);
}

.wd-field select option {
    color: #07111f;
}

.wd-consent-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--wd-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    padding: 16px 18px;
    color: var(--wd-soft);
}

.wd-consent-check input {
    margin-top: 4px;
    accent-color: var(--wd-primary);
}

.wd-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wd-form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.wd-alert {
    display: grid;
    gap: 6px;
    margin: 20px 0;
    border: 1px solid var(--wd-line-strong);
    border-radius: 18px;
    padding: 16px 18px;
}

.wd-alert strong {
    font-size: 1rem;
}

.wd-alert span,
.wd-alert li {
    color: var(--wd-soft);
}

.wd-alert ul {
    margin: 6px 0 0;
    padding-left: 1.25rem;
}

.wd-alert--success {
    border-color: rgba(68, 210, 143, 0.36);
    background: rgba(68, 210, 143, 0.12);
}

.wd-alert--error {
    border-color: rgba(255, 140, 67, 0.42);
    background: rgba(255, 140, 67, 0.12);
}

.wd-cookie-shell {
    position: fixed;
    z-index: 80;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 18px;
    pointer-events: none;
}

.wd-cookie-banner,
.wd-cookie-panel {
    pointer-events: auto;
    width: min(1180px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background: rgba(5, 13, 25, 0.97);
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
}

.wd-cookie-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
}

.wd-cookie-banner h2,
.wd-cookie-panel h2 {
    margin: 10px 0 8px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.wd-cookie-banner p {
    margin: 0;
    color: var(--wd-soft);
}

.wd-cookie-banner__actions,
.wd-cookie-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.wd-cookie-panel {
    padding: 24px;
}

.wd-cookie-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--wd-line);
}

.wd-cookie-close {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    border: 1px solid var(--wd-line);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: inherit;
    font-size: 1.55rem;
    cursor: pointer;
}

.wd-cookie-preferences {
    display: grid;
    gap: 14px;
    margin: 20px 0;
}

.wd-cookie-choice {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--wd-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    padding: 18px;
}

.wd-cookie-choice h3,
.wd-cookie-choice strong {
    display: block;
    margin: 0 0 4px;
    color: #fff;
    font-size: 1rem;
}

.wd-cookie-choice p,
.wd-cookie-choice em {
    display: block;
    margin: 0;
    color: var(--wd-muted);
    font-style: normal;
}

.wd-cookie-choice input[type="checkbox"] {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    accent-color: var(--wd-primary);
}

.wd-cookie-choice.is-disabled {
    opacity: 0.6;
}

.wd-cookie-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(68, 210, 143, 0.34);
    background: rgba(68, 210, 143, 0.14);
    color: #d8ffe9;
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 0.84rem;
    font-weight: 1000;
    white-space: nowrap;
}

.wd-cookie-table {
    min-width: 640px;
}


/* --------------------------------------------------------------------------
   Launch-ready subscription / trust / utility enhancements
   -------------------------------------------------------------------------- */

.wd-nav__link--utility {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.045);
}

.wd-page-hero--compact {
    padding-bottom: clamp(42px, 7vw, 74px);
}

.wd-section--compact {
    padding-top: 18px;
    padding-bottom: 18px;
}

.wd-status-ribbon {
    margin-top: -12px;
}

.wd-status-ribbon__inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 142, 243, 0.28);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(0, 142, 243, 0.15), rgba(255, 140, 67, 0.08)),
        rgba(255, 255, 255, 0.045);
    box-shadow: var(--wd-soft-shadow);
}

.wd-status-ribbon__inner strong {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 140, 67, 0.18);
    border: 1px solid rgba(255, 140, 67, 0.34);
    color: #fff1e6;
    font-size: 0.84rem;
    font-weight: 1000;
    white-space: nowrap;
}

.wd-status-ribbon__inner span {
    color: var(--wd-soft);
    line-height: 1.6;
}

.wd-alert--wide {
    max-width: none;
}

.wd-subscribe-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(20px, 3vw, 34px);
    align-items: start;
}

.wd-subscribe-plan,
.wd-subscribe-panel,
.wd-step-card,
.wd-trust-card {
    border: 1px solid var(--wd-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--wd-soft-shadow);
}

.wd-subscribe-plan,
.wd-subscribe-panel {
    padding: clamp(22px, 3vw, 34px);
}

.wd-subscribe-plan h2,
.wd-subscribe-panel h2 {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.wd-subscribe-plan p,
.wd-subscribe-panel p,
.wd-step-card p,
.wd-trust-card p {
    color: var(--wd-soft);
}

.wd-price-card__price--hero {
    margin-bottom: 18px;
}

.wd-price-card__price--hero strong {
    font-size: clamp(2.6rem, 5vw, 4.25rem);
}

.wd-subscribe-panel {
    position: sticky;
    top: 118px;
    overflow: hidden;
}

.wd-subscribe-panel::before {
    content: "";
    position: absolute;
    inset: auto -90px -90px auto;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 142, 243, 0.22), transparent 72%);
    pointer-events: none;
}

.wd-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 1000;
    letter-spacing: 0.01em;
}

.wd-pill--accent {
    border-color: rgba(255, 140, 67, 0.38);
    background: rgba(255, 140, 67, 0.16);
    color: #fff0e4;
}

.wd-pill--success {
    border-color: rgba(68, 210, 143, 0.4);
    background: rgba(68, 210, 143, 0.14);
    color: #d9ffe9;
}

.wd-actions--stack {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.wd-actions--stack .wd-button {
    width: 100%;
    justify-content: center;
}

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

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

.wd-step-card > strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(0, 142, 243, 0.95), rgba(255, 140, 67, 0.95));
    color: #fff;
    font-weight: 1000;
}

.wd-step-card h3,
.wd-trust-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.wd-step-card p,
.wd-trust-card p {
    margin: 0;
}

.wd-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wd-trust-card {
    padding: 24px;
}

.wd-not-found {
    display: flex;
    justify-content: center;
    padding-bottom: 28px;
}

.wd-not-found .wd-actions {
    justify-content: center;
}


.wd-coming-soon-hero {
    position: relative;
    overflow: hidden;
}

.wd-coming-soon-hero::before {
    content: "";
    position: absolute;
    inset: 24px 0 auto auto;
    width: min(48vw, 560px);
    height: min(48vw, 560px);
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(0, 142, 243, 0.22), transparent 62%),
        radial-gradient(circle at 72% 72%, rgba(255, 140, 67, 0.16), transparent 46%);
    filter: blur(6px);
    pointer-events: none;
}

.wd-coming-soon-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .wd-dashboard-mock {
        animation: none;
    }

    .wd-reveal,
    .wd-reveal.is-visible,
    .wd-button,
    .wd-nav__link,
    .wd-text-link,
    .wd-feature-card,
    .wd-price-card,
    .wd-story-card,
    .wd-feature-band__item,
    .wd-process-card,
    .wd-contact-card,
    .wd-note-card,
    .wd-note-banner,
    .wd-review-card,
    .wd-review-summary,
    .wd-faq-item,
    .wd-subscribe-plan,
    .wd-subscribe-panel,
    .wd-step-card,
    .wd-trust-card {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

@media (max-width: 1060px) {
    .wd-card-grid--three,
    .wd-pricing-grid,
    .wd-review-grid,
    .wd-product-gallery,
    .wd-legal-layout,
    .wd-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wd-hero__grid,
    .wd-split,
    .wd-cta-panel__inner,
    .wd-contact-layout,
    .wd-contact-form-layout,
    .wd-faq-layout,
    .wd-feature-band__item,
    .wd-subscribe-layout {
        grid-template-columns: 1fr;
    }

    .wd-dashboard-mock {
        max-width: 760px;
    }

    .wd-pricing-grid--full .wd-price-card {
        min-height: auto;
    }

    .wd-step-grid,
    .wd-trust-grid {
        grid-template-columns: 1fr;
    }

    .wd-subscribe-panel {
        position: relative;
        top: auto;
    }

    .wd-cookie-banner {
        grid-template-columns: 1fr;
    }

    .wd-cookie-banner__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 840px) {
    .wd-header__inner {
        min-height: 78px;
    }

    .wd-nav-toggle {
        display: inline-block;
    }

    .wd-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        padding: 14px;
        border: 1px solid var(--wd-line);
        border-radius: 22px;
        background: rgba(5, 13, 25, 0.98);
        box-shadow: var(--wd-shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .wd-nav.is-open {
        display: flex;
    }

    .wd-nav__link,
    .wd-nav .wd-button,
    .wd-login-menu,
    .wd-login-menu__trigger {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .wd-login-menu {
        display: grid;
    }

    .wd-login-menu__panel {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 8px;
        transform-origin: top center;
    }

    .wd-login-menu__panel::before {
        display: none;
    }

    .wd-login-menu__item {
        text-align: left;
    }

    .wd-dashboard-mock__body,
    .wd-story-grid,
    .wd-card-grid--three,
    .wd-pricing-grid,
    .wd-review-grid,
    .wd-product-gallery,
    .wd-legal-layout,
    .wd-footer__grid {
        grid-template-columns: 1fr;
    }

    .wd-review-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .wd-review-providers {
        justify-content: flex-start;
    }

    .wd-mini-stat {
        min-height: 0;
    }

    .wd-workboard__row {
        grid-template-columns: 1fr;
    }

    .wd-footer__bottom {
        flex-direction: column;
    }

    .wd-status-ribbon__inner {
        flex-direction: column;
    }

    .wd-cookie-shell {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .wd-cookie-choice,
    .wd-cookie-panel__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .wd-cookie-banner__actions,
    .wd-cookie-panel__actions {
        width: 100%;
        justify-content: stretch;
    }

    .wd-cookie-banner__actions .wd-button,
    .wd-cookie-panel__actions .wd-button {
        width: 100%;
        justify-content: center;
    }

    .wd-price-card.is-featured {
        transform: none;
    }
}

@media (max-width: 620px) {
    .wd-container {
        width: min(calc(100% - 24px), var(--wd-container));
    }

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

    .wd-hero h1,
    .wd-page-hero h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
    }

    .wd-dashboard-mock__body,
    .wd-feature-card,
    .wd-price-card,
    .wd-story-card,
    .wd-feature-band__item,
    .wd-process-card,
    .wd-note-card,
    .wd-contact-card,
    .wd-legal-card,
    .wd-cookie-banner,
    .wd-cookie-panel,
    .wd-note-banner,
    .wd-review-summary,
    .wd-review-card,
    .wd-cta-panel__inner,
    .wd-subscribe-plan,
    .wd-subscribe-panel,
    .wd-step-card,
    .wd-trust-card {
        padding: 20px;
    }

    .wd-review-score {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .wd-brand__copy em {
        display: none;
    }

    .wd-brand__mark {
        width: 46px;
        height: 46px;
    }
}
