:root {
--primary: #06b6d4;
--primary-glow: rgba(6, 182, 212, 0.5);
--secondary: #0891b2;
--accent: #67e8f9;
--accent-glow: rgba(103, 232, 249, 0.3);
--bg-start: #042f2e;
--bg-mid: #134e4a;
--bg-end: #021716;
--card-bg: rgba(19, 78, 74, 0.6);
--card-border: rgba(6, 182, 212, 0.25);
--text-light: #f0fdfa;
--text-dim: #ccfbf1;
}

* {margin: 0; padding: 0; box-sizing: border-box;}
html {scroll-behavior: smooth;}
body {
font-family: 'Source Sans Pro', system-ui, sans-serif;
font-weight: 400;
background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-mid) 50%, var(--bg-end) 100%);
color: var(--text-light);
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', Georgia, serif;
font-weight: 600;
line-height: 1.2;
}

.pzwf-container {max-width: 1200px; margin: 0 auto; padding: 0 20px;}

.pzwf-top-accent {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
box-shadow: 0 0 20px var(--primary-glow);
z-index: 1000;
}

.pzwf-header {
position: sticky;
top: 0;
background: rgba(4, 47, 46, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--card-border);
padding: 15px 0;
z-index: 999;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.pzwf-header-inner {
display: flex;
justify-content: space-between;
align-items: center;
}

.pzwf-logo {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--accent);
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-logo:hover {transform: scale(1.08);}

.pzwf-logo-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
box-shadow: 0 0 20px var(--primary-glow);
}

.pzwf-nav {display: flex; gap: 30px; align-items: center;}
.pzwf-nav a {
color: var(--text-dim);
text-decoration: none;
font-size: 1rem;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
position: relative;
}

.pzwf-nav a:hover {color: var(--accent); transform: scale(1.08);}
.pzwf-nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
transition: width 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.pzwf-nav a:hover::after {width: 100%;}

.pzwf-badge-18 {
background: linear-gradient(135deg, #ef4444, #dc2626);
color: white;
padding: 5px 12px;
border-radius: 20px;
font-weight: 700;
font-size: 0.9rem;
box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.pzwf-mobile-toggle {
display: none;
background: none;
border: 2px solid var(--primary);
color: var(--primary);
padding: 8px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 1.2rem;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-mobile-toggle:hover {background: var(--primary); color: white; transform: scale(1.08);}

.pzwf-hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 100px 20px 80px;
overflow: hidden;
}

.pzwf-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 50%, var(--primary-glow), transparent 50%),
radial-gradient(circle at 80% 30%, var(--accent-glow), transparent 50%),
url('ban.jpeg') center/cover;
opacity: 0.15;
z-index: 0;
}

.pzwf-hero-content {position: relative; z-index: 1; max-width: 900px; margin: 0 auto;}
.pzwf-hero-title {
font-size: clamp(2.5rem, 8vw, 5rem);
margin-bottom: 20px;
background: linear-gradient(135deg, var(--accent), var(--primary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: pzwf-float 6s ease-in-out infinite;
text-shadow: 0 0 60px var(--primary-glow);
}

.pzwf-hero-subtitle {
font-size: clamp(1.1rem, 3vw, 1.5rem);
color: var(--text-dim);
margin-bottom: 40px;
}

.pzwf-hero-stats {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 50px;
flex-wrap: wrap;
}

.pzwf-stat-item {
text-align: center;
padding: 20px;
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 8px;
min-width: 150px;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-stat-item:hover {
transform: scale(1.08);
box-shadow: 0 0 30px var(--primary-glow);
border-color: var(--primary);
}

.pzwf-stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent);
font-family: 'Playfair Display', serif;
}

.pzwf-stat-label {font-size: 0.9rem; color: var(--text-dim); margin-top: 5px;}

.pzwf-btn {
display: inline-block;
padding: 15px 40px;
border: 2px solid var(--primary);
background: transparent;
color: var(--primary);
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
position: relative;
overflow: hidden;
}

.pzwf-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--primary);
transition: left 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
z-index: -1;
}

.pzwf-btn:hover {
color: white;
transform: scale(1.08);
box-shadow: 0 0 30px var(--primary-glow);
}

.pzwf-btn:hover::before {left: 0;}

.pzwf-btn-accent {border-color: var(--accent); color: var(--accent);}
.pzwf-btn-accent::before {background: var(--accent);}
.pzwf-btn-accent:hover {box-shadow: 0 0 30px var(--accent-glow);}

.pzwf-section {padding: 60px 20px; position: relative;}

.pzwf-section-title {
text-align: center;
font-size: clamp(2rem, 5vw, 3rem);
margin-bottom: 50px;
color: var(--accent);
position: relative;
display: inline-block;
left: 50%;
transform: translateX(-50%);
}

.pzwf-section-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, transparent, var(--primary), transparent);
box-shadow: 0 0 10px var(--primary-glow);
}

.pzwf-glow-divider {
height: 2px;
background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
box-shadow: 0 0 20px var(--primary-glow);
margin: 60px auto;
max-width: 600px;
}

.pzwf-download-section {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 10px;
padding: 50px;
max-width: 600px;
margin: 0 auto;
text-align: center;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.pzwf-download-form {display: flex; flex-direction: column; gap: 20px; margin-top: 30px;}
.pzwf-input {
padding: 15px;
border: 2px solid var(--card-border);
background: rgba(4, 47, 46, 0.5);
color: var(--text-light);
border-radius: 8px;
font-size: 1rem;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-input:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 20px var(--primary-glow);
}

.pzwf-success-message {
padding: 20px;
background: rgba(6, 182, 212, 0.2);
border: 2px solid var(--primary);
border-radius: 8px;
color: var(--accent);
font-size: 1.1rem;
animation: pzwf-slideIn 0.3s ease-out;
}

.pzwf-features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 50px;
}

.pzwf-feature-card {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 10px;
padding: 35px 25px;
text-align: center;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
position: relative;
overflow: hidden;
}

.pzwf-feature-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, var(--primary-glow), transparent 70%);
opacity: 0;
transition: opacity 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-feature-card:hover {
transform: scale(1.08) translateY(-5px);
box-shadow: 0 10px 40px var(--primary-glow);
border-color: var(--primary);
}

.pzwf-feature-card:hover::before {opacity: 1;}

.pzwf-feature-icon {
font-size: 3rem;
margin-bottom: 20px;
display: inline-block;
animation: pzwf-float 4s ease-in-out infinite;
}

.pzwf-feature-title {
font-size: 1.4rem;
margin-bottom: 15px;
color: var(--accent);
position: relative;
z-index: 1;
}

.pzwf-feature-desc {
color: var(--text-dim);
font-size: 1rem;
position: relative;
z-index: 1;
}

.pzwf-faq-container {max-width: 800px; margin: 0 auto;}
.pzwf-faq-item {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 8px;
margin-bottom: 15px;
overflow: hidden;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-faq-item:hover {border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow);}

.pzwf-faq-question {
padding: 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 1.1rem;
font-weight: 600;
color: var(--text-light);
user-select: none;
}

.pzwf-faq-icon {
font-size: 1.5rem;
color: var(--primary);
transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-faq-item.pzwf-active .pzwf-faq-icon {transform: rotate(45deg);}

.pzwf-faq-answer {
max-height: 0;
overflow: hidden;
padding: 0 20px;
color: var(--text-dim);
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-faq-item.pzwf-active .pzwf-faq-answer {
max-height: 500px;
padding: 0 20px 20px;
}

.pzwf-footer {
background: rgba(4, 47, 46, 0.8);
border-top: 2px solid var(--card-border);
padding: 60px 20px 30px;
text-align: center;
position: relative;
}

.pzwf-footer-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
}

.pzwf-footer-logo {
font-size: 2rem;
color: var(--accent);
margin-bottom: 10px;
}

.pzwf-footer-badge {
background: linear-gradient(135deg, #ef4444, #dc2626);
color: white;
padding: 20px 40px;
border-radius: 50%;
font-weight: 700;
font-size: 2rem;
box-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
margin: 20px 0;
display: inline-block;
}

.pzwf-footer-links {
display: flex;
gap: 25px;
flex-wrap: wrap;
justify-content: center;
}

.pzwf-footer-links a {
color: var(--text-dim);
text-decoration: none;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-footer-links a:hover {color: var(--accent); transform: scale(1.08);}

.pzwf-footer-disclaimer {
max-width: 700px;
margin: 30px auto 20px;
padding: 20px;
background: rgba(239, 68, 68, 0.1);
border: 1px solid rgba(239, 68, 68, 0.3);
border-radius: 8px;
font-size: 0.95rem;
color: var(--text-dim);
}

.pzwf-copyright {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid var(--card-border);
color: var(--text-dim);
font-size: 0.9rem;
}

.pzwf-modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.9);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
padding: 20px;
}

.pzwf-modal {
background: linear-gradient(135deg, var(--bg-start), var(--bg-mid));
border: 2px solid var(--primary);
border-radius: 10px;
padding: 40px;
max-width: 500px;
text-align: center;
box-shadow: 0 20px 60px var(--primary-glow);
animation: pzwf-scaleIn 0.3s ease-out;
}

.pzwf-modal-title {
font-size: 2rem;
color: var(--accent);
margin-bottom: 20px;
}

.pzwf-modal-text {
font-size: 1.1rem;
color: var(--text-dim);
margin-bottom: 30px;
line-height: 1.8;
}

.pzwf-modal-buttons {display: flex; gap: 15px; justify-content: center;}

.pzwf-floating-cta {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 998;
animation: pzwf-float 3s ease-in-out infinite;
}

.pzwf-content-page {padding: 120px 20px 60px;}
.pzwf-content-title {
font-size: 2.5rem;
color: var(--accent);
margin-bottom: 30px;
text-align: center;
}

.pzwf-content-section {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
}

.pzwf-content-section h2 {
color: var(--primary);
margin-bottom: 15px;
font-size: 1.8rem;
}

.pzwf-content-section h3 {
color: var(--accent);
margin-top: 20px;
margin-bottom: 10px;
font-size: 1.3rem;
}

.pzwf-content-section p {
margin-bottom: 15px;
color: var(--text-dim);
line-height: 1.8;
}

.pzwf-content-section ul, .pzwf-content-section ol {
margin-left: 30px;
margin-bottom: 15px;
color: var(--text-dim);
}

.pzwf-content-section li {margin-bottom: 10px;}

.pzwf-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}

.pzwf-table th {
background: rgba(6, 182, 212, 0.2);
padding: 15px;
text-align: left;
color: var(--accent);
border: 1px solid var(--card-border);
}

.pzwf-table td {
padding: 12px 15px;
border: 1px solid var(--card-border);
color: var(--text-dim);
}

.pzwf-table tr:hover {background: rgba(6, 182, 212, 0.05);}

.pzwf-back-link {
display: inline-block;
margin-bottom: 30px;
color: var(--primary);
text-decoration: none;
font-size: 1.1rem;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pzwf-back-link:hover {color: var(--accent); transform: translateX(-5px);}

@keyframes pzwf-float {
0%, 100% {transform: translateY(0);}
50% {transform: translateY(-15px);}
}

@keyframes pzwf-slideIn {
from {opacity: 0; transform: translateY(-20px);}
to {opacity: 1; transform: translateY(0);}
}

@keyframes pzwf-scaleIn {
from {opacity: 0; transform: scale(0.8);}
to {opacity: 1; transform: scale(1);}
}

@media (max-width: 768px) {
.pzwf-mobile-toggle {display: block;}
.pzwf-nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: rgba(4, 47, 46, 0.98);
flex-direction: column;
padding: 40px;
align-items: flex-start;
transition: left 0.3s ease;
}
.pzwf-nav.pzwf-active {left: 0;}
.pzwf-hero-stats {gap: 20px;}
.pzwf-stat-item {min-width: 120px; padding: 15px;}
.pzwf-download-section {padding: 30px 20px;}
.pzwf-features-grid {grid-template-columns: 1fr;}
.pzwf-footer-links {flex-direction: column; gap: 15px;}
.pzwf-floating-cta {bottom: 15px; right: 15px;}
.pzwf-modal {padding: 25px;}
}