/* ==========================================================================
   VINDEREN PRO LANDING PAGE STYLES (WORKSHOP BLUEPRINT & BRASS ACCENT)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body.page-template-vinderen-pro-landing {
    --background: #1c1d22; 
    --surface: #23242a;
    --card: #23242a;
    --border: #32343d;
    --foreground: #f2f3f5;
    --muted-foreground: #a0a4b0;
    --brass: #d4af37;
    --brass-hover: #e5be47;
    --brass-glow: rgba(212, 175, 55, 0.2);
    --destructive: #ef4444;

    --font-display: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    background-color: var(--background) !important;
    color: var(--foreground);
    font-family: var(--font-display);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
}

body.page-template-vinderen-pro-landing * {
    box-sizing: border-box;
}

/* Theme / Blocksy container reset on Landing Page */
body.page-template-vinderen-pro-landing #main-container,
body.page-template-vinderen-pro-landing #main,
body.page-template-vinderen-pro-landing .site-main,
body.page-template-vinderen-pro-landing .wp-site-blocks {
    margin: 0 !important;
    padding: 0 !important;
}

body.admin-bar.page-template-vinderen-pro-landing .vinderen-pro-wrapper {
    min-height: calc(100vh - 32px);
}

.vinderen-pro-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}

/* NAVBAR */
.pro-navbar {
    border-bottom: 1px solid var(--border);
    background: rgba(28, 29, 34, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-shrink: 0;
    z-index: 100;
    position: sticky;
    top: 0;
}

body.admin-bar .pro-navbar {
    top: 32px;
}

.pro-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}

.pro-logo-btn {
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.pro-logo-accent {
    color: var(--brass);
}

.pro-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow-x: auto;
}

.pro-nav-item {
    background: none;
    border: none;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: color var(--transition-fast);
    white-space: nowrap;
    padding: 4px 0;
}

.pro-nav-item:hover {
    color: var(--brass);
}

.pro-nav-item.active {
    color: var(--brass);
}

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

.btn-pro-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-pro-outline:hover {
    border-color: var(--brass);
    color: var(--brass);
}

.btn-pro-primary {
    background: var(--brass);
    border: 1px solid var(--brass);
    color: #1c1d22;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-pro-primary:hover {
    background: var(--brass-hover);
    box-shadow: 0 0 15px var(--brass-glow);
}

/* MAIN PANEL CONTAINER */
.pro-main-content {
    flex: 1;
    position: relative;
}

.pro-panel {
    display: none;
    width: 100%;
}

.pro-panel.active {
    display: block;
    animation: reveal 0.4s var(--ease-out-expo) forwards;
}

#start.pro-panel.active {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px);
}

body.admin-bar #start.pro-panel.active {
    min-height: calc(100vh - 88px);
}

/* START / HERO PANEL */
.start-panel-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    min-height: calc(100vh - 56px);
    flex: 1;
}

.start-hero-image-col {
    position: relative;
    background: var(--surface);
    overflow: hidden;
    display: block;
}

.start-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(125%);
    opacity: 0.55;
}

.start-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28, 29, 34, 0.2), var(--background));
}

.start-hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted-foreground);
}

.start-hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 64px;
}

.mono-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brass);
    margin-bottom: 12px;
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: 3.85rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.98;
    color: var(--foreground);
    margin-bottom: 24px;
}

.hero-subtitle-main {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 480px;
}

.hero-stat-box {
    background: var(--background);
    padding: 18px;
}

.hero-stat-val {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--brass);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-lbl {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

.hero-cta-btns {
    margin-top: 28px;
    display: flex;
    gap: 14px;
}

/* GENERIC SECTION HEAD */
.section-head-box {
    margin-bottom: 32px;
}

.section-head-title {
    font-family: var(--font-display);
    font-size: 2.65rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--foreground);
}

.section-head-lead {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    margin-top: 10px;
    max-width: 680px;
}

/* GENERIC CONTAINER PADDING */
.pro-panel-container {
    padding: 48px 64px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    place-items: center;
}

/* AUDIENCES / DLA KOGO */
.audiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.audience-card {
    border-left: 2px solid var(--brass);
    padding-left: 20px;
}

.audience-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--foreground);
}

.audience-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* BENEFITS / KORZYŚCI */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 24px;
}

.benefit-card {
    background: var(--background);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background var(--transition-fast);
}

.benefit-card:hover {
    background: var(--surface);
}

.benefit-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* PROCESS / KROKI */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.process-card-step {
    display: flex;
    flex-direction: column;
}

.process-step-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    transition: color var(--transition-fast);
}

.process-card-step:hover .process-step-num {
    color: rgba(212, 175, 55, 0.4);
}

.process-card-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 4px;
}

.process-card-step p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* BRANDS / MARKI */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.brand-box {
    border: 1px solid var(--border);
    padding: 32px;
    background: var(--background);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color var(--transition-fast);
}

.brand-box:hover {
    border-color: var(--brass);
}

.brand-logo-wrap {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 4px;
}

.brand-logo-img {
    max-height: 54px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

.brand-box:hover .brand-logo-img {
    opacity: 1;
}

.brand-box h3 {
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--brass);
}

.brand-box p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brass);
    text-decoration: none;
    margin-top: 4px;
}

.brand-link:hover {
    text-decoration: underline;
}

/* FAQ PANEL */
.faq-container {
    max-width: 880px;
    margin-top: 20px;
}

.faq-row {
    border-bottom: 1px solid var(--border);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--brass);
}

.faq-icon {
    font-family: var(--font-mono);
    color: var(--brass);
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.faq-row.open .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding-bottom: 20px;
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-row.open .faq-content {
    display: block;
}

/* FORM & AUTH PANELS */
.form-panel-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-info-col h2 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.form-info-col p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

.form-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--foreground);
}

.form-bullets li .dot {
    width: 6px;
    height: 6px;
    background: var(--brass);
    display: inline-block;
}

.form-card-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
}

/* Form controls styling */
.pro-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.pro-field-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

.pro-field-input {
    width: 100%;
    background: var(--background);
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--foreground);
    outline: none;
    transition: border-color var(--transition-fast);
}

.pro-field-input:focus {
    border-color: var(--brass);
}

.pro-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: var(--muted-foreground);
    margin-bottom: 20px;
    cursor: pointer;
}

.pro-form-checkbox input {
    margin-top: 2px;
    accent-color: var(--brass);
}

.btn-submit-pro {
    width: 100%;
    background: var(--brass);
    color: #1c1d22;
    border: none;
    padding: 12px 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-submit-pro:hover {
    background: var(--brass-hover);
    box-shadow: 0 0 15px var(--brass-glow);
}

/* LOGIN PANEL SPLIT */
.login-panel-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: calc(100vh - 56px);
}

.login-side-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 64px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* OVERRIDES FOR SHORTCODE FORMS ([vinderen_b2b_login] & [vinderen_b2b_registration]) ON PRO LANDING */
.page-template-vinderen-pro-landing .vinderen-auth-container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: var(--foreground) !important;
}

.page-template-vinderen-pro-landing .vinderen-auth-header {
    display: none !important;
}

.page-template-vinderen-pro-landing .vinderen-form-group label {
    font-family: var(--font-mono) !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--muted-foreground) !important;
    margin-bottom: 6px !important;
}

.page-template-vinderen-pro-landing .vinderen-form-group input,
.page-template-vinderen-pro-landing .vinderen-form-group select {
    width: 100% !important;
    background: var(--background) !important;
    border: 1px solid var(--border) !important;
    border-radius: 0 !important;
    padding: 10px 14px !important;
    font-family: var(--font-display) !important;
    font-size: 0.9rem !important;
    color: var(--foreground) !important;
    outline: none !important;
    height: auto !important;
}

.page-template-vinderen-pro-landing .vinderen-form-group input:focus,
.page-template-vinderen-pro-landing .vinderen-form-group select:focus {
    border-color: var(--brass) !important;
}

.page-template-vinderen-pro-landing .vinderen-submit-btn,
.page-template-vinderen-pro-landing .vinderen-auth-container button[type="submit"] {
    width: 100% !important;
    background: var(--brass) !important;
    color: #1c1d22 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 20px !important;
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    cursor: pointer !important;
    transition: all var(--transition-fast) !important;
}

.page-template-vinderen-pro-landing .vinderen-submit-btn:hover,
.page-template-vinderen-pro-landing .vinderen-auth-container button[type="submit"]:hover {
    background: var(--brass-hover) !important;
    box-shadow: 0 0 15px var(--brass-glow) !important;
}

.page-template-vinderen-pro-landing .vinderen-auth-footer {
    color: var(--muted-foreground) !important;
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    margin-top: 20px !important;
}

.page-template-vinderen-pro-landing .vinderen-auth-footer a {
    color: var(--brass) !important;
    text-decoration: underline !important;
}

/* FOOTER BAR */
.pro-footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    flex-shrink: 0;
}

.pro-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

/* RESPONSIVE & MOBILE MENU */
.pro-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}

.pro-hamburger-bar {
    width: 22px;
    height: 2px;
    background-color: var(--foreground);
    transition: all var(--transition-fast);
}

.pro-mobile-toggle.open .pro-hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.pro-mobile-toggle.open .pro-hamburger-bar:nth-child(2) {
    opacity: 0;
}

.pro-mobile-toggle.open .pro-hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.pro-mobile-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    background: rgba(28, 29, 34, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    z-index: 99;
}

.pro-mobile-menu.open {
    display: flex;
}

.pro-mobile-item {
    background: none;
    border: none;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.pro-mobile-item.active {
    color: var(--brass);
}

.pro-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.pro-mobile-actions button {
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
}

/* LARGE SCREEN SCALING (1440px and higher) */
@media (min-width: 1440px) {

    .pro-nav-container,
    .pro-panel-container,
    .pro-footer-container {
        max-width: 1540px;
    }

    .hero-title-main {
        font-size: 4.25rem;
    }

    .hero-subtitle-main {
        font-size: 1.15rem;
        max-width: 580px;
    }

    .section-head-title {
        font-size: 2.75rem;
    }

    .section-head-lead {
        font-size: 1.05rem;
        max-width: 720px;
    }

    .hero-stat-val {
        font-size: 2.35rem;
    }

    .hero-stat-lbl {
        font-size: 10px;
    }

    .benefit-card h3,
    .brand-box h3 {
        font-size: 1.5rem;
    }

    .benefit-card p,
    .brand-box p {
        font-size: 1rem;
    }

    .faq-trigger {
        font-size: 1.1rem;
        padding: 20px 0;
    }

    .faq-content {
        font-size: 0.95rem;
    }

    .start-hero-text-col,
    .pro-panel-container,
    .login-side-form {
        padding: 64px 96px;
    }
}

@media (min-width: 1800px) {

    .pro-nav-container,
    .pro-panel-container,
    .pro-footer-container {
        max-width: 1760px;
    }

    .hero-title-main {
        font-size: 5rem;
    }

    .section-head-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 991px) {

    html,
    body {
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .vinderen-pro-wrapper {
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
    }

    .pro-navbar {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .pro-main-content {
        height: auto !important;
        overflow: visible !important;
        flex: none !important;
    }

    .pro-panel {
        min-height: auto !important;
    }

    .pro-nav-menu,
    .pro-nav-actions {
        display: none;
    }

    .pro-mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .start-panel-grid,
    .login-panel-grid,
    .form-panel-split {
        grid-template-columns: 1fr;
    }

    .start-hero-image-col {
        display: none;
    }

    .benefits-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .pro-panel-container,
    .start-hero-text-col,
    .login-side-form {
        padding: 40px 20px 60px 20px;
    }

    .hero-title-main {
        font-size: 2.25rem;
    }

    .pro-footer {
        position: relative;
        z-index: 10;
        margin-top: auto;
    }

    .pro-footer-container {
        justify-content: center;
        text-align: center;
        height: 54px;
    }

    .pro-footer-logo,
    .pro-footer-links {
        display: none !important;
    }

    .pro-footer-copy {
        width: 100%;
        text-align: center;
    }
}