/*
Theme Name: Rootax
Theme URI: https://rootax.hr
Author: GrL'Ca
Author URI: https://rootax.hr
Description: Hypermodern WordPress theme for Rootax — premium PVC & ALU stolarija. Features scroll animations, parallax effects, smooth transitions, and a luxury dark/gold aesthetic. Built for performance and full responsiveness.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: provent
Tags: one-page, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
    --pv-black: #0a0a0a;
    --pv-charcoal: #141414;
    --pv-dark: #1a1a1a;
    --pv-slate: #2a2a2a;
    --pv-gray: #4a4a4a;
    --pv-muted: #888;
    --pv-light: #e8e3dc;
    --pv-cream: #f5f0eb;
    --pv-white: #ffffff;
    --pv-gold: #c8a96e;
    --pv-gold-light: #dcc49a;
    --pv-gold-dark: #a68b52;
    --pv-blue: #2c3e50;
    --pv-blue-light: #34495e;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Satoshi', 'DM Sans', system-ui, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 80px;
    --section-padding: clamp(80px, 10vw, 140px);
    --side-padding: clamp(24px, 5vw, 80px);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--pv-white);
    background: var(--pv-black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul { list-style: none; }

::selection {
    background: var(--pv-gold);
    color: var(--pv-black);
}

/* ═══════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════ */
.pv-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--pv-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.pv-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pv-loader__logo {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--pv-white);
}

.pv-loader__logo span {
    color: var(--pv-gold);
}

.pv-loader__bar {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.pv-loader__bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--pv-gold);
    animation: loaderProgress 1.8s var(--ease-out-expo) forwards;
}

@keyframes loaderProgress {
    to { width: 100%; }
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR (desktop)
   ═══════════════════════════════════════════ */
.pv-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--pv-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s var(--ease-out-quart), opacity 0.3s;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.pv-cursor.visible { opacity: 1; }
.pv-cursor.hover { transform: translate(-50%, -50%) scale(2.5); border-color: var(--pv-gold-light); }

@media (pointer: coarse) {
    .pv-cursor { display: none; }
}

/* ═══════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════ */
.pv-grain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.pv-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--side-padding);
    transition: all 0.5s var(--ease-out-expo);
}

.pv-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0);
    backdrop-filter: blur(0px);
    transition: all 0.5s var(--ease-out-expo);
    border-bottom: 1px solid transparent;
}

.pv-nav.scrolled::before {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(200,169,110,0.1);
}

.pv-nav.scrolled { height: 64px; }

.pv-nav__logo {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.pv-nav__logo span { color: var(--pv-gold); }

.pv-nav__menu {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.pv-nav__link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.pv-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pv-gold);
    transition: width 0.4s var(--ease-out-expo);
}

.pv-nav__link:hover { color: var(--pv-white); }
.pv-nav__link:hover::after { width: 100%; }

.pv-nav__cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pv-black);
    background: var(--pv-gold);
    padding: 12px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.pv-nav__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pv-white);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out-expo);
}

.pv-nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,169,110,0.25); }
.pv-nav__cta:hover::before { transform: translateX(0); }
.pv-nav__cta span { position: relative; z-index: 1; }

/* Mobile menu toggle */
.pv-nav__toggle {
    display: none;
    position: relative;
    z-index: 9999;
    width: 32px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

.pv-nav__toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--pv-white);
    position: absolute;
    left: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.pv-nav__toggle span:nth-child(1) { top: 0; }
.pv-nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.pv-nav__toggle span:nth-child(3) { bottom: 0; }

.pv-nav__toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.pv-nav__toggle.open span:nth-child(2) { opacity: 0; }
.pv-nav__toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile overlay */
.pv-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 8999;
    background: var(--pv-black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.pv-mobile-menu.open {
    display: flex;
    opacity: 1;
}

.pv-mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(20px);
    animation: mobileMenuIn 0.5s var(--ease-out-expo) forwards;
}

.pv-mobile-menu a:nth-child(1) { animation-delay: 0.05s; }
.pv-mobile-menu a:nth-child(2) { animation-delay: 0.1s; }
.pv-mobile-menu a:nth-child(3) { animation-delay: 0.15s; }
.pv-mobile-menu a:nth-child(4) { animation-delay: 0.2s; }
.pv-mobile-menu a:nth-child(5) { animation-delay: 0.25s; }
.pv-mobile-menu a:nth-child(6) { animation-delay: 0.3s; }

@keyframes mobileMenuIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-children .reveal:nth-child(1),
.stagger-children .reveal-left:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2),
.stagger-children .reveal-left:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3),
.stagger-children .reveal-right:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.pv-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pv-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, var(--pv-black) 0%, #0d1b2a 40%, var(--pv-black) 100%);
}

.pv-hero__bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(800px) rotateX(45deg);
    transform-origin: center top;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.pv-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.pv-hero__orb--1 {
    width: 500px;
    height: 500px;
    background: var(--pv-gold);
    top: -10%;
    right: 10%;
}

.pv-hero__orb--2 {
    width: 400px;
    height: 400px;
    background: var(--pv-blue);
    bottom: 0;
    left: -5%;
    animation-delay: -4s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

.pv-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--side-padding);
    max-width: 900px;
}

.pv-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pv-gold);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--ease-out-expo) 1.8s forwards;
}

.pv-hero__tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--pv-gold);
}

.pv-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.pv-hero__title .line {
    display: block;
    overflow: hidden;
}

.pv-hero__title .line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(105%);
    animation: heroLineReveal 1.2s var(--ease-out-expo) forwards;
}

.pv-hero__title .line:nth-child(1) span { animation-delay: 2s; }
.pv-hero__title .line:nth-child(2) span { animation-delay: 2.15s; }
.pv-hero__title .line:nth-child(3) span { animation-delay: 2.3s; }

.pv-hero__title em {
    font-style: italic;
    color: var(--pv-gold);
    font-weight: 400;
}

@keyframes heroLineReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

.pv-hero__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--ease-out-expo) 2.5s forwards;
}

.pv-hero__buttons {
    display: flex;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--ease-out-expo) 2.7s forwards;
}

.pv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.pv-btn--primary {
    background: var(--pv-gold);
    color: var(--pv-black);
}

.pv-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pv-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.pv-btn--primary:hover::before { transform: scaleX(1); }
.pv-btn--primary:hover { box-shadow: 0 12px 40px rgba(200,169,110,0.3); transform: translateY(-3px); }
.pv-btn span { position: relative; z-index: 1; }

.pv-btn--outline {
    background: transparent;
    color: var(--pv-white);
    border: 1px solid rgba(255,255,255,0.2);
}

.pv-btn--outline:hover {
    border-color: var(--pv-gold);
    color: var(--pv-gold);
    transform: translateY(-3px);
}

.pv-btn__arrow {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--ease-out-expo);
}

.pv-btn:hover .pv-btn__arrow { transform: translateX(4px); }

/* Hero window decoration */
.pv-hero__window {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 540px;
    opacity: 0;
    animation: heroWindowIn 1.5s var(--ease-out-expo) 2.2s forwards;
}

@keyframes heroWindowIn {
    from { opacity: 0; transform: translateY(-50%) translateX(40px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.pv-hero__window-frame {
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(200,169,110,0.2);
}

.pv-hero__window-cross-h {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    background: rgba(200,169,110,0.2);
}

.pv-hero__window-cross-v {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: rgba(200,169,110,0.2);
}

.pv-hero__window-inner {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(200,169,110,0.08);
}

.pv-hero__window-handle {
    position: absolute;
    right: 28%;
    top: 47%;
    width: 6px;
    height: 36px;
    background: var(--pv-gold);
    border-radius: 3px;
    opacity: 0.5;
}

.pv-hero__window-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 40%, rgba(200,169,110,0.04), transparent 70%);
}

.pv-hero__window-reflection {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 40%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    transform: skewY(-5deg);
}

/* Hero scroll indicator */
.pv-hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: heroReveal 1s var(--ease-out-expo) 3s forwards;
}

.pv-hero__scroll-text {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.pv-hero__scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.pv-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pv-gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ═══════════════════════════════════════════
   MARQUEE / TICKER
   ═══════════════════════════════════════════ */
.pv-marquee {
    background: var(--pv-charcoal);
    border-top: 1px solid rgba(200,169,110,0.1);
    border-bottom: 1px solid rgba(200,169,110,0.1);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.pv-marquee__track {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}

.pv-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.pv-marquee__dot {
    width: 6px;
    height: 6px;
    background: var(--pv-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════ */
.pv-stats {
    padding: 5rem var(--side-padding);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.pv-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--side-padding);
    right: var(--side-padding);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,169,110,0.2), transparent);
}

.pv-stat {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.pv-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.06);
}

.pv-stat__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--pv-gold);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.pv-stat__label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pv-muted);
    font-weight: 500;
}

/* Counter animation */
.pv-stat__number[data-count] {
    transition: color 0.3s;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.pv-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pv-gold);
    margin-bottom: 1.5rem;
}

.pv-section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--pv-gold);
}

.pv-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.pv-section-title em {
    font-style: italic;
    color: var(--pv-gold-light);
}

.pv-section-subtitle {
    font-size: 1rem;
    color: var(--pv-muted);
    max-width: 520px;
    line-height: 1.8;
    font-weight: 300;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.pv-about {
    padding: var(--section-padding) var(--side-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.pv-about__visual {
    position: relative;
}

.pv-about__img {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(155deg, var(--pv-blue), var(--pv-blue-light));
    position: relative;
    overflow: hidden;
}

.pv-about__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.02) 48%, rgba(255,255,255,0.02) 52%, transparent 52%);
    background-size: 40px 40px;
}

/* Profile section illustration inside about */
.pv-profile-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 220px;
}

.pv-about__badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--pv-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pv-about__badge-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--pv-black);
    line-height: 1;
}

.pv-about__badge-text {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pv-black);
    font-weight: 600;
    margin-top: 4px;
}

.pv-about__features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.pv-about__feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.pv-about__feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid rgba(200,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
}

.pv-about__feature:hover .pv-about__feature-icon {
    background: var(--pv-gold);
    border-color: var(--pv-gold);
}

.pv-about__feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--pv-gold);
    transition: stroke 0.4s;
}

.pv-about__feature:hover .pv-about__feature-icon svg {
    stroke: var(--pv-black);
}

.pv-about__feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.pv-about__feature p {
    font-size: 0.9rem;
    color: var(--pv-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════ */
.pv-products {
    padding: var(--section-padding) var(--side-padding);
    background: var(--pv-charcoal);
    position: relative;
}

.pv-products__header {
    text-align: center;
    margin-bottom: 5rem;
}

.pv-products__header .pv-section-subtitle {
    margin: 0 auto;
}

.pv-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pv-product-card {
    background: var(--pv-dark);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s;
}

.pv-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.pv-product-card__visual {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.pv-product-card__visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--pv-dark), transparent);
    z-index: 1;
}

.pv-product-card__visual--doors { background: linear-gradient(170deg, #1a2530, #0d1b2a); }
.pv-product-card__visual--windows { background: linear-gradient(170deg, #1e3040, #142530); }
.pv-product-card__visual--sliding { background: linear-gradient(170deg, #0d1b2a, #0a1520); }

.pv-product-card__number {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--pv-gold);
    letter-spacing: 2px;
    z-index: 2;
    opacity: 0.6;
}

.pv-product-card__body {
    padding: 2rem 2rem 2.5rem;
    position: relative;
    z-index: 2;
}

.pv-product-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.pv-product-card__desc {
    font-size: 0.9rem;
    color: var(--pv-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}

.pv-product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pv-gold);
    transition: gap 0.3s var(--ease-out-expo);
}

.pv-product-card__link:hover { gap: 16px; }

.pv-product-card__link svg {
    width: 18px;
    height: 18px;
}

/* Hover line animation on card */
.pv-product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pv-gold);
    transition: width 0.6s var(--ease-out-expo);
}

.pv-product-card:hover::after { width: 100%; }

/* ═══════════════════════════════════════════
   QUALITY / USP SECTION
   ═══════════════════════════════════════════ */
.pv-quality {
    padding: var(--section-padding) var(--side-padding);
    position: relative;
    overflow: hidden;
}

.pv-quality__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 300;
    color: rgba(255,255,255,0.015);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -5px;
}

.pv-quality__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pv-quality-card {
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    background: transparent;
}

.pv-quality-card:hover {
    border-color: rgba(200,169,110,0.2);
    background: rgba(200,169,110,0.02);
    transform: translateY(-5px);
}

.pv-quality-card__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(200,169,110,0.08);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    line-height: 1;
}

.pv-quality-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.pv-quality-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--pv-gold);
}

.pv-quality-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--pv-gold-light);
}

.pv-quality-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    font-weight: 300;
}

/* Hover corner accent */
.pv-quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pv-gold);
    transition: width 0.5s var(--ease-out-expo);
}

.pv-quality-card:hover::before { width: 60px; }

/* ═══════════════════════════════════════════
   PARTNERS / BRANDS
   ═══════════════════════════════════════════ */
.pv-partners {
    padding: 5rem var(--side-padding);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pv-partners__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.pv-partners__label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pv-muted);
    white-space: nowrap;
}

.pv-partners__logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.pv-partner-logo {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    transition: all 0.4s;
    cursor: default;
    padding: 1rem 0;
}

.pv-partner-logo:hover {
    color: var(--pv-gold);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.pv-testimonials {
    padding: var(--section-padding) var(--side-padding);
    background: var(--pv-charcoal);
}

.pv-testimonials__header {
    text-align: center;
    margin-bottom: 5rem;
}

.pv-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pv-testimonial {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.pv-testimonial:hover {
    border-color: rgba(200,169,110,0.15);
    transform: translateY(-5px);
}

.pv-testimonial__stars {
    color: var(--pv-gold);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.pv-testimonial__quote {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--pv-gold);
    line-height: 0.5;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.pv-testimonial__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
}

.pv-testimonial__author {
    font-weight: 600;
    font-size: 0.9rem;
}

.pv-testimonial__location {
    font-size: 0.78rem;
    color: var(--pv-muted);
    margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.pv-cta {
    padding: var(--section-padding) var(--side-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pv-cta__bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.pv-cta__bg-lines span {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(200,169,110,0.04);
}

.pv-cta__bg-lines span:nth-child(1) { left: 20%; }
.pv-cta__bg-lines span:nth-child(2) { left: 40%; }
.pv-cta__bg-lines span:nth-child(3) { left: 60%; }
.pv-cta__bg-lines span:nth-child(4) { left: 80%; }

.pv-cta .pv-section-title {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.pv-cta .pv-section-subtitle {
    margin: 0 auto 3rem;
    text-align: center;
}

.pv-cta__buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pv-cta__phone {
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.pv-cta__phone-label {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pv-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.pv-cta__phone-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--pv-white);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.pv-footer {
    background: var(--pv-charcoal);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 5rem var(--side-padding) 2rem;
}

.pv-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.pv-footer__brand p {
    font-size: 0.88rem;
    color: var(--pv-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 300px;
    margin-top: 1.5rem;
}

.pv-footer__col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pv-white);
    margin-bottom: 1.8rem;
}

.pv-footer__col li {
    margin-bottom: 0.8rem;
}

.pv-footer__col a {
    font-size: 0.88rem;
    color: var(--pv-muted);
    font-weight: 300;
    transition: color 0.3s;
}

.pv-footer__col a:hover { color: var(--pv-gold); }

.pv-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--pv-muted);
    font-weight: 300;
}

.pv-footer__bottom a:hover { color: var(--pv-gold); }

/* ═══════════════════════════════════════════
   HORIZONTAL PARALLAX SCROLL TEXT
   ═══════════════════════════════════════════ */
.pv-parallax-text {
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.pv-parallax-text__inner {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 300;
    white-space: nowrap;
    color: rgba(255,255,255,0.03);
    letter-spacing: -2px;
    will-change: transform;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .pv-hero__window { width: 320px; height: 420px; right: 4%; }
}

@media (max-width: 1024px) {
    .pv-hero__window { display: none; }
    .pv-hero__content { max-width: 80%; }
    .pv-about { grid-template-columns: 1fr; gap: 4rem; }
    .pv-products__grid { grid-template-columns: 1fr 1fr; }
    .pv-quality__grid { grid-template-columns: 1fr; }
    .pv-testimonials__grid { grid-template-columns: 1fr 1fr; }
    .pv-footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }

    .pv-nav__menu { display: none; }
    .pv-nav__toggle { display: block; }

    .pv-stats { grid-template-columns: 1fr 1fr; }
    .pv-stat:not(:last-child)::after { display: none; }

    .pv-products__grid { grid-template-columns: 1fr; }
    .pv-testimonials__grid { grid-template-columns: 1fr; }
    .pv-footer__grid { grid-template-columns: 1fr; }

    .pv-hero__buttons { flex-direction: column; }
    .pv-cta__buttons { flex-direction: column; align-items: center; }

    .pv-partners__inner { justify-content: center; text-align: center; }
    .pv-partners__logos { justify-content: center; }

    .pv-footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .pv-about__badge { right: 0; bottom: -15px; width: 140px; height: 140px; }
    .pv-about__badge-number { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .pv-stats { grid-template-columns: 1fr; }
    .pv-hero__content { max-width: 95%; }
}
