:root {
    --wf-bg: #04050a;
    --wf-bg-soft: #0f131c;
    --wf-panel: rgba(10, 13, 20, 0.9);
    --wf-panel-soft: rgba(16, 21, 31, 0.88);
    --wf-border: rgba(255, 255, 255, 0.2);
    --wf-border-strong: rgba(255, 255, 255, 0.33);
    --wf-accent: #cddf00;
    --wf-accent-hover: #dced3f;
    --wf-text: #f6f8fc;
    --wf-muted: #bcc2ce;
    --wf-danger: #ff8d8d;
    --wf-danger-solid: #e65a5f;
    --wf-danger-solid-hover: #f06b70;
    --wf-font-main: "Montserrat", "Trebuchet MS", "Segoe UI", sans-serif;
    --wf-font-head: "Poppins", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
}

* {
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

.wf-body {
    margin: 0;
    min-height: 100vh;
    color: var(--wf-text);
    font-family: var(--wf-font-main);
    background:
        radial-gradient(1200px 780px at 18% 18%, #242a36 0%, transparent 60%),
        radial-gradient(860px 680px at 84% 90%, #1e2430 0%, transparent 62%),
        linear-gradient(160deg, #090d16 0%, var(--wf-bg) 65%);
}

.wf-body::before,
.wf-body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

.wf-body::before {
    inset: 0;
    background:
        linear-gradient(62deg, transparent 0 73%, rgba(255, 255, 255, 0.2) 73% 74%, transparent 74%),
        linear-gradient(26deg, transparent 0 85%, rgba(255, 255, 255, 0.13) 85% 86%, transparent 86%),
        linear-gradient(-22deg, transparent 0 90%, rgba(255, 255, 255, 0.1) 90% 91%, transparent 91%);
    opacity: 0.58;
}

.wf-body::after {
    inset: auto -200px -160px auto;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transform: rotate(30deg);
    opacity: 0.45;
}

.wf-app-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
}

.wf-top-brand {
    border: 1px solid var(--wf-border);
    background: var(--wf-panel);
    backdrop-filter: blur(4px);
    padding: 16px 18px;
}

.wf-top-brand-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wf-sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(12, 16, 24, 0.88) 100%),
        linear-gradient(150deg, #1a202a 0%, #05070d 70%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
}

.wf-brand-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wf-brand-tagline {
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 0.04em;
    font-size: 19px;
    line-height: 1.2;
    color: rgba(246, 248, 252, 0.9);
}

.wf-brand-tagline span {
    color: var(--wf-accent);
    font-weight: 700;
}

.wf-brand-mark {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    color: var(--wf-text);
    font-family: var(--wf-font-head);
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: clamp(38px, 5.3vw, 56px);
    line-height: 0.95;
}

.wf-brand-accent {
    color: var(--wf-accent);
}

.wf-brand-customer {
    margin: 0;
    color: var(--wf-muted);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wf-sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.wf-nav-link {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #f1f3f9;
    opacity: 0.84;
    transition: color 120ms ease, opacity 120ms ease;
}

.wf-nav-link:hover {
    color: var(--wf-accent-hover);
    opacity: 1;
}

.wf-nav-link.is-active {
    color: var(--wf-accent);
    opacity: 1;
}

.wf-sidebar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wf-sidebar-footer {
    margin-top: auto;
}

.wf-sidebar-legal {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(246, 248, 252, 0.72);
}

.wf-main-shell {
    position: relative;
    padding: 20px 14px 34px;
}

.wf-main-shell::before {
    content: "";
    position: absolute;
    right: 4%;
    top: 18%;
    width: 210px;
    height: 210px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.wf-main-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.wf-page-shell {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wf-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wf-support-home {
    gap: 28px;
}

.wf-support-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.wf-support-hero-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.wf-kicker {
    margin: 0;
    color: var(--wf-accent);
    font-family: var(--wf-font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wf-section-title-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wf-service-panel {
    border: 1px solid var(--wf-border);
    background: var(--wf-panel);
    backdrop-filter: blur(4px);
    width: fit-content;
    max-width: 100%;
    justify-self: end;
    align-self: start;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wf-service-block {
    width: fit-content;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wf-service-title {
    align-self: flex-start;
    margin: 0;
    background: var(--wf-accent);
    color: #0b0f16;
    padding: 9px 14px;
    font-family: var(--wf-font-head);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.wf-hours-table {
    width: auto;
    min-width: 340px;
    max-width: 100%;
    border-collapse: collapse;
    color: var(--wf-text);
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
}

.wf-hours-table th,
.wf-hours-table td {
    border: 1px solid var(--wf-border);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    line-height: 1.45;
}

.wf-hours-table th {
    width: 34%;
    color: #ffffff;
    font-family: var(--wf-font-head);
    font-weight: 700;
    white-space: nowrap;
}

.wf-hours-table td {
    white-space: nowrap;
}

.wf-contact-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wf-contact-btn {
    gap: 10px;
}

.wf-contact-icon {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(11, 15, 22, 0.28);
    background: rgba(255, 255, 255, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b0f16;
    font-size: 0;
    line-height: 1;
}

.wf-contact-icon::before {
    content: "\260E";
    font-size: 16px;
    line-height: 1;
}

.wf-security-cta {
    align-self: flex-start;
}

.wf-main-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wf-session-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.wf-session-identity {
    margin: 0;
    color: var(--wf-muted);
    font-size: 13px;
    line-height: 1.45;
    text-align: right;
    max-width: 44ch;
}

.wf-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wf-with-back {
    gap: 12px;
}

.wf-back-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--wf-border-strong);
    background: var(--wf-panel-soft);
    color: var(--wf-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.wf-back-button:hover {
    border-color: var(--wf-accent);
    color: var(--wf-accent);
    transform: translateX(-2px);
}

.wf-h1,
.wf-h2,
.wf-h3,
.wf-problem-title,
.wf-choice-title {
    margin: 0;
    font-family: var(--wf-font-head);
    letter-spacing: 0.01em;
    color: var(--wf-text);
}

.wf-h1 {
    font-size: clamp(34px, 5.4vw, 56px);
    line-height: 1.04;
    font-weight: 700;
}

.wf-h2 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.08;
    font-weight: 700;
}

.wf-h3 {
    font-size: clamp(23px, 3.3vw, 30px);
    line-height: 1.2;
    font-weight: 600;
}

.wf-description {
    margin: 0;
    color: var(--wf-muted);
    line-height: 1.7;
    max-width: 72ch;
}

.wf-body-text {
    margin: 0;
    color: #eef1f8;
    line-height: 1.8;
}

.wf-markdown {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wf-markdown > * {
    margin-top: 0;
    margin-bottom: 0;
}

.wf-markdown h1,
.wf-markdown h2,
.wf-markdown h3,
.wf-markdown h4 {
    color: var(--wf-text);
    font-family: var(--wf-font-head);
    line-height: 1.25;
}

.wf-markdown h1 {
    font-size: 30px;
}

.wf-markdown h2 {
    font-size: 25px;
}

.wf-markdown h3,
.wf-markdown h4 {
    font-size: 21px;
}

.wf-markdown ul,
.wf-markdown ol {
    padding-left: 22px;
}

.wf-markdown img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    border: 1px solid var(--wf-border);
    background: rgba(255, 255, 255, 0.04);
}

.wf-markdown a {
    color: var(--wf-accent-hover);
}

.wf-problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.wf-problem-card,
.wf-empty-card,
.wf-card,
.wf-form-card,
.wf-confirm-card {
    border: 1px solid var(--wf-border);
    background: var(--wf-panel);
    backdrop-filter: blur(4px);
}

.wf-problem-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 130ms ease, border-color 130ms ease;
}

.wf-problem-card:hover {
    transform: translateY(-2px);
    border-color: rgba(205, 223, 0, 0.58);
}

.wf-problem-title {
    font-size: clamp(22px, 3.1vw, 30px);
    line-height: 1.2;
    font-weight: 600;
}

.wf-problem-description {
    margin: 0;
    color: var(--wf-muted);
    line-height: 1.65;
    flex-grow: 1;
}

.wf-empty-card {
    padding: 24px;
    color: var(--wf-muted);
}

.wf-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.wf-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wf-gap {
    gap: 14px;
}

.wf-gap-sm {
    gap: 10px;
}

.wf-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.wf-center-text {
    text-align: center;
}

.wf-left {
    text-align: left;
}

.wf-btn {
    border: 1px solid var(--wf-border-strong);
    padding: 12px 22px;
    min-height: 44px;
    font-size: 15px;
    font-family: var(--wf-font-head);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wf-text);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.wf-btn:hover {
    transform: translateY(-1px);
}

.wf-btn-primary {
    border-color: var(--wf-accent);
    background: var(--wf-accent);
    color: #0b0f16;
}

.wf-btn-primary:hover {
    border-color: var(--wf-accent-hover);
    background: var(--wf-accent-hover);
}

.wf-btn-danger {
    border-color: var(--wf-danger-solid);
    background: var(--wf-danger-solid);
    color: #160608;
}

.wf-btn-danger:hover {
    border-color: var(--wf-danger-solid-hover);
    background: var(--wf-danger-solid-hover);
}

.wf-btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--wf-accent);
}

.wf-btn-secondary:hover {
    border-color: var(--wf-accent);
    background: rgba(205, 223, 0, 0.13);
}

.wf-btn-small {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
}

.wf-btn-block {
    width: 100%;
}

.wf-btn[disabled],
.wf-btn:disabled {
    opacity: 0.56;
    cursor: not-allowed;
    transform: none;
}

.wf-link {
    color: var(--wf-accent-hover);
    text-decoration: underline;
}

.wf-option-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wf-option-item {
    border: 1px solid var(--wf-border);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 14px;
    color: #eff3f9;
}

.wf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wf-flow-step {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wf-approval-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wf-approval-callout {
    background: rgba(10, 44, 67, 0.3);
    border-color: rgba(136, 205, 255, 0.55);
}

.wf-approval-ticket-info {
    gap: 10px;
    padding: 18px;
}

.wf-approval-ticket-list {
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wf-approval-ticket-list li {
    line-height: 1.55;
}

.wf-approval-consent-box {
    gap: 10px;
    padding: 14px;
}

.wf-approval-consent {
    align-items: flex-start;
}

.wf-approval-consent input[type="checkbox"] {
    margin-top: 4px;
}

.wf-label {
    color: #f6f8fc;
}

.wf-input {
    width: 100%;
    border: 1px solid var(--wf-border-strong);
    background: rgba(2, 4, 9, 0.62);
    color: var(--wf-text);
    padding: 11px 14px;
    font-size: 15px;
    line-height: 1.5;
    outline: none;
    transition: border-color 120ms ease, background-color 120ms ease;
}

.wf-input::placeholder {
    color: rgba(188, 194, 206, 0.85);
}

.wf-input:focus,
.wf-input:hover {
    border-color: rgba(205, 223, 0, 0.65);
    background: rgba(6, 10, 18, 0.78);
}

.wf-input[type="file"] {
    cursor: pointer;
}

.wf-attachment-panel {
    border: 1px solid rgba(205, 223, 0, 0.28);
    background: rgba(205, 223, 0, 0.045);
    padding: 14px;
}

.wf-attachment-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.wf-attachment-heading .wf-muted {
    margin: 4px 0 0;
}

.wf-attachment-count {
    flex: 0 0 auto;
    border: 1px solid rgba(205, 223, 0, 0.42);
    background: rgba(205, 223, 0, 0.12);
    color: var(--wf-accent-hover);
    padding: 4px 9px;
    font-size: 12px;
    font-family: var(--wf-font-head);
    text-transform: uppercase;
}

.wf-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.wf-upload-zone {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px dashed rgba(205, 223, 0, 0.7);
    background: rgba(2, 4, 9, 0.7);
    color: var(--wf-text);
    padding: 18px;
    cursor: pointer;
    transition: border-color 120ms ease, background-color 120ms ease, transform 120ms ease;
}

.wf-upload-zone:hover,
.wf-upload-input:focus + .wf-upload-zone {
    border-color: var(--wf-accent);
    background: rgba(205, 223, 0, 0.1);
    transform: translateY(-1px);
}

.wf-upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(205, 223, 0, 0.55);
    background: var(--wf-accent);
    color: #111500;
    font-size: 0;
    font-family: var(--wf-font-head);
    line-height: 1;
}

.wf-upload-icon::before {
    content: "+";
    display: block;
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px);
}

.wf-upload-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wf-upload-title {
    color: var(--wf-text);
    font-family: var(--wf-font-head);
    font-size: 16px;
}

.wf-upload-subtitle {
    color: var(--wf-muted);
    font-size: 14px;
}

.wf-attachment-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wf-attachment-list li {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--wf-text);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

.wf-attachment-name {
    min-width: 0;
    overflow-wrap: anywhere;
}

.wf-attachment-remove {
    flex: 0 0 auto;
    border: 1px solid rgba(205, 223, 0, 0.35);
    background: rgba(205, 223, 0, 0.08);
    color: var(--wf-accent-hover);
    padding: 6px 9px;
    font-family: var(--wf-font-head);
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}

.wf-attachment-remove:hover,
.wf-attachment-remove:focus {
    border-color: var(--wf-accent);
    background: rgba(205, 223, 0, 0.16);
}

.wf-attachment-remove:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.wf-captcha-panel {
    border: 1px solid var(--wf-border);
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
}

.support-turnstile-widget {
    min-height: 65px;
}

.wf-file-dashed {
    border-style: dashed;
    padding-top: 18px;
    padding-bottom: 18px;
}

.wf-form-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wf-form-footer {
    border-top: 1px solid var(--wf-border);
    padding-top: 18px;
    display: flex;
    justify-content: center;
}

.wf-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.wf-choice-card {
    border: 1px solid var(--wf-border-strong);
    background: var(--wf-panel-soft);
    padding: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    transition: border-color 120ms ease, background-color 120ms ease;
}

.wf-choice-card:hover {
    border-color: rgba(205, 223, 0, 0.62);
    background: rgba(17, 23, 35, 0.96);
}

.wf-choice-icon {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(205, 223, 0, 0.55);
    color: var(--wf-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.wf-choice-icon-circle {
    border-radius: 999px;
}

.wf-choice-title {
    font-size: clamp(31px, 4.5vw, 44px);
    font-weight: 700;
}

.wf-choice-description {
    margin: 0;
    color: var(--wf-muted);
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.35;
}

.wf-meta-box {
    border: 1px solid var(--wf-border);
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #e7ebf2;
}

.wf-meta-title {
    font-size: 18px;
    color: #f8faff;
    font-family: var(--wf-font-head);
    font-weight: 600;
}

.wf-meta-text {
    color: #d3d8e3;
    line-height: 1.65;
}

.wf-meta-subtext {
    font-size: 13px;
    color: var(--wf-muted);
}

.wf-suggestion-card {
    gap: 12px;
}

.wf-suggestion-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.wf-confidence-chip {
    border: 1px solid var(--wf-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: #ebeff6;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
}

.wf-confidence-high {
    background: rgba(205, 223, 0, 0.22);
    border-color: rgba(205, 223, 0, 0.72);
    color: #f6ffe0;
}

.wf-confidence-medium {
    background: rgba(255, 198, 89, 0.2);
    border-color: rgba(255, 198, 89, 0.62);
    color: #fff5d7;
}

.wf-confidence-low {
    background: rgba(255, 118, 118, 0.2);
    border-color: rgba(255, 118, 118, 0.62);
    color: #ffe3e3;
}

.wf-suggestion-preview {
    margin: 0;
}

.wf-suggestion-details {
    border-top: 1px solid var(--wf-border);
    padding-top: 10px;
}

.wf-suggestion-details summary {
    cursor: pointer;
    color: var(--wf-text);
}

.wf-suggestion-details summary:hover {
    color: var(--wf-accent-hover);
}

.wf-suggestion-content {
    margin-top: 10px;
}

.wf-placeholder-box {
    width: 100%;
    min-height: 230px;
    border: 1px solid var(--wf-border);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-media {
    width: 100%;
    height: 100%;
    min-height: 230px;
    border: 0;
    object-fit: cover;
}

.wf-placeholder-content {
    text-align: center;
    color: var(--wf-muted);
}

.wf-placeholder-icon {
    font-size: 34px;
    line-height: 1;
}

.wf-placeholder-label {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wf-voice-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wf-mic-button {
    width: 124px;
    height: 124px;
    border-radius: 999px;
    border: 1px solid rgba(205, 223, 0, 0.62);
    background: rgba(205, 223, 0, 0.16);
    color: #eff4cc;
    font-size: 19px;
    cursor: pointer;
    transition: transform 120ms ease, background-color 120ms ease;
}

.wf-mic-button:hover {
    transform: scale(1.02);
    background: rgba(205, 223, 0, 0.28);
}

.wf-audio {
    width: 100%;
    border: 1px solid var(--wf-border);
    background: rgba(6, 8, 14, 0.7);
    padding: 6px;
    box-sizing: border-box;
}

.wf-muted {
    color: var(--wf-muted);
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.wf-error {
    margin: 4px 0 0;
    color: var(--wf-danger);
    font-size: 13px;
}

.wf-error-box {
    border: 1px solid rgba(255, 118, 118, 0.68);
    background: rgba(255, 118, 118, 0.16);
    color: #ffd6d6;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.wf-confirm-shell {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-confirm-card {
    width: 100%;
    max-width: 820px;
    padding: 42px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.wf-confirm-icon {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    border: 1px solid rgba(205, 223, 0, 0.65);
    background: rgba(205, 223, 0, 0.16);
    color: #eff4cc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: var(--wf-font-head);
    font-weight: 700;
}

@media (min-width: 720px) {
    .wf-main-shell {
        padding: 26px 24px 40px;
    }

    .wf-page-shell {
        gap: 20px;
    }

    .wf-problem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wf-choice-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 880px) {
    .wf-support-hero {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (max-width: 719px) {
    .wf-session-tools {
        width: 100%;
        justify-content: flex-start;
    }

    .wf-session-identity {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .wf-service-panel,
    .wf-service-block,
    .wf-hours-table {
        width: 100%;
        min-width: 0;
    }

    .wf-hours-table th,
    .wf-hours-table td {
        display: block;
        width: 100%;
        white-space: normal;
    }

    .wf-hours-table td {
        border-top: 0;
    }
}

@media (min-width: 1080px) {
    .wf-main-shell {
        padding: 34px 42px 50px;
    }
}
