/* ============================================
   LUBOZ STUDIOS — PORTFOLIO PREMIUM
   ============================================ */

/* HERO */
.pf-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 10vh;
    background: #000;
    position: relative;
    overflow: hidden;
}
.pf-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(196,163,61,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(196,163,61,0.04) 0%, transparent 50%);
}
.pf-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196,163,61,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196,163,61,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.3) 70%, transparent);
}
.pf-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.pf-hero-eyebrow span {
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--luboz-gold);
    font-family: 'Syne', sans-serif;
}
.pf-hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--luboz-gold);
    flex-shrink: 0;
}
.pf-hero-title {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    text-transform: uppercase;
    margin: 0 0 40px;
    font-family: 'Syne', sans-serif;
}
.pf-hero-title em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
    display: block;
}
.pf-hero-title strong {
    color: #fff;
    display: block;
}
.pf-hero-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}
.pf-hero-desc {
    max-width: 480px;
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}
.pf-hero-count {
    flex-shrink: 0;
    text-align: right;
}
.pf-hero-count-num {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(196,163,61,0.4);
    font-family: 'Syne', sans-serif;
    line-height: 1;
}
.pf-hero-count-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
}
.pf-hero-scroll {
    position: absolute;
    right: 5%;
    bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.pf-hero-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(196,163,61,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%,100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .pf-hero-title { font-size: clamp(3rem, 12vw, 6rem); }
    .pf-hero-meta { flex-direction: column; align-items: flex-start; gap: 30px; }
    .pf-hero-count { text-align: left; }
}
@media (max-width: 768px) {
    .pf-hero { height: auto; padding: 140px 5% 80px; min-height: 80vh; overflow: hidden; }
    .pf-hero-title { font-size: clamp(2rem, 10vw, 3.5rem); letter-spacing: -1px; }
    .pf-hero-title em { 
        font-size: 0.8em; 
        -webkit-text-stroke: 1px rgba(255,255,255,0.2); 
        letter-spacing: 2px;
    }
    .pf-hero-count { margin-bottom: 60px; position: relative; z-index: 5; } 
    .pf-hero-count-num { font-size: 2.8rem; }
    .pf-hero-scroll { display: none; }
    .pf-hero-desc { font-size: 0.9rem; max-width: 100%; line-height: 1.6; }
    
    /* Hide ANY duplicate logo or header that isn't ours */
    header:not(#site-header-elite), .elementor-location-header, .custom-logo-link:not(#site-header-elite *) {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* FILTERS RESPONSIVE */
.pf-filters-wrap {
    padding: 30px 0 0;
    background: #000;
}
.pf-filters {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 5%;
}
.pf-filters::-webkit-scrollbar { display: none; }
.pf-filter-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.pf-filter-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luboz-gold);
    transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
}
.pf-filter-btn.active, .pf-filter-btn:hover { color: #fff; }
.pf-filter-btn.active::after { width: 100%; }

/* BENTO GRID */
.pf-grid-sec {
    padding: 60px 5% 100px;
    background: #000;
}
.pf-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card base sizes */
.pf-card          { grid-column: span 4; min-height: 280px; }
.pf-card.size-lg  { grid-column: span 8; min-height: 380px; }
.pf-card.size-sm  { grid-column: span 4; min-height: 200px; }
.pf-card.size-tall{ grid-column: span 4; min-height: 480px; }
.pf-card.size-wide{ grid-column: span 8; min-height: 280px; }

/* BENTO GRID RESPONSIVE */
@media (max-width: 1200px) {
    .pf-bento { grid-template-columns: repeat(6, 1fr); }
    .pf-card, .pf-card.size-tall, .pf-card.size-sm { grid-column: span 3; }
    .pf-card.size-lg, .pf-card.size-wide { grid-column: span 6; }
}

@media (max-width: 768px) {
    .pf-bento { grid-template-columns: 1fr 1fr; gap: 8px; }
    .pf-card, .pf-card.size-lg, .pf-card.size-sm,
    .pf-card.size-tall, .pf-card.size-wide { grid-column: span 1; min-height: 220px; }
}

@media (max-width: 600px) {
    .pf-bento { grid-template-columns: 1fr !important; display: flex !important; flex-direction: column !important; }
    .pf-card, .pf-card.size-lg, .pf-card.size-sm, .pf-card.size-tall, .pf-card.size-wide { 
        width: 100% !important; min-height: 240px !important; margin-bottom: 12px;
    }
    .pf-card-title { font-size: 1.1rem !important; }
}


/* THE CARD */
.pf-card {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    cursor: pointer;
    border-radius: 2px;
    display: block;
}

.pf-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.23,1,0.32,1), filter 0.6s ease;
    display: block;
}
.pf-card:hover .pf-card-img {
    transform: scale(1.12);
    filter: brightness(0.3);
}

/* Overlay */
.pf-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    z-index: 2;
}

/* Top row */
.pf-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.pf-card-num {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(196,163,61,0.6);
    font-family: 'Syne', sans-serif;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.4s ease;
}
.pf-card:hover .pf-card-num { opacity: 1; transform: translateY(0); }

.pf-card-pill {
    background: rgba(196,163,61,0.92);
    color: #000;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease 0.05s;
}
.pf-card:hover .pf-card-pill { opacity: 1; transform: translateX(0); }

/* Center actions */
.pf-card-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    gap: 14px;
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}
.pf-card:hover .pf-card-actions {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.pf-action-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pf-action-btn:hover {
    background: var(--luboz-gold);
    color: #000;
    border-color: var(--luboz-gold);
    transform: scale(1.15);
}

/* Bottom info */
.pf-card-bottom {
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1) 0.12s;
    border-top: 1px solid transparent;
    padding-top: 14px;
}
.pf-card:hover .pf-card-bottom {
    opacity: 1;
    transform: translateY(0);
    border-top-color: rgba(196,163,61,0.3);
}
.pf-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Syne', sans-serif;
    margin: 0 0 4px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,1);
}
.pf-card.size-lg .pf-card-title { font-size: 1.8rem; }
.pf-card-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    margin: 0;
}

/* Gold shimmer on hover */
.pf-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(196,163,61,0.06) 50%, transparent 75%);
    transform: translateX(-100%);
    z-index: 1;
    pointer-events: none;
    transition: none;
}
.pf-card:hover::before {
    transform: translateX(100%);
    transition: transform 0.7s ease;
}

/* Gold frame on hover */
.pf-card::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(196,163,61,0);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s ease 0.1s;
    border-radius: 1px;
}
.pf-card:hover::after { border-color: rgba(196,163,61,0.35); }

/* Entrance animation */
@keyframes pfCardIn {
    from { opacity:0; transform: translateY(30px) scale(0.97); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}
.pf-card { animation: pfCardIn 0.7s ease both; }
.pf-card:nth-child(1) { animation-delay: 0.05s; }
.pf-card:nth-child(2) { animation-delay: 0.12s; }
.pf-card:nth-child(3) { animation-delay: 0.18s; }
.pf-card:nth-child(4) { animation-delay: 0.24s; }
.pf-card:nth-child(5) { animation-delay: 0.30s; }
.pf-card:nth-child(6) { animation-delay: 0.36s; }
.pf-card:nth-child(7) { animation-delay: 0.42s; }
.pf-card:nth-child(8) { animation-delay: 0.48s; }
.pf-card:nth-child(9) { animation-delay: 0.54s; }

/* BRAND SLIDER */
.pf-brands {
    background: #050505;
    padding: 55px 0 60px;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.pf-brands::before,
.pf-brands::after {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.pf-brands::before { left: 0;  background: linear-gradient(to right, #050505, transparent); }
.pf-brands::after  { right: 0; background: linear-gradient(to left,  #050505, transparent); }

.pf-brands-label {
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    margin-bottom: 35px;
    display: block;
    position: relative;
    z-index: 3;
}

/* Track wrapper — clips overflow without cutting height */
.pf-brand-track-wrap {
    overflow: hidden;
    width: 100%;
    padding: 10px 0; /* vertical breathing room for tall logos */
}

.pf-brand-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: brandScroll 30s linear infinite;
    will-change: transform;
}
.pf-brand-track:hover { animation-play-state: paused; }

/* Each logo item */
.pf-brand-item {
    flex: 0 0 auto;
    width: 130px;
    height: 80px;            /* taller so logos no longer get cut */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;            /* internal padding so tall logos breathe */
    box-sizing: border-box;

    /* Start: white silhouette */
    filter: brightness(0) invert(1);
    opacity: 0.28;
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.4s ease;
    cursor: default;
}

/* Hover: real logo colors appear */
.pf-brand-item:hover {
    filter: none;            /* ← removes the white-invert, shows real image */
    opacity: 1;
    transform: scale(1.12) translateY(-3px);
}

.pf-brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;     /* never crops — always fits */
    pointer-events: none;
    display: block;
}


@keyframes brandScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   STATS — Rediseño Premium
   ═══════════════════════════════ */
.pf-stats {
    padding: 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Fondo texturizado con grid dorado */
.pf-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196,163,61,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196,163,61,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Glow central */
.pf-stats::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; height: 300px;
    background: radial-gradient(ellipse, rgba(196,163,61,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Bloque superior — headline */
.pf-stats-headline {
    padding: 70px 5% 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}
@media(max-width: 900px) {
    .pf-stats-headline { flex-direction: column; align-items: flex-start; padding: 60px 5% 30px; }
}

.pf-stats-hl-left { flex: 1; }
.pf-stats-hl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--luboz-gold);
    margin-bottom: 24px;
}
.pf-stats-hl-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--luboz-gold);
    flex-shrink: 0;
}
.pf-stats-big-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    font-family: 'Syne', sans-serif;
    margin: 0;
}
.pf-stats-big-title .outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}
.pf-stats-big-title .solid {
    display: block;
    color: var(--luboz-gold);
}

.pf-stats-hl-right {
    max-width: 360px;
    flex-shrink: 0;
}
.pf-stats-hl-right p {
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    border-left: 1px solid rgba(196,163,61,0.3);
    padding-left: 24px;
}

/* Línea divisora dorada */
.pf-stats-divider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}
.pf-stats-divider-line {
    height: 1px;
    background: linear-gradient(to right, rgba(196,163,61,0.6), rgba(196,163,61,0.1) 50%, transparent);
}

/* Grid de 4 stats horizontales */
.pf-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@media(max-width: 900px) { .pf-stats-row { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .pf-stats-row { grid-template-columns: 1fr; } }

.pf-stat-block {
    padding: 36px 32px 44px;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: background 0.4s ease;
    overflow: hidden;
}
.pf-stat-block:last-child { border-right: none; }
.pf-stat-block::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(to right, var(--luboz-gold), transparent);
    transition: width 0.5s ease;
}
.pf-stat-block:hover { background: rgba(196,163,61,0.03); }
.pf-stat-block:hover::before { width: 100%; }

/* Icon */
.pf-stat-ico {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(196,163,61,0.08);
    border: 1px solid rgba(196,163,61,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--luboz-gold);
    margin-bottom: 30px;
    transition: all 0.4s;
}
.pf-stat-block:hover .pf-stat-ico {
    background: rgba(196,163,61,0.15);
    box-shadow: 0 0 20px rgba(196,163,61,0.2);
}

/* Big number */
.pf-stat-value {
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 10px;
}
.pf-stat-value .pf-count {
    font-size: clamp(2.5rem, 3.5vw, 3.8rem);
    font-weight: 900;
    font-family: 'Syne', sans-serif;
    color: #fff;
    line-height: 1;
}
.pf-stat-value .pf-stat-suf {
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 900;
    color: var(--luboz-gold);
    line-height: 1;
    padding-top: 4px;
}

/* Label */
.pf-stat-lbl {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* Número decorativo de fondo */
.pf-stat-block-bg {
    position: absolute;
    bottom: -8px; right: -4px;
    font-size: 6rem;
    font-weight: 900;
    font-family: 'Syne', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}



/* VISUAL CTA */
.pf-cta {
    padding: 130px 5%;
    background: #050505;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(196,163,61,0.07);
}
.pf-cta::before {
    content: '';
    position: absolute;
    left: -200px; bottom: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(196,163,61,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.pf-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media(max-width:992px){ .pf-cta-inner{ grid-template-columns:1fr; } }
.pf-cta-visual { position: relative; }
.pf-cta-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.04);
}
.pf-cta-img-main img { width:100%; display:block; }
.pf-cta-float {
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    border: 1px solid rgba(196,163,61,0.2);
    animation: floatY 4s ease-in-out infinite;
}
.pf-cta-float img { width:100%; display:block; }
@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.pf-cta-badge {
    position: absolute;
    top: -20px; left: -20px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--luboz-gold);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    box-shadow: 0 0 0 8px rgba(196,163,61,0.12), 0 16px 40px rgba(196,163,61,0.3);
    animation: pulseBadge 2.5s ease-in-out infinite;
    z-index: 4;
}
.pf-cta-badge strong { font-size: 1.4rem; font-weight: 900; color: #000; line-height: 1; }
.pf-cta-badge span { font-size: 0.5rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 1px; }
@keyframes pulseBadge {
    0%,100% { box-shadow: 0 0 0 8px rgba(196,163,61,0.12), 0 16px 40px rgba(196,163,61,0.3); }
    50%      { box-shadow: 0 0 0 16px rgba(196,163,61,0.06), 0 16px 40px rgba(196,163,61,0.5); }
}
.pf-cta-eyebrow { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--luboz-gold); display: block; margin-bottom: 20px; }
.pf-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    font-family: 'Syne', sans-serif;
    margin: 0 0 20px;
}
.pf-cta-title span { color: var(--luboz-gold); font-style: italic; }
.pf-cta-desc { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }
.pf-cta-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.pf-cta-check { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.pf-cta-check i { color: var(--luboz-gold); }
.pf-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.pf-btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--luboz-gold); color: #000;
    font-weight: 500; font-size: 0.9rem; letter-spacing: 0.5px;
    padding: 15px 32px; border-radius: 50px;
    text-decoration: none; transition: all 0.3s ease;
}
.pf-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(196,163,61,0.4); color: #000; }
.pf-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.6); font-size: 0.9rem;
    text-decoration: none; padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}
.pf-btn-ghost:hover { color: var(--luboz-gold); border-color: var(--luboz-gold); gap: 14px; }

@media (max-width: 768px) {
    .pf-cta { padding: 80px 5% 100px; }
    .pf-cta-inner { gap: 50px; }
    .pf-cta-title { font-size: 2.2rem; line-height: 1.2; }
    .pf-cta-desc { font-size: 0.95rem; margin-bottom: 25px; }
    .pf-cta-btns { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 30px; } /* Push away from bottom overlap */
    .pf-btn-gold { justify-content: center; width: 100%; }
    .pf-btn-ghost { justify-content: center; width: 100%; border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; }
    .pf-cta-visual { order: 2; }
    .pf-cta-content { order: 1; }
}

/* REVEAL */
.pf-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.pf-reveal.visible { opacity: 1; transform: translateY(0); }
