

/* Start:/local/templates/bstd_promo/template_styles.css?177283637323017*/
/* BSTD Promo — Clean UI System
   Tailwind-inspired design tokens + component styles.
   Swap --ui-* variables to rebrand in minutes. */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/local/templates/bstd_promo/fonts/inter-400.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/local/templates/bstd_promo/fonts/inter-500.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/local/templates/bstd_promo/fonts/inter-600.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/local/templates/bstd_promo/fonts/inter-700.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('/local/templates/bstd_promo/fonts/inter-800.ttf') format('truetype'); }

:root {
    /* Palette */
    --ui-bg: #f8fafc;
    --ui-surface: #ffffff;
    --ui-border: #e2e8f0;
    --ui-border-hover: #cbd5e1;
    --ui-text: #0f172a;
    --ui-text-secondary: #64748b;
    --ui-text-muted: #94a3b8;
    --ui-accent: #2563eb;
    --ui-accent-hover: #1d4ed8;
    --ui-accent-light: #eff6ff;
    --ui-success: #16a34a;
    --ui-success-light: #f0fdf4;
    --ui-danger: #dc2626;
    --ui-danger-light: #fef2f2;
    --ui-warning: #d97706;
    --ui-warning-light: #fffbeb;
    --ui-dark: #0f172a;
    --ui-white: #ffffff;

    /* Spacing */
    --ui-gap: 24px;
    --ui-max-w: 1200px;
    --ui-radius: 12px;
    --ui-radius-sm: 8px;
    --ui-radius-full: 9999px;

    /* Shadows */
    --ui-shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --ui-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --ui-shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --ui-shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);

    /* Typography */
    --ui-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Legacy aliases for backward compat */
    --wf-bg: var(--ui-bg);
    --wf-card: #f1f5f9;
    --wf-border: var(--ui-border);
    --wf-text: var(--ui-text);
    --wf-text-muted: var(--ui-text-secondary);
    --wf-accent: var(--ui-accent);
    --wf-accent-hover: var(--ui-accent-hover);
    --wf-white: var(--ui-white);
    --wf-danger: var(--ui-danger);
    --wf-radius: var(--ui-radius);
    --wf-max-w: var(--ui-max-w);
    --wf-gap: var(--ui-gap);
    --wf-success: var(--ui-success);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--ui-font);
    background: var(--ui-bg);
    color: var(--ui-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }

/* ======= Layout ======= */
.wf-container {
    max-width: var(--ui-max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ======= Header ======= */
.wf-header {
    background: var(--ui-white);
    border-bottom: 1px solid var(--ui-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,.92);
}

.wf-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 64px;
}

.wf-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--ui-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background: none;
    width: auto;
    height: auto;
    justify-content: flex-start;
    border-radius: 0;
}

.wf-nav {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wf-nav a {
    text-decoration: none;
    color: var(--ui-text-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: var(--ui-radius-sm);
    transition: color .15s, background .15s;
    border-bottom: none;
}

.wf-nav a:hover,
.wf-nav a.active {
    color: var(--ui-accent);
    background: var(--ui-accent-light);
    border-color: transparent;
}

.wf-header__auth {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ======= Buttons ======= */
.wf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: var(--ui-radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all .15s ease;
    text-decoration: none;
    line-height: 1.4;
    gap: 6px;
}

.wf-btn--primary {
    background: var(--ui-accent);
    color: var(--ui-white);
    box-shadow: 0 1px 2px rgba(37,99,235,.3);
}

.wf-btn--primary:hover {
    background: var(--ui-accent-hover);
    box-shadow: 0 2px 8px rgba(37,99,235,.35);
    transform: translateY(-1px);
}

.wf-btn--outline {
    background: var(--ui-white);
    color: var(--ui-text);
    border: 1px solid var(--ui-border);
    box-shadow: var(--ui-shadow-sm);
}

.wf-btn--outline:hover {
    background: var(--ui-bg);
    border-color: var(--ui-border-hover);
    color: var(--ui-text);
}

.wf-btn--sm {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
}

.wf-btn--lg {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: var(--ui-radius);
}

.wf-btn--danger {
    background: var(--ui-danger);
    color: var(--ui-white);
}

.wf-btn--danger:hover {
    background: #b91c1c;
}

/* ======= Hero ======= */
.wf-hero {
    background: linear-gradient(135deg, var(--ui-dark) 0%, #1e3a5f 50%, var(--ui-accent) 100%);
    padding: 100px 0 110px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.wf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37,99,235,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,.05) 0%, transparent 50%);
    pointer-events: none;
}

.wf-hero__content {
    position: relative;
    z-index: 1;
}

.wf-hero__title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--ui-white);
    letter-spacing: -1px;
    line-height: 1.1;
}

.wf-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.7);
    margin: 0 0 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.wf-hero .wf-btn--primary {
    background: var(--ui-white);
    color: var(--ui-accent);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    font-size: 16px;
    padding: 14px 40px;
}

.wf-hero .wf-btn--primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

.wf-hero__actions {
    margin-bottom: 48px;
}

.wf-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.wf-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wf-hero__stat-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--ui-white);
}

.wf-hero__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

.wf-hero__stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.2);
}

/* ======= Sections ======= */
.wf-section {
    padding: 64px 0;
}

.wf-section__title {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 12px;
    letter-spacing: -.5px;
    color: var(--ui-text);
}

.wf-section__subtitle {
    text-align: center;
    color: var(--ui-text-secondary);
    margin: 0 0 40px;
    font-size: 16px;
}

/* ======= Cards grid ======= */
.wf-grid {
    display: grid;
    gap: var(--ui-gap);
}

.wf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wf-grid--4 { grid-template-columns: repeat(4, 1fr); }

.wf-card {
    background: var(--ui-white);
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    padding: var(--ui-gap);
    transition: box-shadow .2s, border-color .2s, transform .2s;
}

.wf-card:hover {
    box-shadow: var(--ui-shadow-md);
    border-color: var(--ui-border-hover);
    transform: translateY(-2px);
}

.wf-card__img {
    width: 100%;
    height: 200px;
    background: var(--ui-bg);
    border-radius: var(--ui-radius-sm);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ui-text-secondary);
    font-size: 13px;
    overflow: hidden;
}

.wf-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wf-card__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--ui-text);
}

.wf-card__text {
    font-size: 14px;
    color: var(--ui-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ======= Steps ======= */
.wf-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ui-gap);
    counter-reset: step;
}

.wf-steps--3 { grid-template-columns: repeat(3, 1fr); }

.wf-step {
    text-align: center;
    counter-increment: step;
    position: relative;
    padding: 24px 16px;
}

.wf-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ui-accent);
    color: var(--ui-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(37,99,235,.25);
}

.wf-step__title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--ui-text);
}

.wf-step__desc {
    font-size: 13px;
    color: var(--ui-text-secondary);
    line-height: 1.5;
}

/* ======= Progress bar ======= */
.wf-progress {
    background: var(--ui-bg);
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius-full);
    height: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.wf-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ui-accent), #60a5fa);
    border-radius: var(--ui-radius-full);
    transition: width .6s cubic-bezier(.4,0,.2,1);
    min-width: 0;
    position: relative;
}

.wf-progress__fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.wf-progress__marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ui-text-muted);
    padding: 0 4px;
}

/* ======= Accordion / FAQ ======= */
.wf-accordion__item {
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.wf-accordion__item:hover {
    box-shadow: var(--ui-shadow-sm);
}

.wf-accordion__item.active {
    border-color: var(--ui-accent);
    box-shadow: 0 0 0 1px var(--ui-accent);
}

.wf-accordion__header {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    background: var(--ui-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .15s;
}

.wf-accordion__header:hover {
    background: var(--ui-bg);
}

.wf-accordion__header::after {
    content: '+';
    font-size: 20px;
    color: var(--ui-text-muted);
    transition: transform .2s, color .2s;
    flex-shrink: 0;
    margin-left: 12px;
}

.wf-accordion__item.active .wf-accordion__header::after {
    transform: rotate(45deg);
    color: var(--ui-accent);
}

.wf-accordion__body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    font-size: 14px;
    color: var(--ui-text-secondary);
    line-height: 1.7;
}

.wf-accordion__item.active .wf-accordion__body {
    max-height: 600px;
    padding: 0 20px 20px;
}

/* ======= Forms ======= */
.wf-form {
    max-width: 480px;
    margin: 0 auto;
}

.wf-form__group {
    margin-bottom: 20px;
}

.wf-form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--ui-text);
}

.wf-form__input,
.wf-form__select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius-sm);
    font-size: 14px;
    font-family: var(--ui-font);
    background: var(--ui-white);
    color: var(--ui-text);
    transition: border-color .15s, box-shadow .15s;
    appearance: none;
}

.wf-form__input:focus,
.wf-form__select:focus {
    outline: none;
    border-color: var(--ui-accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.wf-form__input::placeholder {
    color: var(--ui-text-muted);
}

.wf-form__checkbox {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--ui-text-secondary);
}

textarea.wf-form__input {
    min-height: 100px;
    resize: vertical;
}

/* ======= Tabs ======= */
.wf-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--ui-border);
    margin-bottom: var(--ui-gap);
    overflow-x: auto;
}

.wf-tabs__tab {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .15s, border-color .15s, background .15s;
    background: none;
    color: var(--ui-text-secondary);
    white-space: nowrap;
}

.wf-tabs__tab:hover {
    color: var(--ui-text);
    background: var(--ui-bg);
}

.wf-tabs__tab.active {
    color: var(--ui-accent);
    border-bottom-color: var(--ui-accent);
}

.wf-tab-content {
    display: none;
}

.wf-tab-content.active {
    display: block;
    animation: fadeIn .2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ======= Table ======= */
.wf-table {
    width: 100%;
    border-collapse: collapse;
}

.wf-table th,
.wf-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--ui-border);
    font-size: 14px;
}

.wf-table th {
    background: var(--ui-bg);
    font-weight: 600;
    color: var(--ui-text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.wf-table tr:hover td {
    background: var(--ui-bg);
}

/* ======= Popup / Modal ======= */
.wf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.wf-overlay.active { display: flex; }

.wf-modal {
    background: var(--ui-white);
    border-radius: var(--ui-radius);
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--ui-shadow-lg);
}

.wf-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--ui-bg);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--ui-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.wf-modal__close:hover {
    background: var(--ui-border);
}

.wf-modal__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
}

/* ======= Footer ======= */
.wf-footer {
    background: var(--ui-dark);
    color: var(--ui-text-muted);
    padding: 40px 0 24px;
    font-size: 14px;
    margin-top: 0;
}

.wf-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color .15s;
}

.wf-footer a:hover {
    color: var(--ui-white);
}

.wf-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: var(--ui-gap);
    flex-wrap: wrap;
    line-height: 1.8;
}

.wf-footer__warning {
    color: #f87171;
    font-weight: 600;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ======= Age Gate ======= */
.wf-agegate {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-agegate__box {
    background: var(--ui-white);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 420px;
    box-shadow: var(--ui-shadow-lg);
}

.wf-agegate__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ui-text);
}

.wf-agegate__text {
    color: var(--ui-text-secondary);
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
}

.wf-agegate__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ======= Cookie Consent ======= */
.wf-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ui-dark);
    color: #cbd5e1;
    padding: 16px;
    z-index: 1500;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,.1);
}

.wf-cookie.active { display: block; }

.wf-cookie__inner {
    max-width: var(--ui-max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

/* ======= Badge ======= */
.wf-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--ui-radius-full);
    background: var(--ui-accent);
    color: var(--ui-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
}

.wf-badge--sm {
    font-size: 11px;
    padding: 2px 8px;
}

.wf-badge--success {
    background: var(--ui-success);
}

.wf-badge--warning {
    background: var(--ui-warning);
}

.wf-badge--danger {
    background: var(--ui-danger);
}

/* ======= Alerts ======= */
.wf-alert {
    padding: 14px 18px;
    border-radius: var(--ui-radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.wf-alert--ok {
    background: var(--ui-success-light);
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.wf-alert--error {
    background: var(--ui-danger-light);
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.wf-alert--warning {
    background: var(--ui-warning-light);
    border: 1px solid #fde68a;
    color: #92400e;
}

/* ======= Popup ======= */
.wf-popup {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.6);
    backdrop-filter: blur(4px);
}

.wf-popup__content {
    position: relative;
    background: var(--ui-white);
    border-radius: var(--ui-radius);
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: var(--ui-shadow-lg);
}

.wf-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--ui-bg);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--ui-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .15s;
}

.wf-popup__close:hover {
    background: var(--ui-border);
}

.wf-popup__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.wf-popup__subtitle {
    font-size: 14px;
    color: var(--ui-text-secondary);
    margin: 0 0 20px;
}

/* ======= Utility ======= */
.wf-text-center { text-align: center; }
.wf-text-muted { color: var(--ui-text-secondary); }
.wf-mt-0 { margin-top: 0; }
.wf-mb-0 { margin-bottom: 0; }

/* ======= Burger & Drawer ======= */
.wf-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    flex-shrink: 0;
}
.wf-burger span {
    display: block;
    height: 2px;
    background: var(--ui-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.wf-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wf-burger.is-active span:nth-child(2) { opacity: 0; }
.wf-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.wf-header__balance {
    white-space: nowrap;
    flex-shrink: 0;
}

.wf-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
}
.wf-drawer.is-open { display: block; }
.wf-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    animation: wfFadeIn .2s ease;
}
.wf-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: var(--ui-white, #fff);
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
    padding: 72px 24px 24px;
    overflow-y: auto;
    animation: wfSlideIn .25s ease;
}
@keyframes wfFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes wfSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.wf-drawer__nav .wf-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}
.wf-drawer__nav .wf-nav a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--ui-border, #e2e8f0);
}
.wf-drawer__auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}
.wf-btn--block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
    .wf-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .wf-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .wf-steps { grid-template-columns: repeat(2, 1fr); }
    .wf-hero__title { font-size: 32px; }
    .wf-hero { padding: 64px 0 72px; }
    .wf-header__nav,
    .wf-header__auth { display: none; }
    .wf-burger { display: flex; }
    .wf-footer__inner { flex-direction: column; }
    .wf-section { padding: 48px 0; }
    .wf-section__title { font-size: 24px; }
}

@media (max-width: 480px) {
    .wf-grid--2,
    .wf-grid--3,
    .wf-grid--4 { grid-template-columns: 1fr; }
    .wf-steps { grid-template-columns: 1fr; }
    .wf-hero { padding: 48px 0 56px; }
    .wf-hero__title { font-size: 28px; }
    .wf-hero__subtitle { font-size: 16px; }
    .wf-header__inner { height: 56px; }
    .wf-btn--sm { padding: 5px 10px; font-size: 12px; }
    .wf-header__balance { font-size: 11px; padding: 3px 8px; }
}

/* End */


/* Start:/local/templates/bstd_promo/styles.css?177282579667*/
/* Additional overrides — intentionally minimal for wireframe */

/* End */
/* /local/templates/bstd_promo/template_styles.css?177283637323017 */
/* /local/templates/bstd_promo/styles.css?177282579667 */
