﻿*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #050913;
    color: #ECF2FF;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ol,
ul {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
}

button {
    cursor: pointer;
}

:root {
    --pf-core-bg: #050913;
    --pf-surface-soft: #0D1523;
    --pf-surface-soft-alt: #0A1422;
    --pf-accent-main: #7DF3D1;
    --pf-accent-soft: #5FA1FF;
    --pf-accent-deep: #2BE0A0;
    --pf-accent-secondary: #FF8BC1;
    --pf-text-main: #ECF2FF;
    --pf-text-muted: #9CA8C0;
    --pf-border-soft: rgba(255, 255, 255, 0.08);
    --pf-radius-main: 18px;
    --pf-radius-pill: 999px;
    --pf-shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.6);
    --pf-max-width: 1200px;
    --pf-header-height: 76px;
}

.pfv-page-frame {
    min-height: 100vh;
    background:
        radial-gradient(circle at 0% 0%, rgba(125, 243, 209, 0.08) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(95, 161, 255, 0.12) 0, transparent 60%),
        linear-gradient(135deg, #050913 0%, #050913 40%, #0A1020 100%);
    color: var(--pf-text-main);
}

/* Header */

.pfv-header-shell {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: radial-gradient(circle at 0 0, rgba(125, 243, 209, 0.12) 0, transparent 55%) rgba(5, 7, 11, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pfv-header-inner {
    max-width: var(--pf-max-width);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.pfv-logo-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.04em;
}

.pfv-logo-symbol {
    width: 38px;
    height: 38px;
    border-radius: 18px;
    background: conic-gradient(from 160deg, #7DF3D1, #5FA1FF, #FF8BC1, #7DF3D1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Nunito", system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #050913;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

.pfv-logo-textwrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pfv-logo-main {
    font-family: "Nunito", system-ui, sans-serif;
    font-weight: 600;
    font-size: 17px;
}

.pfv-logo-sub {
    font-size: 11px;
    color: var(--pf-text-muted);
    text-transform: uppercase;
}

/* Desktop nav */

.pfv-nav-cluster {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pfv-nav-listline {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.pfv-nav-linkline {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--pf-text-muted);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.pfv-nav-linkline--active {
    color: var(--pf-text-main);
    background-color: rgba(255, 255, 255, 0.04);
}

.pfv-nav-linkline:hover {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
}

.pfv-nav-cta-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pfv-nav-cta {
    font-size: 13px;
    padding: 8px 18px;
    border-radius: var(--pf-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.pfv-nav-cta--outline {
    border-color: rgba(95, 161, 255, 0.55);
    color: var(--pf-accent-main);
    background: rgba(95, 161, 255, 0.08);
}

.pfv-nav-cta--outline:hover {
    background: rgba(95, 161, 255, 0.16);
    transform: translateY(-1px);
}

.pfv-nav-cta--solid {
    background: radial-gradient(circle at 0 0, #7DF3D1, #5FA1FF);
    color: #050913;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
}

.pfv-nav-cta--solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
}

/* Burger + mobile nav */

.pfv-nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    gap: 5px;
}

.pfv-nav-toggle-line {
    width: 100%;
    height: 2px;
    background: #ECF2FF;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.pfv-nav-toggle.pfv-nav-toggle--active .pfv-nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(40deg);
    width: 100%;
}

.pfv-nav-toggle.pfv-nav-toggle--active .pfv-nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.pfv-nav-toggle.pfv-nav-toggle--active .pfv-nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-40deg);
    width: 100%;
}

.pfv-nav-mobile-panel {
    position: fixed;
    inset: var(--pf-header-height) 0 0 0;
    background: radial-gradient(circle at 0 0, rgba(125, 243, 209, 0.16) 0, transparent 55%) rgba(5, 7, 11, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 30;
}

.pfv-nav-mobile-panel.pfv-nav-mobile-panel--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pfv-nav-mobile-shell {
    max-width: var(--pf-max-width);
    margin: 0 auto;
    padding: 18px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #111B2D;
}

.pfv-nav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.pfv-nav-mobile-link {
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--pf-text-main);
}

.pfv-nav-mobile-link--active {
    border-color: rgba(95, 161, 255, 0.55);
    background: radial-gradient(circle at 0 0, rgba(95, 161, 255, 0.18), rgba(5, 7, 11, 0.96));
}

.pfv-nav-mobile-cta-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pfv-nav-mobile-cta {
    font-size: 14px;
    padding: 11px 18px;
    border-radius: var(--pf-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.pfv-nav-mobile-cta--outline {
    border-color: rgba(95, 161, 255, 0.55);
    color: var(--pf-accent-main);
    background: rgba(95, 161, 255, 0.08);
}

.pfv-nav-mobile-cta--solid {
    background: radial-gradient(circle at 0 0, #7DF3D1, #5FA1FF);
    color: #050913;
    font-weight: 600;
}

/* Hero */

.pfv-main-core {
    max-width: var(--pf-max-width);
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.pfv-hero-section {
    position: relative;
    border-radius: 30px;
    padding: 32px 28px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.22) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(95, 161, 255, 0.3) 0, transparent 60%),
        linear-gradient(135deg, #0A1020 0%, #050913 45%, #16233E 100%);
    box-shadow: var(--pf-shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.pfv-hero-deco-orbit,
.pfv-hero-deco-pulse {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.6;
    pointer-events: none;
}

.pfv-hero-deco-orbit {
    width: 420px;
    height: 420px;
    right: -140px;
    top: -120px;
    background: radial-gradient(circle, rgba(95, 161, 255, 0.36), transparent 62%);
}

.pfv-hero-deco-pulse {
    width: 360px;
    height: 360px;
    left: -140px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(255, 139, 193, 0.36), transparent 60%);
}

.pfv-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    z-index: 1;
}

.pfv-hero-copy {
    position: relative;
    z-index: 2;
}

.pfv-hero-tagline-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.pfv-hero-tagline-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--pf-radius-pill);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--pf-text-muted);
}

.pfv-hero-tagline-chip i {
    font-size: 13px;
    color: var(--pf-accent-secondary);
}

.pfv-hero-cap-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--pf-radius-pill);
    background: radial-gradient(circle at 0 0, #7DF3D1, #5FA1FF);
    color: #050913;
    font-size: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.pfv-hero-cap-label {
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
    font-family: "Nunito", system-ui, sans-serif;
}

.pfv-hero-cap-amount {
    font-weight: 700;
    font-family: "Nunito", system-ui, sans-serif;
}

.pfv-hero-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.22;
    margin-bottom: 16px;
}

.pfv-hero-subtitle {
    font-size: 15px;
    color: var(--pf-text-muted);
    max-width: 560px;
    margin-bottom: 10px;
}

.pfv-hero-subtitle-secondary {
    font-size: 14px;
    color: var(--pf-text-muted);
    max-width: 520px;
    margin-bottom: 22px;
}

/* Timer block */

.pfv-hero-timer-wrap {
    margin-bottom: 22px;
}

.pfv-timer-panel {
    border-radius: 20px;
    padding: 16px 18px 14px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.28) 0, transparent 55%),
        linear-gradient(135deg, rgba(15, 19, 30, 0.98), rgba(5, 7, 11, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.65);
}

.pfv-timer-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.pfv-timer-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--pf-text-muted);
}

.pfv-timer-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle, #FF8BC1, #C24B9F);
    box-shadow: 0 0 0 0 rgba(255, 139, 193, 0.82);
    animation: mnqTimerPulse 1.8s infinite;
}

@keyframes mnqTimerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 139, 193, 0.82);
    }
    70% {
        transform: scale(1.16);
        box-shadow: 0 0 0 14px rgba(255, 139, 193, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 139, 193, 0);
    }
}

.pfv-timer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.pfv-timer-cell {
    border-radius: 14px;
    padding: 10px 8px;
    background: rgba(5, 7, 11, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pfv-timer-value {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.pfv-timer-unit {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pf-text-muted);
    margin-top: 2px;
}

.pfv-timer-caption {
    font-size: 11px;
    color: var(--pf-text-muted);
}

/* Hero CTA */

.pfv-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pfv-hero-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Nunito", system-ui, sans-serif;
    background: linear-gradient(135deg, #7DF3D1, #5FA1FF, #2BE0A0);
    color: #050913;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pfv-hero-cta-main i {
    font-size: 14px;
}

.pfv-hero-cta-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.75);
}

/* Hero visual */

.pfv-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.pfv-hero-orb-main {
    position: relative;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #7DF3D1, #5FA1FF, #FF8BC1);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.pfv-hero-orb-layer {
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    border: 1px solid rgba(5, 7, 11, 0.42);
}

.pfv-hero-orb-layer--outer {
    border-style: dashed;
    opacity: 0.9;
}

.pfv-hero-orb-layer--inner {
    inset: 36px;
    border: 1px solid rgba(5, 7, 11, 0.7);
}

.pfv-hero-orb-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Nunito", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    color: #050913;
}

.pfv-hero-orb-text-top {
    margin-bottom: 4px;
    opacity: 0.82;
}

.pfv-hero-orb-text-bottom {
    font-weight: 700;
    font-size: 12px;
}

.pfv-hero-chip-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-self: stretch;
}

.pfv-hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.pfv-hero-chip-pill {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 7, 11, 0.76);
    color: var(--pf-text-muted);
}

/* Responsive */

@media (max-width: 960px) {
    .pfv-hero-inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
        gap: 24px;
    }

    .pfv-hero-title {
        font-size: 28px;
    }

    .pfv-hero-orb-main {
        width: 210px;
        height: 210px;
    }
}

@media (max-width: 768px) {
    .pfv-header-inner {
        padding-inline: 16px;
    }

    .pfv-nav-cluster {
        display: none;
    }

    .pfv-nav-toggle {
        display: inline-flex;
    }

    .pfv-hero-section {
        padding: 24px 20px 26px;
        border-radius: 22px;
    }

    .pfv-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .pfv-hero-visual {
        order: -1;
    }

    .pfv-hero-title {
        font-size: 24px;
    }

    .pfv-timer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pfv-hero-cta-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .pfv-main-core {
        padding-inline: 14px;
    }

    .pfv-header-inner {
        padding-inline: 14px;
    }

    .pfv-hero-tagline-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pfv-hero-orb-main {
        width: 190px;
        height: 190px;
    }
}

.pfv-plan-stack-zone {
    margin-top: 40px;
    padding: 28px 24px 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.2) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(95, 161, 255, 0.24) 0, transparent 60%),
        linear-gradient(145deg, rgba(7, 10, 17, 0.96), rgba(5, 7, 11, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.7);
}

.pfv-plan-headwrap {
    max-width: 640px;
    margin: 0 auto 22px;
    text-align: center;
}

.pfv-plan-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.pfv-plan-subtitle {
    font-size: 14px;
    color: var(--pf-text-muted);
}

.pfv-plan-listcolumn {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 640px;
    margin: 0 auto;
}

.pfv-plan-card {
    border-radius: 18px;
    padding: 16px 18px 16px;
    background: rgba(5, 7, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pfv-plan-card--accent {
    background:
        radial-gradient(circle at 0 0, rgba(95, 161, 255, 0.24) 0, transparent 55%),
        rgba(5, 7, 11, 0.96);
    border-color: rgba(95, 161, 255, 0.64);
}

.pfv-plan-card-toprow {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.pfv-plan-namecluster {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pfv-plan-name {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 17px;
}

.pfv-plan-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--pf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.pfv-plan-tag--highlight {
    background: rgba(95, 161, 255, 0.18);
    color: var(--pf-accent-main);
}

.pfv-plan-freewrap {
    text-align: right;
    min-width: 130px;
}

.pfv-plan-free-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pf-text-muted);
}

.pfv-plan-free-count {
    display: block;
    margin-top: 3px;
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--pf-accent-secondary);
}

.pfv-plan-midgrid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.pfv-plan-pricebox {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pfv-plan-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pf-text-muted);
}

.pfv-plan-price-amount {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.pfv-plan-note {
    font-size: 11px;
    color: var(--pf-text-muted);
}

.pfv-plan-footrow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.pfv-plan-footcopy {
    font-size: 13px;
    color: var(--pf-text-muted);
}

.pfv-plan-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Nunito", system-ui, sans-serif;
    border: 1px solid rgba(95, 161, 255, 0.68);
    color: var(--pf-accent-main);
    background: rgba(95, 161, 255, 0.1);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pfv-plan-cta--accent {
    background: linear-gradient(135deg, #7DF3D1, #5FA1FF);
    color: #050913;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
}

.pfv-plan-cta i {
    font-size: 13px;
}

.pfv-plan-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
    background: rgba(95, 161, 255, 0.18);
}

.pfv-plan-cta--accent:hover {
    background: linear-gradient(135deg, #F7DE89, #F3B37A);
}

@media (max-width: 720px) {
    .pfv-plan-stack-zone {
        padding: 22px 18px 24px;
        border-radius: 20px;
    }

    .pfv-plan-card {
        padding: 14px 14px 14px;
    }

    .pfv-plan-card-toprow {
        flex-direction: column;
        align-items: flex-start;
    }

    .pfv-plan-freewrap {
        text-align: left;
        min-width: 0;
    }

    .pfv-plan-midgrid {
        flex-direction: column;
        align-items: flex-start;
    }

    .pfv-plan-footrow {
        flex-direction: column;
        align-items: flex-start;
    }

    .pfv-plan-headwrap {
        margin-bottom: 18px;
    }
}

.pfv-support-ribbon {
    margin-top: 38px;
    padding: 24px 20px 26px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.18) 0, transparent 52%),
        radial-gradient(circle at 100% 100%, rgba(95, 161, 255, 0.22) 0, transparent 60%),
        linear-gradient(135deg, rgba(7, 10, 17, 0.98), rgba(5, 7, 11, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.72);
}

.pfv-support-head {
    max-width: 640px;
    margin: 0 auto 20px;
    text-align: center;
}

.pfv-support-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 22px;
    margin-bottom: 6px;
}

.pfv-support-subtitle {
    font-size: 14px;
    color: var(--pf-text-muted);
}

.pfv-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pfv-support-card {
    display: block;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pfv-support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.78);
    border-color: rgba(95, 161, 255, 0.64);
}

.pfv-support-figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.05), transparent 60%);
}

.pfv-support-figure img {
    width: 100%;
}

@media (max-width: 960px) {
    .pfv-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pfv-support-ribbon {
        padding: 20px 16px 22px;
        border-radius: 20px;
    }

    .pfv-support-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.pfv-foot-shell {
    margin-top: 40px;
    padding-bottom: 26px;
}

.pfv-foot-inner {
    max-width: var(--pf-max-width);
    margin: 0 auto;
    padding: 22px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pfv-foot-ageblock {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.pfv-foot-ageicon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: radial-gradient(circle at 30% 20%, #7DF3D1, #5FA1FF);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pfv-foot-age-number,
.pfv-foot-age-plus {
    font-family: "Nunito", system-ui, sans-serif;
    font-weight: 700;
    color: #050913;
    line-height: 1;
}

.pfv-foot-age-number {
    font-size: 22px;
}

.pfv-foot-age-plus {
    font-size: 18px;
    margin-left: 2px;
}

.pfv-foot-agecopy {
    font-size: 13px;
    color: var(--pf-text-muted);
}

.pfv-foot-regblock {
    padding: 12px 0 4px;
}

.pfv-foot-regtitle {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pf-text-muted);
    margin-bottom: 6px;
}

.pfv-foot-regtext {
    font-size: 13px;
    color: var(--pf-text-main);
}

.pfv-foot-respblock {
    border-radius: 18px;
    padding: 12px 14px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.2) 0, transparent 55%),
        rgba(5, 7, 11, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pfv-foot-resptext {
    font-size: 13px;
    color: var(--pf-text-muted);
}

.pfv-foot-linkstrip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 13px;
}

.pfv-foot-link {
    position: relative;
    color: var(--pf-text-muted);
    padding-bottom: 2px;
}

.pfv-foot-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #7DF3D1, #5FA1FF);
    transition: width 0.18s ease;
}

.pfv-foot-link:hover {
    color: #FFFFFF;
}

.pfv-foot-link:hover::after {
    width: 100%;
}

.pfv-foot-bottomrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: var(--pf-text-muted);
}

.pfv-foot-license-note {
    font-family: "Nunito", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
}

@media (max-width: 720px) {
    .pfv-foot-inner {
        padding-inline: 16px;
    }

    .pfv-foot-ageblock {
        align-items: flex-start;
    }

    .pfv-foot-bottomrow {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pfv-cookie-dock {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 12px 12px 16px;
    pointer-events: none;
    z-index: 60;
}

.pfv-cookie-shell {
    pointer-events: auto;
    max-width: 640px;
    width: 100%;
    border-radius: 18px;
    padding: 14px 16px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.28) 0, transparent 55%),
        rgba(5, 7, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pfv-cookie-textwrap {
    flex: 1 1 auto;
}

.pfv-cookie-labelrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pfv-cookie-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, #7DF3D1, #5FA1FF);
    box-shadow: 0 0 0 0 rgba(95, 161, 255, 0.88);
    animation: mnqCookiePulse 2s infinite;
}

@keyframes mnqCookiePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(95, 161, 255, 0.82);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 14px rgba(95, 161, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(95, 161, 255, 0);
    }
}

.pfv-cookie-label {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--pf-text-muted);
}

.pfv-cookie-copy {
    font-size: 13px;
    color: var(--pf-text-main);
    margin-bottom: 6px;
}

.pfv-cookie-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 12px;
    color: var(--pf-text-muted);
}

.pfv-cookie-link {
    position: relative;
    color: var(--pf-text-muted);
    padding-bottom: 1px;
}

.pfv-cookie-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #7DF3D1, #5FA1FF);
    transition: width 0.16s ease;
}

.pfv-cookie-link:hover {
    color: #FFFFFF;
}

.pfv-cookie-link:hover::after {
    width: 100%;
}

.pfv-cookie-sep {
    opacity: 0.6;
}

.pfv-cookie-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.pfv-cookie-btn {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: none;
    color: inherit;
}

.pfv-cookie-btn--primary {
    background: linear-gradient(135deg, #7DF3D1, #5FA1FF);
    color: #050913;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.pfv-cookie-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    background: linear-gradient(135deg, #F7DE89, #F3B37A);
}

.pfv-cookie-dock.pfv-cookie-dock--hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: none;
}

.pfv-cookie-dock:not(.pfv-cookie-dock--hidden) {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 640px) {
    .pfv-cookie-shell {
        border-radius: 16px;
        padding: 12px 12px;
        flex-direction: column;
        gap: 10px;
    }

    .pfv-cookie-actions {
        justify-content: flex-end;
    }

    .pfv-cookie-btn--primary {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }
}

.mnlg-main-access {
    padding-top: 40px;
    padding-bottom: 60px;
}

.mnlg-access-shell {
    max-width: 480px;
    margin: 0 auto;
}

.mnlg-access-head {
    text-align: center;
    margin-bottom: 22px;
}

.mnlg-access-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.mnlg-access-subtitle {
    font-size: 14px;
    color: var(--pf-text-muted);
}

.mnlg-access-card {
    border-radius: 22px;
    padding: 22px 20px 20px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.2) 0, transparent 55%),
        rgba(5, 7, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.mnlg-access-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mnlg-field-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mnlg-field-label {
    font-size: 13px;
    color: var(--pf-text-muted);
}

.mnlg-field-shell {
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 8px 12px;
    background: rgba(5, 7, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 8px;
}

.mnlg-field-icon {
    flex: 0 0 auto;
    color: var(--pf-text-muted);
    font-size: 14px;
}

.mnlg-field-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    color: var(--pf-text-main);
    font-size: 14px;
}

.mnlg-field-input::placeholder {
    color: rgba(152, 155, 166, 0.7);
}

.mnlg-field-input:focus-visible {
    outline: none;
}

.mnlg-access-meta {
    margin-top: 4px;
}

.mnlg-access-hint {
    font-size: 12px;
    color: var(--pf-text-muted);
}

.mnlg-access-feedback {
    min-height: 20px;
    font-size: 13px;
    margin-top: 4px;
}

.mnlg-access-feedback.mnlg-access-feedback--error {
    color: #F7A7A7;
}

.mnlg-access-feedback.mnlg-access-feedback--info {
    color: #7DF3D1;
}

.mnlg-access-submit {
    margin-top: 6px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(95, 161, 255, 0.72);
    background: linear-gradient(135deg, #7DF3D1, #5FA1FF);
    color: #050913;
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.mnlg-access-submit-spinner {
    display: none;
    font-size: 14px;
}

.mnlg-access-submit-spinner i {
    animation: mnlgSpin 0.8s linear infinite;
}

@keyframes mnlgSpin {
    to {
        transform: rotate(360deg);
    }
}

.mnlg-access-submit.mnlg-access-submit--loading {
    opacity: 0.85;
    cursor: wait;
}

.mnlg-access-submit.mnlg-access-submit--loading .mnlg-access-submit-spinner {
    display: inline-flex;
}

.mnlg-access-submit.mnlg-access-submit--loading .mnlg-access-submit-label {
    opacity: 0.8;
}

.mnlg-access-submit:hover:not(.mnlg-access-submit--loading) {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.9);
}

.mnlg-access-alt {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.mnlg-access-alt-text {
    color: var(--pf-text-muted);
}

.mnlg-access-alt-link {
    color: var(--pf-accent-main);
}

@media (max-width: 640px) {
    .mnlg-main-access {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .mnlg-access-card {
        padding-inline: 16px;
        border-radius: 20px;
    }
}

.pfvrg-main-register {
    padding-top: 40px;
    padding-bottom: 60px;
}

.pfvrg-register-shell {
    max-width: 520px;
    margin: 0 auto;
}

.pfvrg-register-head {
    text-align: center;
    margin-bottom: 22px;
}

.pfvrg-register-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.pfvrg-register-subtitle {
    font-size: 14px;
    color: var(--pf-text-muted);
}

.pfvrg-register-card {
    border-radius: 24px;
    padding: 22px 22px 20px;
    background:
        radial-gradient(circle at 0 0, rgba(95, 161, 255, 0.22) 0, transparent 55%),
        rgba(5, 7, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.85);
}

.pfvrg-register-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pfvrg-field-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pfvrg-field-label {
    font-size: 13px;
    color: var(--pf-text-muted);
}

.pfvrg-field-shell {
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 8px 12px;
    background: rgba(5, 7, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 8px;
}

.pfvrg-field-icon {
    flex: 0 0 auto;
    color: var(--pf-text-muted);
    font-size: 14px;
}

.pfvrg-field-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    color: var(--pf-text-main);
    font-size: 14px;
}

.pfvrg-field-input::placeholder {
    color: rgba(152, 155, 166, 0.7);
}

.pfvrg-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.pfvrg-consent-block {
    margin-top: 4px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(5, 7, 11, 0.96);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pfvrg-consent-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--pf-text-muted);
    cursor: pointer;
}

.pfvrg-consent-item input {
    display: none;
}

.pfvrg-consent-fauxbox {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(5, 7, 11, 0.9);
    position: relative;
    flex-shrink: 0;
}

.pfvrg-consent-checkbox:checked + .pfvrg-consent-fauxbox::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(135deg, #7DF3D1, #5FA1FF);
}

.pfvrg-consent-text {
    line-height: 1.5;
}

.pfvrg-consent-link {
    color: var(--pf-accent-main);
}

.pfvrg-register-feedback {
    min-height: 22px;
    font-size: 13px;
    margin-top: 4px;
}

.pfvrg-register-feedback.pfvrg-register-feedback--error {
    color: #F7A7A7;
}

.pfvrg-register-feedback.pfvrg-register-feedback--success {
    color: #C5F6D6;
}

.pfvrg-register-submit {
    margin-top: 4px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(95, 161, 255, 0.72);
    background: linear-gradient(135deg, #7DF3D1, #5FA1FF);
    color: #050913;
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.9);
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.pfvrg-register-submit-spinner {
    display: none;
    font-size: 14px;
}

.pfvrg-register-submit-spinner i {
    animation: mnrgSpin 0.8s linear infinite;
}

@keyframes mnrgSpin {
    to {
        transform: rotate(360deg);
    }
}

.pfvrg-register-submit.pfvrg-register-submit--loading {
    opacity: 0.85;
    cursor: wait;
}

.pfvrg-register-submit.pfvrg-register-submit--loading .pfvrg-register-submit-spinner {
    display: inline-flex;
}

.pfvrg-register-submit.pfvrg-register-submit--loading .pfvrg-register-submit-label {
    opacity: 0.8;
}

.pfvrg-register-submit:hover:not(.pfvrg-register-submit--loading) {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.95);
}

.pfvrg-register-alt {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.pfvrg-register-alt-text {
    color: var(--pf-text-muted);
}

.pfvrg-register-alt-link {
    color: var(--pf-accent-main);
}

@media (max-width: 640px) {
    .pfvrg-main-register {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .pfvrg-register-card {
        padding-inline: 16px;
        border-radius: 20px;
    }

    .pfvrg-field-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.pfct-main-contact {
    padding-top: 40px;
    padding-bottom: 70px;
}

.pfct-contact-shell {
    max-width: var(--pf-max-width);
    margin: 0 auto;
}

.pfct-contact-head {
    max-width: 640px;
    margin: 0 auto 24px;
    text-align: center;
}

.pfct-contact-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.pfct-contact-subtitle {
    font-size: 14px;
    color: var(--pf-text-muted);
}

.pfct-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 22px;
}

.pfct-contact-card {
    border-radius: 24px;
    padding: 22px 20px 20px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.2) 0, transparent 55%),
        rgba(5, 7, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.85);
}

.pfct-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pfct-field-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pfct-field-label {
    font-size: 13px;
    color: var(--pf-text-muted);
}

.pfct-field-shell {
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 8px 12px;
    background: rgba(5, 7, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 8px;
}

.pfct-field-shell--textarea {
    align-items: flex-start;
}

.pfct-field-icon {
    flex: 0 0 auto;
    color: var(--pf-text-muted);
    font-size: 14px;
    padding-top: 2px;
}

.pfct-field-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    color: var(--pf-text-main);
    font-size: 14px;
    resize: none;
}

.pfct-field-input::placeholder {
    color: rgba(152, 155, 166, 0.7);
}

.pfct-field-textarea {
    min-height: 120px;
}

.pfct-contact-hint {
    font-size: 12px;
    color: var(--pf-text-muted);
    margin-top: 2px;
}

.pfct-contact-feedback {
    min-height: 22px;
    font-size: 13px;
    margin-top: 4px;
}

.pfct-contact-feedback.pfct-contact-feedback--error {
    color: #F7A7A7;
}

.pfct-contact-feedback.pfct-contact-feedback--success {
    color: #C5F6D6;
}

.pfct-contact-submit {
    margin-top: 4px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(95, 161, 255, 0.72);
    background: linear-gradient(135deg, #7DF3D1, #5FA1FF);
    color: #050913;
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.9);
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.pfct-contact-submit-spinner {
    display: none;
    font-size: 14px;
}

.pfct-contact-submit-spinner i {
    animation: mnctSpin 0.8s linear infinite;
}

@keyframes mnctSpin {
    to {
        transform: rotate(360deg);
    }
}

.pfct-contact-submit.pfct-contact-submit--loading {
    opacity: 0.85;
    cursor: wait;
}

.pfct-contact-submit.pfct-contact-submit--loading .pfct-contact-submit-spinner {
    display: inline-flex;
}

.pfct-contact-submit.pfct-contact-submit--loading .pfct-contact-submit-label {
    opacity: 0.8;
}

.pfct-contact-submit:hover:not(.pfct-contact-submit--loading) {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.95);
}

/* Aside */

.pfct-contact-aside {
    display: flex;
    align-items: stretch;
}

.pfct-contact-aside-card {
    border-radius: 22px;
    padding: 18px 18px 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(95, 161, 255, 0.18) 0, transparent 60%),
        rgba(7, 10, 17, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.85);
}

.pfct-contact-aside-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
}

.pfct-contact-aside-text {
    font-size: 13px;
    color: var(--pf-text-muted);
    margin-bottom: 6px;
}

.pfct-contact-aside-meta {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pfct-contact-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
}

.pfct-contact-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pf-text-muted);
}

.pfct-contact-meta-value {
    color: var(--pf-text-main);
}

/* Thank you overlay */

.pfct-thanks-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.pfct-thanks-overlay.pfct-thanks-overlay--visible {
    opacity: 1;
    pointer-events: auto;
}

.pfct-thanks-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 8, 0.82);
    backdrop-filter: blur(12px);
}

.pfct-thanks-modal {
    position: relative;
    max-width: 420px;
    width: 100%;
    border-radius: 22px;
    padding: 22px 22px 18px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 139, 193, 0.24) 0, transparent 55%),
        rgba(5, 7, 11, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    z-index: 71;
}

.pfct-thanks-iconwrap {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.pfct-thanks-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, #C5F6D6, #7CD9A7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #05351C;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.85);
    font-size: 20px;
}

.pfct-thanks-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 18px;
    text-align: center;
    margin-bottom: 6px;
}

.pfct-thanks-text {
    font-size: 13px;
    color: var(--pf-text-muted);
    text-align: center;
    margin-bottom: 12px;
}

.pfct-thanks-close {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid rgba(95, 161, 255, 0.72);
    background: linear-gradient(135deg, #7DF3D1, #5FA1FF);
    color: #050913;
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.pfct-thanks-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.95);
}

@media (max-width: 880px) {
    .pfct-contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .pfct-contact-aside {
        order: -1;
    }
}

@media (max-width: 640px) {
    .pfct-main-contact {
        padding-top: 32px;
        padding-bottom: 56px;
    }

    .pfct-contact-card {
        padding-inline: 16px;
        border-radius: 20px;
    }

    .pfct-contact-aside-card {
        border-radius: 20px;
    }

    .pfct-thanks-modal {
        margin-inline: 16px;
        border-radius: 20px;
        padding-inline: 18px;
    }
}



