/* ==========================================================================
   PVTechnik24 - Photovoltaik Montage Wien
   Color Scheme: Green + Gold (Ecology + Solar Energy)
   Style: Technological with gradients, geometry, futuristic elements
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --pv-green: #10b981;
    --pv-green-dark: #059669;
    --pv-green-darker: #047857;
    --pv-green-light: #34d399;
    --pv-green-glow: rgba(16, 185, 129, 0.3);

    --pv-gold: #f59e0b;
    --pv-gold-dark: #d97706;
    --pv-gold-light: #fbbf24;
    --pv-gold-glow: rgba(245, 158, 11, 0.3);

    --pv-gradient: linear-gradient(135deg, var(--pv-green) 0%, var(--pv-gold) 100%);
    --pv-gradient-rev: linear-gradient(135deg, var(--pv-gold) 0%, var(--pv-green) 100%);

    --pv-dark: #0f172a;
    --pv-dark-2: #1e293b;
    --pv-dark-3: #334155;

    --pv-light: #f8fafc;
    --pv-light-warm: #fefdfb;
    --pv-light-green: #ecfdf5;
    --pv-light-gold: #fffbeb;

    --pv-text: #1e293b;
    --pv-text-light: #64748b;
    --pv-text-muted: #94a3b8;
    --pv-text-white: #ffffff;

    --pv-border: #e2e8f0;
    --pv-radius: 12px;
    --pv-radius-lg: 20px;
    --pv-radius-xl: 28px;

    --pv-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --pv-shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.15);
    --pv-shadow-glow: 0 0 40px var(--pv-green-glow);

    --pv-transition: 0.3s ease;
    --pv-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--pv-font);
    color: var(--pv-text);
    background: var(--pv-light);
    line-height: 1.6;
    max-width: 1920px;
    min-width: 375px;
    margin: 0 auto;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--pv-transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--pv-dark); }

.pv-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Header - Original PV Style
   -------------------------------------------------------------------------- */
.pv-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    max-width: 1920px;
    margin: 0 auto;
    height: 80px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--pv-transition);
}

.pv-header-energy {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--pv-dark-2);
    overflow: hidden;
}

.pv-header-energy-bar {
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--pv-gradient);
    animation: energyFlow 3s ease-in-out infinite;
}

@keyframes energyFlow {
    0% { left: -50%; }
    100% { left: 100%; }
}

.pv-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.pv-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.pv-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--pv-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pv-logo-sun {
    width: 24px;
    height: 24px;
    background: var(--pv-gold);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px var(--pv-gold-glow);
}

.pv-logo-ray {
    position: absolute;
    width: 3px;
    height: 8px;
    background: var(--pv-gold-light);
    border-radius: 2px;
    top: 50%;
    left: 50%;
}
.pv-logo-ray:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-16px); }
.pv-logo-ray:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg) translateY(-16px); }
.pv-logo-ray:nth-child(3) { transform: translate(-50%, -50%) rotate(180deg) translateY(-16px); }
.pv-logo-ray:nth-child(4) { transform: translate(-50%, -50%) rotate(270deg) translateY(-16px); }

.pv-logo-text { display: flex; flex-direction: column; }
.pv-logo-name { font-size: 1.25rem; font-weight: 800; color: var(--pv-text-white); }
.pv-logo-accent { background: var(--pv-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pv-logo-slogan { font-size: 0.7rem; color: var(--pv-text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

.pv-nav { display: flex; }
.pv-nav-list { display: flex; gap: 8px; }
.pv-nav-link {
    display: block;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pv-text-muted);
    border-radius: var(--pv-radius);
    transition: var(--pv-transition);
}
.pv-nav-link:hover { color: var(--pv-text-white); background: var(--pv-dark-2); }

.pv-header-actions { display: flex; align-items: center; gap: 12px; }

.pv-btn-blog {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pv-text-muted);
    border: 1px solid var(--pv-dark-3);
    border-radius: var(--pv-radius);
}
.pv-btn-blog img { filter: brightness(0) invert(1); opacity: 0.7; }
.pv-btn-blog:hover { color: var(--pv-text-white); border-color: var(--pv-green); background: rgba(16, 185, 129, 0.1); }
.pv-btn-blog:hover img { opacity: 1; }

.pv-btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pv-text-white);
    background: var(--pv-green);
    border-radius: var(--pv-radius);
}
.pv-btn-call img { filter: brightness(0) invert(1); }
.pv-btn-call:hover { background: var(--pv-green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px var(--pv-green-glow); }
.pv-btn-call-icon { display: flex; }

.pv-btn-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--pv-gradient);
    border-radius: var(--pv-radius);
}
.pv-btn-cta img { filter: brightness(0) invert(1); }
.pv-btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--pv-gold-glow); }

.pv-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 10;
}
.pv-toggle-bar { width: 100%; height: 2px; background: var(--pv-text-white); border-radius: 2px; transition: var(--pv-transition); }
.pv-nav-toggle.active .pv-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pv-nav-toggle.active .pv-toggle-bar:nth-child(2) { opacity: 0; }
.pv-nav-toggle.active .pv-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.pv-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 5;
}
.pv-nav-overlay.active { display: block; }

@media (max-width: 1024px) {
    .pv-nav { display: none; }
    .pv-nav-toggle { display: flex; }
    .pv-btn-cta { display: none; }
}
@media (max-width: 768px) {
    .pv-btn-blog span { display: none; }
    .pv-btn-call-text { display: none; }
}

/* --------------------------------------------------------------------------
   Header - Solar Grid Design (Alternative)
   -------------------------------------------------------------------------- */
.hdr {
    position: fixed;
    top: 0; left: 0; right: 0;
    max-width: 1920px;
    margin: 0 auto;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(15,23,42,0.98) 0%, rgba(15,23,42,0.92) 100%);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(16px);
}

.hdr::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(16,185,129,0.03) 49.5%, rgba(16,185,129,0.03) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(16,185,129,0.03) 49.5%, rgba(16,185,129,0.03) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    pointer-events: none;
}

.hdr__wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}

/* Logo */
.hdr__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.hdr__icon {
    display: flex;
    width: 42px;
    height: 42px;
}
.hdr__icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}
.hdr__brand:hover .hdr__icon svg {
    transform: rotate(90deg);
}

.hdr__title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.hdr__title strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.hdr__title em {
    font-style: normal;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hdr__title small {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--pv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Navigation */
.hdr__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hdr__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pv-text-muted);
    border-radius: 8px;
    transition: var(--pv-transition);
}

.hdr__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pv-gradient);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.hdr__link:hover {
    color: #fff;
}
.hdr__link:hover::after {
    width: calc(100% - 28px);
}

.hdr__link--blog {
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid var(--pv-dark-3);
}
.hdr__link--blog img {
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: var(--pv-transition);
}
.hdr__link--blog:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(85deg);
}

/* CTA Buttons */
.hdr__cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--pv-green);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(16,185,129,0.25);
    transition: var(--pv-transition);
}
.hdr__phone img {
    filter: brightness(0) invert(1);
}
.hdr__phone span {
    display: block;
}
.hdr__phone:hover {
    background: var(--pv-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,185,129,0.35);
}

.hdr__btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--pv-gradient);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(16,185,129,0.25);
    transition: var(--pv-transition);
}
.hdr__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

/* Mobile Toggle */
.hdr__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--pv-dark-2);
    transition: var(--pv-transition);
}
.hdr__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: var(--pv-transition);
}
.hdr__toggle.active {
    background: var(--pv-green);
}
.hdr__toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}
.hdr__toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.hdr__mobile {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    bottom: 0;
    background: rgba(15,23,42,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}
.hdr__mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.hdr__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}
.hdr__mobile-nav a {
    display: block;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--pv-text-muted);
    background: var(--pv-dark-2);
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: var(--pv-transition);
}
.hdr__mobile-nav a:hover {
    color: #fff;
    border-left-color: var(--pv-green);
    background: var(--pv-dark-3);
}

.hdr__mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hdr__mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: var(--pv-green);
    border-radius: 12px;
}
.hdr__mobile-phone img {
    filter: brightness(0) invert(1);
}
.hdr__mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--pv-gradient);
    border-radius: 12px;
}

/* Header Responsive */
@media (max-width: 1200px) {
    .hdr__link { padding: 8px 10px; font-size: 0.8rem; }
    .hdr__phone span { display: none; }
    .hdr__phone { padding: 10px; border-radius: 10px; }
}

@media (max-width: 1024px) {
    .hdr__nav { display: none; }
    .hdr__toggle { display: flex; }
    .hdr__phone { display: none; }
}

@media (max-width: 480px) {
    .hdr__wrap { padding: 0 16px; height: 64px; }
    .hdr__icon { width: 36px; height: 36px; }
    .hdr__title strong { font-size: 1rem; }
    .hdr__title small { font-size: 0.6rem; }
    .hdr__btn { display: none; }
    .hdr__mobile { top: 64px; }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.solar-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.solar-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.solar-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.solar-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.8) 30%, rgba(16,185,129,0.3) 60%, rgba(245,158,11,0.2) 100%);
}

.solar-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.solar-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--pv-gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: particleFloat 8s ease-in-out infinite;
}
.solar-particle:nth-child(1) { top: 20%; left: 15%; }
.solar-particle:nth-child(2) { top: 60%; left: 25%; width: 6px; height: 6px; animation-delay: 1s; }
.solar-particle:nth-child(3) { top: 30%; right: 20%; width: 10px; height: 10px; animation-delay: 2s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

.solar-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.solar-hero__content { max-width: 650px; }

.solar-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pv-green-light);
}
.solar-hero__badge img { filter: brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(472%) hue-rotate(107deg); }

.solar-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--pv-text-white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.solar-hero__highlight {
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solar-hero__desc {
    font-size: 1.25rem;
    color: var(--pv-text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.solar-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.solar-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pv-radius);
    transition: var(--pv-transition);
}
.solar-hero__btn--primary {
    color: #fff;
    background: var(--pv-green);
    box-shadow: 0 4px 20px var(--pv-green-glow);
}
.solar-hero__btn--primary img {
    filter: brightness(0) invert(1);
}
.solar-hero__btn--primary:hover {
    background: var(--pv-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--pv-green-glow);
}
.solar-hero__btn--outline {
    color: var(--pv-text-white);
    border: 2px solid var(--pv-green);
}
.solar-hero__btn--outline:hover { background: var(--pv-green); transform: translateY(-3px); }

.solar-hero__quick-stats { display: flex; flex-wrap: wrap; gap: 20px; }
.solar-hero__quick-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}
.solar-hero__quick-stat img {
    filter: brightness(0) invert(1);
}

.solar-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.solar-hero__stat-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--pv-radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--pv-transition);
}
.solar-hero__stat-card:hover {
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-4px);
    border-color: var(--pv-green);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}
.solar-hero__stat-icon {
    width: 56px;
    height: 56px;
    background: var(--pv-gradient);
    border-radius: var(--pv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.solar-hero__stat-icon img { filter: brightness(0) invert(1); }
.solar-hero__stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}
.solar-hero__stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pv-green-light);
}

/* --------------------------------------------------------------------------
   Trust Section - Bento Grid
   -------------------------------------------------------------------------- */
.trust {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--pv-dark) 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}
.trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(16,185,129,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.trust__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust__bento {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: stretch;
}

/* Hero Card - Left */
.trust__hero {
    background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, rgba(245,158,11,0.1) 100%);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: var(--pv-radius-xl);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
}

.trust__hero-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 16px;
    background: rgba(16,185,129,0.2);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pv-green-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.trust__hero-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.trust__hero-title em {
    font-style: normal;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust__hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: auto;
    padding-bottom: 32px;
}

.trust__hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust__hero-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.trust__hero-stat span {
    font-size: 0.875rem;
    color: var(--pv-green-light);
    font-weight: 500;
}

/* Cards Grid - Right */
.trust__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust__card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pv-radius-lg);
    padding: 28px 24px;
    transition: var(--pv-transition);
    overflow: hidden;
}
.trust__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--pv-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.trust__card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(16,185,129,0.3);
    transform: translateY(-4px);
}
.trust__card:hover::before {
    transform: scaleX(1);
}

.trust__card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(16,185,129,0.2) 0%, rgba(245,158,11,0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--pv-transition);
}
.trust__card-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.trust__card:hover .trust__card-icon {
    background: var(--pv-gradient);
}
.trust__card:hover .trust__card-icon img {
    opacity: 1;
}

.trust__card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.trust__card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.trust__card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pv-green-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trust Responsive */
@media (max-width: 1024px) {
    .trust__bento {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .trust__hero {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .trust {
        padding: 70px 0;
    }
    .trust__container {
        padding: 0 20px;
    }
    .trust__bento {
        gap: 20px;
    }
    .trust__hero {
        padding: 32px 24px;
    }
    .trust__hero-title {
        font-size: 1.75rem;
    }
    .trust__hero-text {
        font-size: 1rem;
        padding-bottom: 24px;
    }
    .trust__hero-stats {
        gap: 28px;
        padding-top: 24px;
    }
    .trust__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trust__card {
        text-align: center;
    }
    .trust__card-icon {
        margin: 0 auto 16px;
    }
}

@media (max-width: 600px) {
    .trust {
        padding: 60px 0;
    }
    .trust__container {
        padding: 0 16px;
    }
    .trust__hero {
        padding: 28px 20px;
    }
    .trust__hero-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .trust__hero-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    .trust__hero-text {
        font-size: 0.95rem;
        padding-bottom: 20px;
    }
    .trust__hero-stats {
        gap: 20px;
        padding-top: 20px;
    }
    .trust__hero-stat strong {
        font-size: 2rem;
    }
    .trust__hero-stat span {
        font-size: 0.813rem;
    }
    .trust__card {
        padding: 24px 20px;
    }
    .trust__card-icon {
        width: 44px;
        height: 44px;
    }
    .trust__card-icon img {
        width: 24px;
        height: 24px;
    }
    .trust__card h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .trust {
        padding: 50px 0;
    }
    .trust__hero {
        padding: 24px 18px;
    }
    .trust__hero-title {
        font-size: 1.375rem;
    }
    .trust__hero-stats {
        gap: 16px;
    }
    .trust__hero-stat strong {
        font-size: 1.75rem;
    }
    .trust__hero-stat span {
        font-size: 0.75rem;
    }
    .trust__card {
        padding: 20px 18px;
    }
}

@media (max-width: 375px) {
    .trust__container {
        padding: 0 14px;
    }
    .trust__hero {
        padding: 20px 16px;
    }
    .trust__hero-title {
        font-size: 1.25rem;
    }
    .trust__hero-text {
        font-size: 0.9rem;
    }
    .trust__hero-stats {
        gap: 12px;
    }
    .trust__hero-stat strong {
        font-size: 1.5rem;
    }
    .trust__hero-stat span {
        font-size: 0.7rem;
    }
    .trust__card {
        padding: 18px 16px;
    }
}

/* --------------------------------------------------------------------------
   Services Section - Light Modern Design
   -------------------------------------------------------------------------- */
.svc {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faf8 0%, #fff 50%, #fefdfb 100%);
    position: relative;
}
.svc::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pv-green), var(--pv-gold), transparent);
}

.svc__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.svc__header {
    text-align: center;
    margin-bottom: 60px;
}
.svc__tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.1) 100%);
    border: 1px solid rgba(16,185,129,0.2);
    color: var(--pv-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 20px;
}
.svc__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--pv-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.svc__title em {
    font-style: normal;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.svc__subtitle {
    font-size: 1.15rem;
    color: var(--pv-text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* Grid */
.svc__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* Hero Card (Featured) */
.svc__card.svc__card--hero {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--pv-green) 0%, var(--pv-green-dark) 100%);
    border: none;
    border-radius: var(--pv-radius-xl);
    padding: 0;
    overflow: hidden;
    position: relative;
}
.svc__card.svc__card--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.svc__card.svc__card--hero .svc__card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: var(--pv-gold);
    color: var(--pv-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    z-index: 2;
}
.svc__card.svc__card--hero .svc__card-content {
    position: relative;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.svc__card.svc__card--hero .svc__card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.svc__card.svc__card--hero .svc__card-icon img {
    filter: brightness(0) invert(1);
}
.svc__card.svc__card--hero h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.svc__card.svc__card--hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 24px;
}
.svc__card.svc__card--hero ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: auto;
    padding-bottom: 24px;
}
.svc__card.svc__card--hero ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}
.svc__card.svc__card--hero ul li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.svc__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #fff;
    color: var(--pv-green-dark);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: auto;
    transition: var(--pv-transition);
}
.svc__card-btn:hover {
    background: var(--pv-gold);
    color: var(--pv-dark);
    transform: translateY(-2px);
}

/* Regular Cards */
.svc__card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--pv-radius-lg);
    padding: 28px 24px;
    transition: var(--pv-transition);
}
.svc__card:not(.svc__card--hero):hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16,185,129,0.12);
    border-color: var(--pv-green);
}
.svc__card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pv-text-muted);
    padding: 4px 10px;
    background: var(--pv-light);
    border-radius: 50px;
}
.svc__card:not(.svc__card--hero) .svc__card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--pv-transition);
}
.svc__card:not(.svc__card--hero):hover .svc__card-icon {
    background: var(--pv-gradient);
}
.svc__card:not(.svc__card--hero):hover .svc__card-icon img {
    filter: brightness(0) invert(1);
}
.svc__card:not(.svc__card--hero) h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 8px;
}
.svc__card:not(.svc__card--hero) p {
    font-size: 0.875rem;
    color: var(--pv-text-light);
    line-height: 1.5;
}

/* CTA Bar */
.svc__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 40px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, #1a2744 100%);
    border-radius: var(--pv-radius-xl);
}
.svc__cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}
.svc__cta p strong {
    color: #fff;
}
.svc__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--pv-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    white-space: nowrap;
    transition: var(--pv-transition);
}
.svc__cta-btn img {
    filter: brightness(0) invert(1);
}
.svc__cta-btn:hover {
    background: var(--pv-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}

/* Services Responsive */
@media (max-width: 1200px) {
    .svc {
        padding: 80px 0;
    }
    .svc__grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-bottom: 40px;
    }
    .svc__card--hero {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .svc__card {
        text-align: center;
    }
    .svc__card:not(.svc__card--hero) .svc__card-icon {
        margin: 0 auto 16px;
    }
}

@media (max-width: 1024px) {
    .svc {
        padding: 70px 0;
    }
    .svc__container {
        padding: 0 20px;
    }
    .svc__header {
        margin-bottom: 50px;
    }
    .svc__subtitle {
        font-size: 1.05rem;
    }
    .svc__card--hero .svc__card-content {
        padding: 32px 28px;
    }
    .svc__cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .svc {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .svc {
        padding: 60px 0;
    }
    .svc__container {
        padding: 0 16px;
    }
    .svc__header {
        margin-bottom: 40px;
    }
    .svc__tag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    .svc__title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    .svc__subtitle {
        font-size: 1rem;
    }
    .svc__card--hero .svc__card-content {
        padding: 28px 24px;
    }
    .svc__card--hero h3 {
        font-size: 1.5rem;
    }
    .svc__card--hero p {
        font-size: 0.95rem;
    }
    .svc__card--hero ul li {
        font-size: 0.9rem;
    }
    .svc__card:not(.svc__card--hero) {
        padding: 24px 20px;
    }
    .svc__card:not(.svc__card--hero) h3 {
        font-size: 1rem;
    }
    .svc__cta {
        padding: 20px 16px;
        gap: 16px;
    }
    .svc__cta p {
        font-size: 1rem;
    }
    .svc__cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .svc {
        padding: 50px 0;
    }
    .svc__header {
        margin-bottom: 32px;
    }
    .svc__title {
        font-size: 1.5rem;
    }
    .svc__card--hero .svc__card-content {
        padding: 24px 20px;
    }
    .svc__card--hero h3 {
        font-size: 1.375rem;
    }
    .svc__card--hero .svc__card-icon {
        width: 56px;
        height: 56px;
    }
    .svc__card--hero .svc__card-icon img {
        width: 32px;
        height: 32px;
    }
    .svc__card:not(.svc__card--hero) {
        padding: 20px 18px;
    }
    .svc__card:not(.svc__card--hero) .svc__card-icon {
        width: 48px;
        height: 48px;
    }
    .svc__card:not(.svc__card--hero) .svc__card-icon img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 375px) {
    .svc__container {
        padding: 0 14px;
    }
    .svc__title {
        font-size: 1.375rem;
    }
    .svc__subtitle {
        font-size: 0.9rem;
    }
    .svc__card--hero .svc__card-content {
        padding: 20px 16px;
    }
    .svc__card--hero h3 {
        font-size: 1.25rem;
    }
    .svc__card:not(.svc__card--hero) {
        padding: 18px 16px;
    }
    .svc__cta {
        padding: 18px 14px;
    }
}

/* --------------------------------------------------------------------------
   Technology Section (New Design)
   -------------------------------------------------------------------------- */
.tech {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--pv-light-warm) 100%);
    position: relative;
}
.tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2310b981' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}
.tech__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.tech__header {
    text-align: center;
    margin-bottom: 60px;
}
.tech__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.1) 100%);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pv-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.tech__tag img {
    width: 18px;
    height: 18px;
    filter: sepia(1) saturate(5) hue-rotate(100deg);
}
.tech__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--pv-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.tech__title em {
    font-style: normal;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tech__subtitle {
    font-size: 1.1rem;
    color: var(--pv-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tech Cards Compare Grid */
.tech__compare {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.tech__card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--pv-radius-xl);
    padding: 32px 28px;
    position: relative;
    transition: var(--pv-transition);
}
.tech__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(16,185,129,0.15);
    border-color: var(--pv-green);
}
.tech__card--best {
    background: linear-gradient(180deg, #fff 0%, rgba(16,185,129,0.05) 100%);
    border: 2px solid var(--pv-green);
    box-shadow: 0 12px 32px rgba(16,185,129,0.12);
}
.tech__card--best:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 56px rgba(16,185,129,0.2);
}

/* Gold Variant Card */
.tech__card--gold {
    background: linear-gradient(180deg, #fffbf0 0%, rgba(245,158,11,0.08) 100%);
    border: 2px solid var(--pv-gold);
    box-shadow: 0 12px 32px rgba(245,158,11,0.15);
}
.tech__card--gold:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 56px rgba(245,158,11,0.25);
}
.tech__card--gold .tech__card-icon {
    background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.1) 100%);
}
.tech__card--gold:hover .tech__card-icon {
    background: linear-gradient(135deg, var(--pv-gold) 0%, #f59e0b 100%);
}
.tech__card-badge--gold {
    background: linear-gradient(135deg, var(--pv-gold) 0%, #f59e0b 100%) !important;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4) !important;
}

/* Gold Rating Bar */
.tech__rating-bar--gold span {
    background: linear-gradient(90deg, var(--pv-gold) 0%, #f59e0b 100%);
}
.tech__card--gold .tech__rating-value {
    color: #b45309;
}

.tech__card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: var(--pv-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.tech__card-head {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tech__card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(245,158,11,0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--pv-transition);
}
.tech__card:hover .tech__card-icon {
    background: var(--pv-gradient);
    transform: rotate(5deg) scale(1.05);
}
.tech__card-icon img {
    width: 36px;
    height: 36px;
    transition: var(--pv-transition);
}
.tech__card:hover .tech__card-icon img {
    filter: brightness(0) invert(1);
}
.tech__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 6px;
}
.tech__card-head p {
    font-size: 0.85rem;
    color: var(--pv-text-muted);
    line-height: 1.4;
}
.tech__card-type {
    font-size: 0.8rem;
    color: var(--pv-text-muted);
    font-weight: 500;
}

/* Rating Bars */
.tech__card-ratings {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tech__rating {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 12px;
}
.tech__rating-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pv-text);
}
.tech__rating-bar {
    height: 10px;
    background: var(--pv-light);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.tech__rating-bar span {
    display: block;
    height: 100%;
    background: var(--pv-gradient);
    border-radius: 5px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.tech__rating-bar span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 5px 5px 0 0;
}
.tech__rating-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pv-green-dark);
    min-width: 60px;
    text-align: right;
}

/* Tech Features List */
.tech__card-features {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.tech__card-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tech__card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--pv-text-light);
}
.tech__card-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(16,185,129,0.1);
    color: var(--pv-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Card Footer */
.tech__card-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}
.tech__card-use {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--pv-light);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pv-text);
}
.tech__card-use::before {
    content: '→';
    color: var(--pv-green);
    font-weight: 700;
}
.tech__card--gold .tech__card-use {
    background: rgba(245,158,11,0.1);
}
.tech__card--gold .tech__card-use::before {
    color: var(--pv-gold);
}

/* Tech Help CTA */
.tech__help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, #1e3a5f 100%);
    border-radius: var(--pv-radius-xl);
    position: relative;
    overflow: hidden;
}
.tech__help::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.tech__help-content {
    position: relative;
    z-index: 1;
}
.tech__help h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.tech__help p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
}
.tech__help-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--pv-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    white-space: nowrap;
    transition: var(--pv-transition);
}
.tech__help-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}
.tech__help-btn:hover {
    background: var(--pv-green-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(16,185,129,0.3);
}

/* Tech Section Responsive */
@media (max-width: 1200px) {
    .tech__compare {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .tech { padding: 70px 0; }
    .tech__compare {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tech__card { padding: 28px 24px; }
    .tech__rating {
        grid-template-columns: 80px 1fr auto;
        gap: 8px;
    }
    .tech__rating-label { font-size: 0.8rem; }
    .tech__help {
        flex-direction: column;
        text-align: center;
        padding: 28px;
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .tech__card-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
    }
    .tech__rating {
        grid-template-columns: 70px 1fr 50px;
    }
    .tech__rating-value {
        font-size: 0.75rem;
        min-width: 50px;
    }
}

/* --------------------------------------------------------------------------
   Why Choose Us Section (New Design)
   -------------------------------------------------------------------------- */
.why {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--pv-light-warm) 100%);
    position: relative;
    overflow: hidden;
}
.why::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.why::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.why__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.why__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Highlight Side */
.why__highlight {
    position: sticky;
    top: 120px;
}
.why__highlight-inner {
    padding: 48px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--pv-radius-xl);
    box-shadow: 0 20px 60px rgba(16,185,129,0.08);
}
.why__tag {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.1) 100%);
    color: var(--pv-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 24px;
}
.why__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--pv-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.why__title em {
    font-style: normal;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why__lead {
    font-size: 1.05rem;
    color: var(--pv-text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Stats Row */
.why__stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.why__stat {
    text-align: center;
}
.why__stat-num {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.why__stat-num small {
    font-size: 0.6em;
}
.why__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--pv-text-muted);
    font-weight: 500;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Button */
.why__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--pv-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--pv-transition);
}
.why__cta img {
    filter: brightness(0) invert(1);
    transition: var(--pv-transition);
}
.why__cta:hover {
    background: var(--pv-green-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16,185,129,0.4);
}
.why__cta:hover img {
    transform: translateX(4px);
}

/* Features Grid */
.why__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.why__card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--pv-radius-lg);
    transition: var(--pv-transition);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.why__card:hover {
    background: #fff;
    border-color: var(--pv-green);
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(16,185,129,0.12);
}
.why__card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--pv-transition);
}
.why__card:hover .why__card-icon {
    background: var(--pv-gradient);
    transform: rotate(5deg);
}
.why__card-icon img {
    transition: var(--pv-transition);
}
.why__card:hover .why__card-icon img {
    filter: brightness(0) invert(1);
}
.why__card-body {
    flex: 1;
}
.why__card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 4px;
}
.why__card-body p {
    font-size: 0.9rem;
    color: var(--pv-text-light);
    line-height: 1.5;
}
.why__card-arrow {
    font-size: 1.5rem;
    color: rgba(0,0,0,0.15);
    transition: var(--pv-transition);
}
.why__card:hover .why__card-arrow {
    color: var(--pv-green);
    transform: translateX(4px);
}

/* Why Section Responsive */
@media (max-width: 1024px) {
    .why {
        padding: 80px 0;
    }
    .why__container {
        padding: 0 20px;
    }
    .why__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why__highlight {
        position: static;
    }
    .why__highlight-inner {
        padding: 40px 36px;
    }
    .why__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why {
        padding: 70px 0;
    }
    .why__layout {
        gap: 32px;
    }
    .why__highlight-inner {
        padding: 32px 28px;
    }
    .why__title {
        font-size: 1.75rem;
    }
    .why__lead {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    .why__stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0;
    }
    .why__stat-num {
        font-size: 1.75rem;
    }
    .why__card {
        padding: 20px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }
    .why__card-icon {
        width: 52px;
        height: 52px;
    }
    .why__card-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .why {
        padding: 60px 0;
    }
    .why__container {
        padding: 0 16px;
    }
    .why__highlight-inner {
        padding: 28px 24px;
    }
    .why__tag {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    .why__title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    .why__lead {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .why__stats {
        gap: 16px;
        padding: 16px 0;
    }
    .why__stat {
        flex: 1;
        min-width: 90px;
    }
    .why__stat-num {
        font-size: 1.5rem;
    }
    .why__stat-label {
        font-size: 0.75rem;
    }
    .why__cta {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
    .why__card {
        padding: 20px 18px;
    }
    .why__card-icon {
        width: 48px;
        height: 48px;
    }
    .why__card-icon img {
        width: 28px;
        height: 28px;
    }
    .why__card-body h3 {
        font-size: 1.05rem;
    }
    .why__card-body p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .why {
        padding: 50px 0;
    }
    .why__highlight-inner {
        padding: 24px 20px;
    }
    .why__title {
        font-size: 1.375rem;
    }
    .why__lead {
        font-size: 0.9rem;
    }
    .why__stats {
        gap: 12px;
    }
    .why__stat {
        min-width: 80px;
    }
    .why__stat-num {
        font-size: 1.375rem;
    }
    .why__card {
        padding: 18px 16px;
    }
    .why__card-icon {
        width: 44px;
        height: 44px;
    }
    .why__card-icon img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 375px) {
    .why__container {
        padding: 0 14px;
    }
    .why__highlight-inner {
        padding: 20px 16px;
    }
    .why__title {
        font-size: 1.25rem;
    }
    .why__lead {
        font-size: 0.875rem;
    }
    .why__card {
        padding: 16px 14px;
    }
    .why__card-body h3 {
        font-size: 1rem;
    }
}

/* --------------------------------------------------------------------------
   Showcase Section (New Design)
   -------------------------------------------------------------------------- */
.show {
    padding: 100px 0;
    background: var(--pv-light-warm);
    position: relative;
}
.show__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.show__header {
    text-align: center;
    margin-bottom: 56px;
}
.show__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.1) 100%);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pv-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.show__tag img {
    filter: sepia(1) saturate(5) hue-rotate(100deg);
}
.show__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--pv-dark);
    margin-bottom: 16px;
}
.show__title em {
    font-style: normal;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.show__subtitle {
    font-size: 1.1rem;
    color: var(--pv-text-light);
}

/* Gallery Layout */
.show__gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

/* Main Featured Project */
.show__main {
    background: #fff;
    border-radius: var(--pv-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: var(--pv-transition);
}
.show__main:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16,185,129,0.12);
}
.show__main-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.show__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.show__main:hover .show__main-img img {
    transform: scale(1.05);
}
.show__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(15,23,42,0.85);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}
.show__badge--green {
    background: var(--pv-green);
}
.show__badge--gold {
    background: var(--pv-gold);
    color: var(--pv-dark);
}
.show__main-info {
    padding: 28px 32px;
}
.show__main-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.show__cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pv-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.show__loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--pv-text-muted);
}
.show__loc img {
    opacity: 0.6;
}
.show__main-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 10px;
}
.show__main-desc {
    font-size: 0.95rem;
    color: var(--pv-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}
.show__main-stats {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.show__stat {
    text-align: center;
}
.show__stat-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.show__stat-lbl {
    font-size: 0.75rem;
    color: var(--pv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Side Cards */
.show__side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.show__card {
    flex: 1;
    background: #fff;
    border-radius: var(--pv-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: var(--pv-transition);
}
.show__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16,185,129,0.1);
}
.show__card-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.show__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.show__card:hover .show__card-img img {
    transform: scale(1.08);
}
.show__card-body {
    padding: 20px 24px;
}
.show__card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 10px;
}
.show__card-meta {
    display: flex;
    gap: 16px;
}
.show__card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--pv-text-muted);
}
.show__card-meta img {
    opacity: 0.5;
}

/* CTA Bar */
.show__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 40px;
    background: #fff;
    border-radius: var(--pv-radius-xl);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.show__cta p {
    font-size: 1.05rem;
    color: var(--pv-text);
    font-weight: 500;
}
.show__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--pv-gradient);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--pv-transition);
}
.show__cta-btn img {
    filter: brightness(0) invert(1);
    transition: var(--pv-transition);
}
.show__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16,185,129,0.35);
}
.show__cta-btn:hover img {
    transform: translateX(4px);
}

/* Showcase Responsive */
@media (max-width: 1024px) {
    .show__gallery {
        grid-template-columns: 1fr;
    }
    .show__side {
        flex-direction: row;
    }
}
@media (max-width: 768px) {
    .show { padding: 70px 0; }
    .show__main-img { height: 240px; }
    .show__main-info { padding: 24px; }
    .show__main-stats { gap: 16px; flex-wrap: wrap; }
    .show__side { flex-direction: column; }
    .show__card-img { height: 140px; }
    .show__cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .show__main-title { font-size: 1.2rem; }
    .show__stat-val { font-size: 1.1rem; }
}

/* --------------------------------------------------------------------------
   Technology Section (Legacy)
   -------------------------------------------------------------------------- */
.solar-tech {
    padding: 100px 0;
    background: var(--pv-light-warm);
}
.solar-tech__container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.solar-tech__header { text-align: center; margin-bottom: 60px; }
.solar-tech__label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--pv-light-green);
    color: var(--pv-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}
.solar-tech__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--pv-dark); }

.solar-tech__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.solar-tech__card {
    position: relative;
    background: white;
    border-radius: var(--pv-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--pv-shadow);
    transition: var(--pv-transition);
}
.solar-tech__card:hover { transform: translateY(-8px); box-shadow: var(--pv-shadow-lg); }
.solar-tech__card--best { border: 2px solid var(--pv-green); }
.solar-tech__card--premium { border: 2px solid var(--pv-gold); }

.solar-tech__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: var(--pv-green);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}
.solar-tech__tag--gold { background: var(--pv-gold); color: var(--pv-dark); }

.solar-tech__icon {
    width: 64px;
    height: 64px;
    background: var(--pv-light-green);
    border-radius: var(--pv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.solar-tech__name { font-size: 1.2rem; font-weight: 700; color: var(--pv-dark); margin-bottom: 8px; }
.solar-tech__desc { font-size: 0.9rem; color: var(--pv-text-light); margin-bottom: 16px; }
.solar-tech__pros { margin-bottom: 12px; }
.solar-tech__pros li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--pv-green-dark);
    margin-bottom: 6px;
}
.solar-tech__pros li::before { content: '✓'; color: var(--pv-green); font-weight: 700; }
.solar-tech__cons span { font-size: 0.85rem; color: var(--pv-text-light); }
.solar-tech__footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--pv-border); }
.solar-tech__for { font-size: 0.85rem; color: var(--pv-text-light); }

/* --------------------------------------------------------------------------
   Why Section
   -------------------------------------------------------------------------- */
.solar-why {
    padding: 100px 0;
    background: var(--pv-dark);
    position: relative;
    overflow: hidden;
}
.solar-why::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--pv-green-glow) 0%, transparent 70%);
    opacity: 0.3;
}
.solar-why__container { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.solar-why__header { text-align: center; margin-bottom: 60px; }
.solar-why__label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--pv-green-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}
.solar-why__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--pv-text-white); margin-bottom: 16px; }
.solar-why__desc { font-size: 1.1rem; color: var(--pv-text-muted); max-width: 700px; margin: 0 auto; }

.solar-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.solar-why__card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pv-radius-lg);
    padding: 32px;
    transition: var(--pv-transition);
}
.solar-why__card:hover { background: rgba(255,255,255,0.06); border-color: rgba(16,185,129,0.3); transform: translateY(-8px); }
.solar-why__num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pv-text-muted);
    padding: 4px 10px;
    background: var(--pv-dark-2);
    border-radius: 50px;
}
.solar-why__row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.solar-why__icon {
    width: 56px;
    height: 56px;
    background: var(--pv-gradient);
    border-radius: var(--pv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.solar-why__icon img { filter: brightness(0) invert(1); }
.solar-why__name { font-size: 1.1rem; font-weight: 700; color: var(--pv-text-white); }
.solar-why__text { font-size: 0.95rem; color: var(--pv-text-muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   Showcase Section
   -------------------------------------------------------------------------- */
.solar-showcase {
    padding: 100px 0;
    background: var(--pv-dark);
    position: relative;
    overflow: hidden;
}
.solar-showcase__bg { position: absolute; inset: 0; pointer-events: none; }
.solar-showcase__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.solar-showcase__orb--1 {
    top: -20%; left: -10%;
    width: 500px; height: 500px;
    background: var(--pv-green-glow);
    opacity: 0.2;
}
.solar-showcase__orb--2 {
    bottom: -20%; right: -10%;
    width: 400px; height: 400px;
    background: var(--pv-gold-glow);
    opacity: 0.15;
}
.solar-showcase__wrap { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.solar-showcase__header { text-align: center; margin-bottom: 60px; }
.solar-showcase__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--pv-green-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}
.solar-showcase__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--pv-text-white); margin-bottom: 12px; }
.solar-showcase__title span { background: var(--pv-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.solar-showcase__subtitle { font-size: 1.1rem; color: var(--pv-text-muted); }

.solar-showcase__featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pv-radius-xl);
    overflow: hidden;
    margin-bottom: 32px;
}
.solar-showcase__image-wrap { position: relative; height: 400px; }
.solar-showcase__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.solar-showcase__image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 50%, rgba(15,23,42,0.8) 100%); }
.solar-showcase__image-tag {
    position: absolute;
    top: 20px; left: 20px;
    padding: 6px 12px;
    background: var(--pv-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}
.solar-showcase__details { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.solar-showcase__info { margin-bottom: 32px; }
.solar-showcase__name { font-size: 1.5rem; font-weight: 700; color: var(--pv-text-white); margin-bottom: 12px; }
.solar-showcase__desc { font-size: 1rem; color: var(--pv-text-muted); line-height: 1.6; }
.solar-showcase__stats { display: flex; gap: 32px; }
.solar-showcase__stat { text-align: center; }
.solar-showcase__stat-num { display: block; font-size: 2rem; font-weight: 800; background: var(--pv-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.solar-showcase__stat-text { font-size: 0.85rem; color: var(--pv-text-muted); }

.solar-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.solar-showcase__card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pv-radius-lg);
    overflow: hidden;
    transition: var(--pv-transition);
}
.solar-showcase__card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-4px); }
.solar-showcase__card-image { position: relative; height: 200px; }
.solar-showcase__card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--pv-transition); }
.solar-showcase__card:hover .solar-showcase__card-image img { transform: scale(1.05); }
.solar-showcase__card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, transparent 50%); }
.solar-showcase__card-tag {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    background: var(--pv-gold);
    color: var(--pv-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}
.solar-showcase__card-body { padding: 20px; }
.solar-showcase__card-title { font-size: 1.1rem; font-weight: 700; color: var(--pv-text-white); margin-bottom: 8px; }
.solar-showcase__card-meta { display: flex; gap: 16px; }
.solar-showcase__card-meta span { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--pv-text-muted); }
.solar-showcase__card-meta img { opacity: 0.6; }

/* --------------------------------------------------------------------------
   Austria Coverage Section - Bento Grid Design
   -------------------------------------------------------------------------- */
.pv-austria {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--pv-dark) 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}
.pv-austria::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(16,185,129,0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(245,158,11,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.pv-austria__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 1;
}

/* Section Header */
.pv-austria__header {
    text-align: center;
    margin-bottom: 56px;
}
.pv-austria__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pv-green-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.pv-austria__tag img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(472%) hue-rotate(107deg);
}
.pv-austria__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.pv-austria__title em {
    font-style: normal;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pv-austria__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid */
.pv-austria__bento {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    margin-bottom: 40px;
}

/* Hero Card - Left */
.pv-austria__hero {
    background: linear-gradient(145deg, rgba(16,185,129,0.12) 0%, rgba(245,158,11,0.08) 100%);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: var(--pv-radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.pv-austria__hero-visual {
    position: relative;
    margin-bottom: 32px;
}
.pv-austria__map-icon {
    width: 100px;
    height: 100px;
    background: var(--pv-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.pv-austria__map-icon img {
    filter: brightness(0) invert(1);
    width: 56px;
    height: 56px;
}
.pv-austria__hero-glow {
    position: absolute;
    top: 50%;
    left: 50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16,185,129,0.4) 0%, transparent 70%);
    transform: translateY(-50%);
    z-index: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateY(-50%) scale(1.1); }
}

.pv-austria__hero-content {
    flex: 1;
}
.pv-austria__hero-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245,158,11,0.2);
    border: 1px solid rgba(245,158,11,0.4);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pv-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.pv-austria__hero-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.pv-austria__hero-title span {
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pv-austria__hero-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 28px;
}
.pv-austria__hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.pv-austria__hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.pv-austria__hero-stat span {
    font-size: 0.8rem;
    color: var(--pv-green-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* States Grid - Right */
.pv-austria__states {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pv-austria__state {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pv-radius-lg);
    transition: var(--pv-transition);
    position: relative;
}
.pv-austria__state:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(16,185,129,0.4);
    transform: translateY(-3px);
}
.pv-austria__state-marker {
    width: 40px;
    height: 40px;
    background: rgba(16,185,129,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--pv-transition);
}
.pv-austria__state-marker img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(472%) hue-rotate(107deg);
}
.pv-austria__state:hover .pv-austria__state-marker {
    background: var(--pv-gradient);
}
.pv-austria__state:hover .pv-austria__state-marker img {
    filter: brightness(0) invert(1);
}
.pv-austria__state-body {
    flex: 1;
    min-width: 0;
}
.pv-austria__state-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.pv-austria__state-info {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Wien - Main State */
.pv-austria__state--main {
    background: linear-gradient(135deg, rgba(16,185,129,0.2) 0%, rgba(245,158,11,0.15) 100%);
    border-color: var(--pv-green);
    grid-column: span 3;
}
.pv-austria__state--main .pv-austria__state-marker {
    background: var(--pv-gradient);
    width: 48px;
    height: 48px;
}
.pv-austria__state--main .pv-austria__state-marker img {
    filter: brightness(0) invert(1);
}
.pv-austria__state--main .pv-austria__state-name {
    font-size: 1.15rem;
}
.pv-austria__state-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    padding: 4px 12px;
    background: var(--pv-gold);
    color: var(--pv-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

/* CTA Bar */
.pv-austria__cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 40px;
    background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, rgba(245,158,11,0.1) 100%);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--pv-radius-xl);
}
.pv-austria__cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.pv-austria__cta-icon {
    width: 56px;
    height: 56px;
    background: var(--pv-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pv-austria__cta-icon img {
    filter: brightness(0) invert(1);
}
.pv-austria__cta-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.pv-austria__cta-text span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}
.pv-austria__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--pv-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pv-radius);
    white-space: nowrap;
    transition: var(--pv-transition);
}
.pv-austria__cta-btn img {
    filter: brightness(0) invert(1);
}
.pv-austria__cta-btn:hover {
    background: var(--pv-green-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16,185,129,0.4);
}

/* Austria Section Responsive */
@media (max-width: 1024px) {
    .pv-austria {
        padding: 80px 0;
    }
    .pv-austria__container {
        padding: 0 20px;
    }
    .pv-austria__header {
        margin-bottom: 48px;
    }
    .pv-austria__bento {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pv-austria__hero {
        padding: 36px 32px;
    }
    .pv-austria__states {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .pv-austria__state--main {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pv-austria {
        padding: 70px 0;
    }
    .pv-austria__header {
        margin-bottom: 40px;
    }
    .pv-austria__subtitle {
        font-size: 1.05rem;
    }
    .pv-austria__hero {
        padding: 32px 28px;
        text-align: center;
    }
    .pv-austria__hero-visual {
        margin: 0 auto 28px;
    }
    .pv-austria__map-icon {
        margin: 0 auto;
    }
    .pv-austria__hero-label {
        display: inline-block;
    }
    .pv-austria__hero-title {
        font-size: 1.75rem;
    }
    .pv-austria__hero-text {
        font-size: 0.95rem;
    }
    .pv-austria__hero-stats {
        justify-content: center;
    }
    .pv-austria__states {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pv-austria__state--main {
        grid-column: span 1;
    }
    .pv-austria__state {
        text-align: center;
        flex-direction: column;
        gap: 12px;
    }
    .pv-austria__state-marker {
        margin: 0 auto;
    }
    .pv-austria__cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }
    .pv-austria__cta-content {
        flex-direction: column;
        gap: 16px;
    }
    .pv-austria__cta-icon {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .pv-austria {
        padding: 60px 0;
    }
    .pv-austria__container {
        padding: 0 16px;
    }
    .pv-austria__header {
        margin-bottom: 36px;
    }
    .pv-austria__tag {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    .pv-austria__title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    .pv-austria__subtitle {
        font-size: 1rem;
    }
    .pv-austria__hero {
        padding: 28px 24px;
    }
    .pv-austria__map-icon {
        width: 80px;
        height: 80px;
    }
    .pv-austria__map-icon img {
        width: 48px;
        height: 48px;
    }
    .pv-austria__hero-title {
        font-size: 1.5rem;
    }
    .pv-austria__hero-text {
        font-size: 0.9rem;
    }
    .pv-austria__hero-stats {
        gap: 20px;
    }
    .pv-austria__hero-stat strong {
        font-size: 1.5rem;
    }
    .pv-austria__hero-stat span {
        font-size: 0.8rem;
    }
    .pv-austria__state {
        padding: 18px 16px;
    }
    .pv-austria__state-name {
        font-size: 1rem;
    }
    .pv-austria__state-info {
        font-size: 0.8rem;
    }
    .pv-austria__cta-bar {
        padding: 24px 20px;
        gap: 16px;
    }
    .pv-austria__cta-text strong {
        font-size: 1rem;
    }
    .pv-austria__cta-text span {
        font-size: 0.875rem;
    }
    .pv-austria__cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pv-austria {
        padding: 50px 0;
    }
    .pv-austria__hero {
        padding: 24px 20px;
    }
    .pv-austria__hero-title {
        font-size: 1.375rem;
    }
    .pv-austria__hero-stats {
        gap: 16px;
    }
    .pv-austria__hero-stat strong {
        font-size: 1.375rem;
    }
    .pv-austria__state {
        padding: 16px 14px;
    }
    .pv-austria__cta-bar {
        padding: 20px 16px;
    }
}

@media (max-width: 375px) {
    .pv-austria__container {
        padding: 0 14px;
    }
    .pv-austria__title {
        font-size: 1.5rem;
    }
    .pv-austria__subtitle {
        font-size: 0.9rem;
    }
    .pv-austria__hero {
        padding: 20px 16px;
    }
    .pv-austria__hero-title {
        font-size: 1.25rem;
    }
    .pv-austria__hero-text {
        font-size: 0.875rem;
    }
    .pv-austria__hero-stats {
        gap: 12px;
    }
    .pv-austria__hero-stat strong {
        font-size: 1.25rem;
    }
    .pv-austria__state {
        padding: 14px 12px;
    }
    .pv-austria__cta-bar {
        padding: 18px 14px;
    }
}

/* --------------------------------------------------------------------------
   Process Section - Light Design with Grid
   -------------------------------------------------------------------------- */
.pv-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faf9 0%, #f0f7f4 50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}
.pv-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pv-gradient);
}

.pv-process__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.pv-process__header {
    text-align: center;
    margin-bottom: 48px;
}
.pv-process__tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.08) 100%);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pv-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.pv-process__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--pv-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}
.pv-process__title em {
    font-style: normal;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pv-process__subtitle {
    font-size: 1.1rem;
    color: var(--pv-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Progress Bar */
.pv-process__progress {
    position: relative;
    max-width: 900px;
    margin: 0 auto 56px;
    padding: 0 20px;
}
.pv-process__progress-track {
    height: 4px;
    background: rgba(16,185,129,0.15);
    border-radius: 4px;
    overflow: hidden;
}
.pv-process__progress-fill {
    height: 100%;
    width: 100%;
    background: var(--pv-gradient);
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}
@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}
.pv-process__progress-dots {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}
.pv-process__progress-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--pv-green);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(16,185,129,0.2);
}
.pv-process__progress-dot--active {
    background: var(--pv-green);
    box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
}
.pv-process__progress-dot--final {
    background: var(--pv-gold);
    border-color: var(--pv-gold);
    box-shadow: 0 0 0 4px rgba(245,158,11,0.2);
}

/* Steps Grid */
.pv-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Step Card */
.pv-process__step {
    position: relative;
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(16,185,129,0.08);
    transition: var(--pv-transition);
}
.pv-process__step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16,185,129,0.12);
    border-color: var(--pv-green);
}
.pv-process__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pv-gradient);
    border-radius: var(--pv-radius-lg) var(--pv-radius-lg) 0 0;
    opacity: 0;
    transition: var(--pv-transition);
}
.pv-process__step:hover::before {
    opacity: 1;
}

/* Step Header */
.pv-process__step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.pv-process__step-num {
    font-size: 2rem;
    font-weight: 800;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.pv-process__step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--pv-transition);
}
.pv-process__step-icon img {
    filter: sepia(1) saturate(5) hue-rotate(100deg) brightness(0.6);
    transition: var(--pv-transition);
}
.pv-process__step:hover .pv-process__step-icon {
    background: var(--pv-gradient);
    transform: rotate(5deg);
}
.pv-process__step:hover .pv-process__step-icon img {
    filter: brightness(0) invert(1);
}

/* Gold Icon Variant */
.pv-process__step-icon--gold {
    background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(16,185,129,0.1) 100%);
}
.pv-process__step-icon--gold img {
    filter: sepia(1) saturate(5) hue-rotate(10deg) brightness(0.7);
}

/* Step Body */
.pv-process__step-body {
    min-height: 100px;
}
.pv-process__step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 10px;
}
.pv-process__step-text {
    font-size: 0.9rem;
    color: var(--pv-text-light);
    line-height: 1.6;
}

/* Step Arrow */
.pv-process__step-arrow {
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid var(--pv-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pv-green);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pv-process__step-arrow--down {
    top: auto;
    bottom: -14px;
    right: 50%;
    transform: translateX(50%);
}
.pv-process__step:nth-child(3) .pv-process__step-arrow {
    display: none;
}

/* Final Step */
.pv-process__step--final {
    background: linear-gradient(145deg, #fffbf5 0%, #fff 100%);
    border-color: var(--pv-gold);
    box-shadow: 0 4px 20px rgba(245,158,11,0.1);
}
.pv-process__step--final::before {
    background: linear-gradient(90deg, var(--pv-gold) 0%, var(--pv-green) 100%);
    opacity: 1;
}
.pv-process__step--final .pv-process__step-num {
    background: linear-gradient(135deg, var(--pv-gold) 0%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.pv-process__step--final .pv-process__step-icon {
    background: var(--pv-gold);
}
.pv-process__step--final .pv-process__step-icon img {
    filter: brightness(0) invert(1);
}

/* Step Badge */
.pv-process__step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--pv-gold) 0%, #d97706 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
}
.pv-process__step-badge img {
    filter: brightness(0) invert(1);
}

/* Footer CTA */
.pv-process__footer {
    margin-top: 48px;
}
.pv-process__footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 40px;
    background: #fff;
    border-radius: var(--pv-radius-xl);
    box-shadow: 0 8px 32px rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.1);
}
.pv-process__footer-info strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 4px;
}
.pv-process__footer-info span {
    font-size: 0.95rem;
    color: var(--pv-text-light);
}
.pv-process__footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--pv-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pv-radius);
    white-space: nowrap;
    transition: var(--pv-transition);
}
.pv-process__footer-btn img {
    filter: brightness(0) invert(1);
}
.pv-process__footer-btn:hover {
    background: var(--pv-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16,185,129,0.3);
}

/* Process Section Responsive */
@media (max-width: 1024px) {
    .pv-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pv-process__step-arrow {
        display: none;
    }
    .pv-process__step:nth-child(3) {
        order: 3;
    }
}

@media (max-width: 768px) {
    .pv-process { padding: 70px 0; }
    .pv-process__progress { display: none; }
    .pv-process__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pv-process__step {
        padding: 24px;
    }
    .pv-process__step-body {
        min-height: auto;
    }
    .pv-process__footer-content {
        flex-direction: column;
        text-align: center;
        padding: 28px;
        gap: 20px;
    }
    .pv-process__footer-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pv-process__step { padding: 20px; }
    .pv-process__step-num { font-size: 1.5rem; }
    .pv-process__step-icon { width: 40px; height: 40px; }
}

/* --------------------------------------------------------------------------
   Questions Section
   -------------------------------------------------------------------------- */
.pv-questions {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 50%, #f0f7f4 100%);
    position: relative;
    overflow: hidden;
}

.pv-questions::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--pv-green-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.pv-questions::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--pv-gold-glow) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.pv-questions__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pv-questions__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--pv-light-green) 0%, #d1fae5 100%);
    color: var(--pv-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.15);
}

.pv-questions__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--pv-dark);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, var(--pv-dark-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pv-questions__subtitle {
    font-size: 1.1rem;
    color: var(--pv-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Questions Grid - Bento Style */
.pv-questions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

/* Question Card Base */
.pv-questions__card {
    background: #ffffff;
    border-radius: var(--pv-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pv-questions__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pv-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pv-questions__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.12);
}

.pv-questions__card:hover::before {
    transform: scaleX(1);
}

.pv-questions__card-inner {
    padding: 28px;
}

/* Icon Box */
.pv-questions__icon-box {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--pv-light-green) 0%, #d1fae5 100%);
    border-radius: var(--pv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.pv-questions__card:hover .pv-questions__icon-box {
    background: var(--pv-gradient);
    transform: rotate(5deg) scale(1.05);
}

.pv-questions__card:hover .pv-questions__icon-box img {
    filter: brightness(0) invert(1);
}

/* Question Name */
.pv-questions__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Toggle Container for Problem/Solution */
.pv-questions__toggle {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Problem & Solution Blocks */
.pv-questions__problem,
.pv-questions__solution {
    padding: 12px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pv-questions__problem {
    background: #fef7f7;
    border-left: 3px solid #ef4444;
}

.pv-questions__solution {
    background: #f0fdf4;
    border-left: 3px solid var(--pv-green);
}

.pv-questions__problem p,
.pv-questions__solution p {
    font-size: 0.9rem;
    color: var(--pv-text-light);
    line-height: 1.55;
    margin: 0;
}

/* Badges */
.pv-questions__badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 8px;
}

.pv-questions__badge--problem {
    background: #fee2e2;
    color: #dc2626;
}

.pv-questions__badge--solution {
    background: #d1fae5;
    color: var(--pv-green-dark);
}

/* Stats Bar */
.pv-questions__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 28px 40px;
    background: #ffffff;
    border-radius: var(--pv-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pv-questions__stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pv-questions__stat img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pv-questions__stat-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pv-dark);
}

/* CTA Section */
.pv-questions__cta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, var(--pv-dark-2) 100%);
    border-radius: var(--pv-radius-xl);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pv-questions__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.pv-questions__cta-icon {
    width: 60px;
    height: 60px;
    background: var(--pv-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
}

.pv-questions__cta-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.pv-questions__cta-content {
    flex: 1;
}

.pv-questions__cta-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.pv-questions__cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.pv-questions__cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 32px;
    background: var(--pv-gradient);
    border-radius: var(--pv-radius);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pv-questions__cta-btn span:first-child {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}

.pv-questions__cta-phone {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

.pv-questions__cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}

/* Questions Section Responsive */
@media (max-width: 1024px) {
    .pv-questions {
        padding: 80px 0;
    }
    .pv-container {
        padding: 0 20px;
    }
    .pv-questions__header {
        margin-bottom: 50px;
    }
    .pv-questions__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .pv-questions__stats {
        gap: 32px;
        padding: 24px 32px;
    }
    .pv-questions__cta {
        padding: 28px 32px;
    }
}

@media (max-width: 768px) {
    .pv-questions {
        padding: 70px 0;
    }
    .pv-questions__header {
        margin-bottom: 40px;
    }
    .pv-questions__title {
        font-size: 1.75rem;
    }
    .pv-questions__subtitle {
        font-size: 1rem;
    }
    .pv-questions__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pv-questions__stats {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        align-items: center;
    }
    .pv-questions__stat {
        justify-content: center;
    }
    .pv-questions__cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 24px;
    }
    .pv-questions__cta-icon {
        margin: 0 auto;
    }
    .pv-questions__cta-btn {
        width: 100%;
        padding: 18px 24px;
    }
}

@media (max-width: 600px) {
    .pv-questions {
        padding: 60px 0;
    }
    .pv-container {
        padding: 0 16px;
    }
    .pv-questions__header {
        margin-bottom: 36px;
    }
    .pv-questions__label {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    .pv-questions__title {
        font-size: 1.5rem;
    }
    .pv-questions__subtitle {
        font-size: 0.95rem;
    }
    .pv-questions__card-inner {
        padding: 24px 20px;
    }
    .pv-questions__icon-box {
        width: 48px;
        height: 48px;
    }
    .pv-questions__name {
        font-size: 1.05rem;
    }
    .pv-questions__badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    .pv-questions__problem p,
    .pv-questions__solution p {
        font-size: 0.9rem;
    }
    .pv-questions__stats {
        padding: 20px 16px;
        gap: 14px;
    }
    .pv-questions__stat-text {
        font-size: 0.875rem;
    }
    .pv-questions__cta {
        padding: 24px 20px;
        gap: 16px;
    }
    .pv-questions__cta-title {
        font-size: 1.25rem;
    }
    .pv-questions__cta-text {
        font-size: 0.95rem;
    }
    .pv-questions__cta-phone {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .pv-questions {
        padding: 50px 0;
    }
    .pv-questions__title {
        font-size: 1.375rem;
    }
    .pv-questions__card-inner {
        padding: 20px 18px;
    }
    .pv-questions__icon-box {
        width: 44px;
        height: 44px;
    }
    .pv-questions__name {
        font-size: 1rem;
    }
    .pv-questions__problem p,
    .pv-questions__solution p {
        font-size: 0.85rem;
    }
    .pv-questions__cta-title {
        font-size: 1.15rem;
    }
    .pv-questions__cta-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .pv-container {
        padding: 0 14px;
    }
    .pv-questions__title {
        font-size: 1.25rem;
    }
    .pv-questions__subtitle {
        font-size: 0.875rem;
    }
    .pv-questions__card-inner {
        padding: 18px 16px;
    }
    .pv-questions__cta {
        padding: 20px 16px;
    }
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.pv-about {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pv-about::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--pv-green-glow) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.pv-about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Side */
.pv-about__content {
    position: relative;
}

.pv-about__label {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--pv-light-green) 0%, #d1fae5 100%);
    color: var(--pv-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pv-about__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--pv-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.pv-about__lead {
    font-size: 1.15rem;
    color: var(--pv-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pv-about__lead strong {
    color: var(--pv-green-dark);
}

.pv-about__text {
    margin-bottom: 32px;
}

.pv-about__text p {
    font-size: 1rem;
    color: var(--pv-text-light);
    line-height: 1.7;
}

/* Values Grid */
.pv-about__values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pv-about__value {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: var(--pv-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--pv-green);
    transition: all 0.3s ease;
}

.pv-about__value:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.12);
}

.pv-about__value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pv-light-green) 0%, #d1fae5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv-about__value:hover .pv-about__value-icon {
    background: var(--pv-gradient);
}

.pv-about__value:hover .pv-about__value-icon img {
    filter: brightness(0) invert(1);
}

.pv-about__value-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pv-about__value-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pv-dark);
}

.pv-about__value-text span {
    font-size: 0.85rem;
    color: var(--pv-text-light);
}

.pv-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--pv-gradient);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pv-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pv-about__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.pv-about__btn img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.pv-about__btn:hover img {
    transform: translateX(4px);
}

/* Visual Side */
.pv-about__visual {
    position: relative;
}

.pv-about__image {
    position: relative;
    border-radius: var(--pv-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pv-about__image img {
    width: 100%;
    height: auto;
    display: block;
}

.pv-about__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.4) 100%);
    pointer-events: none;
}

/* Stats */
.pv-about__stats {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
}

.pv-about__stat {
    flex: 1;
    background: #ffffff;
    padding: 20px 16px;
    border-radius: var(--pv-radius);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pv-about__stat:hover {
    transform: translateY(-4px);
}

.pv-about__stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.pv-about__stat-label {
    font-size: 0.8rem;
    color: var(--pv-text-light);
    font-weight: 500;
}

/* Trust Bar */
.pv-about__trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    padding: 28px 40px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, var(--pv-dark-2) 100%);
    border-radius: var(--pv-radius-xl);
    position: relative;
    z-index: 1;
}

.pv-about__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.pv-about__trust-item img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(85deg);
    opacity: 0.9;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .pv-about__wrapper {
        gap: 40px;
    }

    .pv-about__trust {
        gap: 24px;
        padding: 24px 32px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .pv-about {
        padding: 70px 0;
    }

    .pv-about__wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pv-about__visual {
        order: -1;
    }

    .pv-about__stats {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 16px;
    }

    .pv-about__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 48px;
    }
}

@media (max-width: 480px) {
    .pv-about {
        padding: 50px 0;
    }

    .pv-about__title {
        font-size: 1.5rem;
    }

    .pv-about__lead {
        font-size: 1rem;
    }

    .pv-about__value {
        padding: 14px 16px;
    }

    .pv-about__value-icon {
        width: 40px;
        height: 40px;
    }

    .pv-about__stats {
        flex-direction: column;
        gap: 12px;
    }

    .pv-about__stat {
        padding: 16px;
    }

    .pv-about__stat-value {
        font-size: 1.5rem;
    }

    .pv-about__trust {
        padding: 20px;
    }

    .pv-about__trust-item {
        font-size: 0.9rem;
    }
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.solar-testimonials {
    padding: 100px 0;
    background: var(--pv-dark);
}

.solar-testimonials__layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

.solar-testimonials__summary {
    background: var(--pv-gradient);
    border-radius: var(--pv-radius-xl);
    padding: 40px;
    text-align: center;
}
.solar-testimonials__badge {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.solar-testimonials__rating { font-size: 4rem; font-weight: 900; color: white; line-height: 1; }
.solar-testimonials__stars { font-size: 1.5rem; color: white; margin-bottom: 12px; }
.solar-testimonials__count { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.solar-testimonials__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--pv-dark);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--pv-radius);
}
.solar-testimonials__link:hover { transform: translateY(-2px); box-shadow: var(--pv-shadow-lg); }

.solar-testimonials__content {}
.solar-testimonials__header { margin-bottom: 32px; }
.solar-testimonials__label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--pv-green-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}
.solar-testimonials__title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--pv-text-white); }

.solar-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.solar-testimonials__card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pv-radius-lg);
    padding: 28px;
    position: relative;
}
.solar-testimonials__quote {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 4rem;
    line-height: 1;
    background: var(--pv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}
.solar-testimonials__text { font-size: 0.95rem; color: var(--pv-text-muted); line-height: 1.6; margin-bottom: 20px; }
.solar-testimonials__author { display: flex; align-items: center; gap: 12px; }
.solar-testimonials__avatar {
    width: 44px;
    height: 44px;
    background: var(--pv-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}
.solar-testimonials__info { flex: 1; }
.solar-testimonials__name { font-size: 0.95rem; font-weight: 600; color: var(--pv-text-white); }
.solar-testimonials__service { font-size: 0.8rem; color: var(--pv-green-light); }
.solar-testimonials__meta { text-align: right; }
.solar-testimonials__card-stars { display: block; color: var(--pv-gold); margin-bottom: 4px; }
.solar-testimonials__date { font-size: 0.75rem; color: var(--pv-text-muted); }

/* --------------------------------------------------------------------------
   Blog Section
   -------------------------------------------------------------------------- */
.pv-blog {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
    position: relative;
}

.pv-blog__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
}

.pv-blog__intro {
    max-width: 600px;
}

.pv-blog__label {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--pv-light-green) 0%, #d1fae5 100%);
    color: var(--pv-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 16px;
}

.pv-blog__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--pv-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.pv-blog__subtitle {
    font-size: 1rem;
    color: var(--pv-text-light);
    line-height: 1.6;
}

.pv-blog__all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--pv-green);
    color: var(--pv-green);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--pv-radius);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pv-blog__all-btn:hover {
    background: var(--pv-green);
    color: #ffffff;
}

.pv-blog__all-btn:hover img {
    filter: brightness(0) invert(1);
    transform: translateX(4px);
}

.pv-blog__all-btn img {
    transition: all 0.3s ease;
}

/* Blog Grid */
.pv-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

/* Blog Card */
.pv-blog__card {
    background: #ffffff;
    border-radius: var(--pv-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pv-blog__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12);
}

/* Card Image */
.pv-blog__card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: block;
}

.pv-blog__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pv-blog__card:hover .pv-blog__card-image img {
    transform: scale(1.08);
}

.pv-blog__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pv-blog__card:hover .pv-blog__card-overlay {
    opacity: 1;
}

/* Card Content */
.pv-blog__card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pv-blog__card-meta {
    margin-bottom: 12px;
}

.pv-blog__card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--pv-text-muted);
}

.pv-blog__card-date img {
    opacity: 0.6;
}

.pv-blog__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pv-blog__card-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.pv-blog__card-title a:hover {
    color: var(--pv-green);
}

.pv-blog__card-excerpt {
    font-size: 0.9rem;
    color: var(--pv-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.pv-blog__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pv-green);
    transition: all 0.3s ease;
}

.pv-blog__card-link:hover {
    color: var(--pv-green-dark);
}

.pv-blog__card-link:hover img {
    transform: translateX(4px);
}

.pv-blog__card-link img {
    transition: transform 0.3s ease;
}

/* Blog CTA Box */
.pv-blog__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, var(--pv-dark-2) 100%);
    border-radius: var(--pv-radius-xl);
    position: relative;
    overflow: hidden;
}

.pv-blog__cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pv-green-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.pv-blog__cta-content {
    position: relative;
    z-index: 1;
}

.pv-blog__cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.pv-blog__cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.pv-blog__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--pv-gradient);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--pv-radius);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.pv-blog__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.pv-blog__cta-btn img {
    filter: brightness(0) invert(1);
}

/* Blog Section Responsive */
@media (max-width: 1024px) {
    .pv-blog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pv-blog {
        padding: 70px 0;
    }

    .pv-blog__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pv-blog__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pv-blog__cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 24px;
    }

    .pv-blog__cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pv-blog {
        padding: 50px 0;
    }

    .pv-blog__title {
        font-size: 1.5rem;
    }

    .pv-blog__card-content {
        padding: 20px;
    }

    .pv-blog__card-title {
        font-size: 1rem;
    }

    .pv-blog__cta-title {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.pv-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f7f4 0%, #ffffff 50%, #f8faf9 100%);
    position: relative;
    overflow: hidden;
}

.pv-faq::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--pv-green-glow) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.pv-faq__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pv-faq__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--pv-light-green) 0%, #d1fae5 100%);
    color: var(--pv-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pv-faq__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--pv-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pv-faq__subtitle {
    font-size: 1.1rem;
    color: var(--pv-text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ Wrapper - Two Columns */
.pv-faq__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.pv-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item Card */
.pv-faq__item {
    background: #ffffff;
    border-radius: var(--pv-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pv-faq__item:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.15);
}

.pv-faq__item.active {
    border-color: var(--pv-green);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

/* Question Button */
.pv-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pv-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pv-faq__question:hover {
    color: var(--pv-green-dark);
}

/* Icon Box */
.pv-faq__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--pv-light-green) 0%, #d1fae5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pv-faq__item:hover .pv-faq__icon,
.pv-faq__item.active .pv-faq__icon {
    background: var(--pv-gradient);
}

.pv-faq__item:hover .pv-faq__icon img,
.pv-faq__item.active .pv-faq__icon img {
    filter: brightness(0) invert(1);
}

.pv-faq__text {
    flex: 1;
    line-height: 1.4;
}

/* Toggle Icon */
.pv-faq__toggle {
    width: 28px;
    height: 28px;
    background: var(--pv-light-green);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pv-faq__item.active .pv-faq__toggle {
    background: var(--pv-green);
    transform: rotate(180deg);
}

.pv-faq__toggle::before,
.pv-faq__toggle::after {
    content: '';
    position: absolute;
    background: var(--pv-green-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.pv-faq__item.active .pv-faq__toggle::before,
.pv-faq__item.active .pv-faq__toggle::after {
    background: #ffffff;
}

.pv-faq__toggle::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pv-faq__toggle::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pv-faq__item.active .pv-faq__toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer Content */
.pv-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pv-faq__item.active .pv-faq__answer {
    max-height: 400px;
}

.pv-faq__answer p {
    padding: 0 24px 24px 84px;
    font-size: 0.95rem;
    color: var(--pv-text-light);
    line-height: 1.7;
}

/* CTA Box */
.pv-faq__cta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, var(--pv-dark-2) 100%);
    border-radius: var(--pv-radius-xl);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pv-faq__cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pv-gold-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.pv-faq__cta-icon {
    width: 60px;
    height: 60px;
    background: var(--pv-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.pv-faq__cta-icon img {
    filter: brightness(0) invert(1);
}

.pv-faq__cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.pv-faq__cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.pv-faq__cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.pv-faq__cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 32px;
    background: var(--pv-gradient);
    border-radius: var(--pv-radius);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pv-faq__cta-btn span:first-child {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}

.pv-faq__cta-phone {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

.pv-faq__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}

/* FAQ Section Responsive */
@media (max-width: 1024px) {
    .pv-faq__wrapper {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pv-faq {
        padding: 70px 0;
    }

    .pv-faq__header {
        margin-bottom: 40px;
    }

    .pv-faq__wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pv-faq__answer p {
        padding: 0 20px 20px 20px;
    }

    .pv-faq__cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 24px;
    }

    .pv-faq__cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pv-faq {
        padding: 50px 0;
    }

    .pv-faq__title {
        font-size: 1.5rem;
    }

    .pv-faq__question {
        padding: 16px 20px;
        gap: 12px;
    }

    .pv-faq__icon {
        width: 38px;
        height: 38px;
    }

    .pv-faq__text {
        font-size: 0.95rem;
    }

    .pv-faq__toggle {
        width: 24px;
        height: 24px;
    }

    .pv-faq__cta-title {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.pv-contact {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2e1a 0%, #0d1f0d 50%, #1a2e1a 100%);
    overflow: hidden;
}

.pv-contact__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pv-contact__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.pv-contact__glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.pv-contact__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.pv-contact__header {
    text-align: center;
    margin-bottom: 60px;
}

.pv-contact__label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--pv-green-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pv-contact__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pv-contact__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

.pv-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

/* Info Panel */
.pv-contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pv-contact__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--pv-radius-xl);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.pv-contact__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-contact__card-icon {
    width: 56px;
    height: 56px;
    background: var(--pv-gradient);
    border-radius: var(--pv-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv-contact__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.pv-contact__card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pv-contact__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pv-contact__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--pv-radius);
    transition: var(--pv-transition);
    text-decoration: none;
}

.pv-contact__link:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(4px);
}

.pv-contact__link-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--pv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--pv-transition);
}

.pv-contact__link:hover .pv-contact__link-icon {
    background: var(--pv-gradient);
    border-color: transparent;
}

.pv-contact__link-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--pv-transition);
}

.pv-contact__link:hover .pv-contact__link-icon img {
    opacity: 1;
}

.pv-contact__link-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pv-contact__link-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pv-contact__link-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* Badges */
.pv-contact__badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pv-contact__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--pv-radius);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--pv-transition);
}

.pv-contact__badge:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Form Panel */
.pv-contact__form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--pv-radius-xl);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.pv-contact__form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-contact__form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.pv-contact__form-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.pv-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pv-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pv-contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pv-contact__input,
.pv-contact__textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pv-radius);
    font-size: 0.95rem;
    color: #ffffff;
    transition: var(--pv-transition);
    font-family: inherit;
}

.pv-contact__input::placeholder,
.pv-contact__textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.pv-contact__input:focus,
.pv-contact__textarea:focus {
    outline: none;
    border-color: var(--pv-green);
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.pv-contact__textarea {
    min-height: 120px;
    resize: vertical;
}

.pv-contact__error {
    display: none;
    font-size: 0.8rem;
    color: #f87171;
    padding-left: 4px;
}

.pv-contact__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: var(--pv-gradient);
    border: none;
    border-radius: var(--pv-radius);
    font-size: 1rem;
    font-weight: 700;
    color: var(--pv-dark);
    cursor: pointer;
    transition: var(--pv-transition);
    margin-top: 8px;
}

.pv-contact__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
}

.pv-contact__submit img {
    transition: var(--pv-transition);
}

.pv-contact__submit:hover img {
    transform: translateX(4px);
}

.pv-contact__success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--pv-radius);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pv-green-light);
    text-align: center;
}

/* Contact Section - Responsive */
@media (max-width: 1024px) {
    .pv-contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pv-contact__header {
        margin-bottom: 48px;
    }

    .pv-contact__badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pv-contact {
        padding: 80px 0;
    }

    .pv-contact__header {
        margin-bottom: 40px;
    }

    .pv-contact__title {
        font-size: 1.75rem;
    }

    .pv-contact__subtitle {
        font-size: 1rem;
    }

    .pv-contact__card {
        padding: 24px;
    }

    .pv-contact__card-header {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .pv-contact__card-icon {
        width: 48px;
        height: 48px;
    }

    .pv-contact__card-icon img {
        width: 24px;
        height: 24px;
    }

    .pv-contact__card-title {
        font-size: 1.25rem;
    }

    .pv-contact__link {
        padding: 14px;
        gap: 12px;
    }

    .pv-contact__link-icon {
        width: 40px;
        height: 40px;
    }

    .pv-contact__badges {
        grid-template-columns: 1fr;
    }

    .pv-contact__form-wrap {
        padding: 24px;
    }

    .pv-contact__form-row {
        grid-template-columns: 1fr;
    }

    .pv-contact__input,
    .pv-contact__textarea {
        padding: 14px 16px;
    }

    .pv-contact__submit {
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .pv-contact {
        padding: 60px 0;
    }

    .pv-contact__glow--1 {
        width: 300px;
        height: 300px;
    }

    .pv-contact__glow--2 {
        width: 250px;
        height: 250px;
    }

    .pv-contact__label {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .pv-contact__title {
        font-size: 1.5rem;
    }

    .pv-contact__card {
        padding: 20px;
    }

    .pv-contact__card-text {
        font-size: 0.9rem;
    }

    .pv-contact__link-value {
        font-size: 0.9rem;
    }

    .pv-contact__form-wrap {
        padding: 20px;
    }

    .pv-contact__form-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .pv-contact__form-title {
        font-size: 1.15rem;
    }
}

/* --------------------------------------------------------------------------
   SEO Section
   -------------------------------------------------------------------------- */
.pv-seo {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7f4 50%, #ffffff 100%);
    overflow: hidden;
}

.pv-seo__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pv-seo__decor-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.15) 50%, transparent 100%);
}

.pv-seo__decor-line--1 {
    top: 20%;
    left: 0;
    right: 0;
}

.pv-seo__decor-line--2 {
    top: 80%;
    left: 0;
    right: 0;
}

/* Header */
.pv-seo__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.pv-seo__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--pv-light-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pv-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.pv-seo__label img {
    opacity: 0.8;
}

.pv-seo__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--pv-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pv-seo__subtitle {
    font-size: 1.05rem;
    color: var(--pv-text-light);
    line-height: 1.6;
}

/* TOC Navigation */
.pv-seo__toc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
    padding: 24px;
    background: #ffffff;
    border-radius: var(--pv-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--pv-border);
}

.pv-seo__toc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--pv-light);
    border-radius: var(--pv-radius);
    text-decoration: none;
    transition: var(--pv-transition);
    border: 1px solid transparent;
}

.pv-seo__toc-item:hover {
    background: var(--pv-light-green);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.pv-seo__toc-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pv-green);
    opacity: 0.7;
}

.pv-seo__toc-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pv-text);
}

.pv-seo__toc-item:hover .pv-seo__toc-text {
    color: var(--pv-green-dark);
}

/* Content */
.pv-seo__content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Intro */
.pv-seo__intro {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: var(--pv-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--pv-border);
    margin-bottom: 40px;
}

.pv-seo__intro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin-bottom: 20px;
}

.pv-seo__intro p {
    font-size: 1rem;
    color: var(--pv-text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.pv-seo__intro strong {
    color: var(--pv-text);
}

/* Articles Grid */
.pv-seo__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pv-seo__card {
    background: #ffffff;
    border-radius: var(--pv-radius-lg);
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--pv-border);
    transition: var(--pv-transition);
    position: relative;
    overflow: hidden;
}

.pv-seo__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pv-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pv-seo__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.pv-seo__card:hover::before {
    transform: scaleX(1);
}

.pv-seo__card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.pv-seo__card-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--pv-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pv-green-dark);
    transition: var(--pv-transition);
}

.pv-seo__card:hover .pv-seo__card-num {
    background: var(--pv-gradient);
    color: #ffffff;
}

.pv-seo__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pv-dark);
    line-height: 1.4;
}

.pv-seo__card p {
    font-size: 0.92rem;
    color: var(--pv-text-light);
    line-height: 1.7;
}

.pv-seo__card strong {
    color: var(--pv-text);
}

/* CTA Box */
.pv-seo__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, #1a3d2e 100%);
    border-radius: var(--pv-radius-xl);
    position: relative;
    overflow: hidden;
}

.pv-seo__cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pv-seo__cta-content {
    position: relative;
    flex: 1;
}

.pv-seo__cta-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.pv-seo__cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.pv-seo__cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--pv-gradient);
    color: var(--pv-dark);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--pv-radius);
    text-decoration: none;
    transition: var(--pv-transition);
    flex-shrink: 0;
}

.pv-seo__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
}

.pv-seo__cta-btn img {
    filter: brightness(0);
}

/* SEO Section - Responsive */
@media (max-width: 1024px) {
    .pv-seo__grid {
        grid-template-columns: 1fr;
    }

    .pv-seo__cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pv-seo {
        padding: 80px 0;
    }

    .pv-seo__header {
        margin-bottom: 32px;
    }

    .pv-seo__toc {
        padding: 16px;
        gap: 8px;
        margin-bottom: 40px;
    }

    .pv-seo__toc-item {
        padding: 8px 14px;
    }

    .pv-seo__toc-text {
        font-size: 0.8rem;
    }

    .pv-seo__intro {
        padding: 24px;
    }

    .pv-seo__intro-title {
        font-size: 1.25rem;
    }

    .pv-seo__card {
        padding: 20px;
    }

    .pv-seo__card-header {
        gap: 12px;
    }

    .pv-seo__card-num {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .pv-seo__card-title {
        font-size: 1rem;
    }

    .pv-seo__cta {
        padding: 28px 20px;
        gap: 24px;
    }

    .pv-seo__cta-title {
        font-size: 1.15rem;
    }

    .pv-seo__cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .pv-seo {
        padding: 60px 0;
    }

    .pv-seo__title {
        font-size: 1.5rem;
    }

    .pv-seo__toc {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .pv-seo__toc-item {
        justify-content: center;
    }

    .pv-seo__card-header {
        flex-direction: column;
        gap: 8px;
    }
}

/* --------------------------------------------------------------------------
   Fixed Call Button
   -------------------------------------------------------------------------- */
.pv-fixed-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--pv-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px var(--pv-green-glow);
    z-index: 9999;
    transition: var(--pv-transition);
    animation: callPulse 2s infinite;
}
.pv-fixed-call:hover { transform: scale(1.1); box-shadow: 0 8px 35px var(--pv-gold-glow); }
.pv-fixed-call img { filter: brightness(0) invert(1); }

@keyframes callPulse {
    0%, 100% { box-shadow: 0 5px 25px var(--pv-green-glow); }
    50% { box-shadow: 0 5px 40px var(--pv-gold-glow); }
}

/* --------------------------------------------------------------------------
   Responsive - Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .pv-nav { display: none; }
    .pv-btn-cta { display: none; }
    .pv-nav-toggle { display: flex; }

    .pv-nav {
        display: block;
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--pv-dark);
        padding: 100px 24px 40px;
        z-index: 8;
        transition: right 0.3s ease;
    }
    .pv-nav.active { right: 0; }
    .pv-nav-list { flex-direction: column; gap: 0; }
    .pv-nav-link { display: block; padding: 16px 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }

    .solar-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .solar-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .solar-services__grid { grid-template-columns: repeat(2, 1fr); }
    .solar-services__card--lg { grid-column: span 1; }
    .solar-tech__grid { grid-template-columns: repeat(2, 1fr); }
    .solar-why__grid { grid-template-columns: repeat(2, 1fr); }
    .solar-showcase__featured { grid-template-columns: 1fr; }
    .solar-showcase__image-wrap { height: 300px; }
    .solar-showcase__grid { grid-template-columns: 1fr; }
    .solar-testimonials__layout { grid-template-columns: 1fr; gap: 40px; }
    .solar-testimonials__summary { max-width: 400px; margin: 0 auto; }
    .solar-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   Responsive - Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .pv-header { height: 70px; }
    .pv-logo-slogan { display: none; }
    .pv-btn-blog span, .pv-btn-call-text { display: none; }
    .pv-btn-blog, .pv-btn-call { width: 44px; height: 44px; padding: 0; justify-content: center; }

    .solar-hero { min-height: auto; padding: 100px 0 60px; }
    .solar-hero__inner { padding: 0 16px; }
    .solar-hero__title { font-size: 2rem; }
    .solar-hero__actions { flex-direction: column; }
    .solar-hero__btn { width: 100%; justify-content: center; }
    .solar-hero__stats { grid-template-columns: 1fr 1fr; }

    .solar-trust__grid { grid-template-columns: 1fr; }
    .solar-trust__numbers { flex-direction: column; gap: 24px; }
    .solar-services__grid { grid-template-columns: 1fr; }
    .solar-tech__grid { grid-template-columns: 1fr; }
    .solar-why__grid { grid-template-columns: 1fr; }
    .solar-testimonials__grid { grid-template-columns: 1fr; }
    .pv-form-row { grid-template-columns: 1fr; }

    .pv-fixed-call { bottom: 20px; right: 20px; width: 55px; height: 55px; }
}

/* --------------------------------------------------------------------------
   Responsive - Small Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    html { font-size: 14px; }
    .pv-container { padding: 0 16px; }
    .solar-hero__title { font-size: 1.75rem; }
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
.pv-footer {
    position: relative;
    background: linear-gradient(180deg, #0f2318 0%, #081510 100%);
    padding-top: 0;
    overflow: hidden;
}

.pv-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pv-gradient);
}

.pv-footer__glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* CTA Bar */
.pv-footer__cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 40px;
    margin: 60px 0 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(245, 158, 11, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--pv-radius-xl);
}

.pv-footer__cta-content {}

.pv-footer__cta-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.pv-footer__cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.pv-footer__cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.pv-footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--pv-radius);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--pv-transition);
    text-decoration: none;
}

.pv-footer__cta-btn--phone {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.pv-footer__cta-btn--phone img {
    filter: brightness(0) invert(1);
}

.pv-footer__cta-btn--phone:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.pv-footer__cta-btn--form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.pv-footer__cta-btn--form:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.pv-footer__cta-btn--form img {
    filter: brightness(0) invert(1);
    transition: var(--pv-transition);
}

.pv-footer__cta-btn--form:hover img {
    transform: translateX(4px);
}

/* Main Content */
.pv-footer__main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.pv-footer__brand {}

.pv-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.pv-footer__logo img {
    height: 45px;
    width: auto;
}

.pv-footer__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 28px;
}

.pv-footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pv-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--pv-transition);
    text-decoration: none;
}

.pv-footer__contact-item:hover {
    color: var(--pv-green-light);
}

.pv-footer__contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--pv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--pv-transition);
}

.pv-footer__contact-item:hover .pv-footer__contact-icon {
    background: var(--pv-gradient);
    border-color: transparent;
}

.pv-footer__contact-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Links Columns */
.pv-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pv-footer__col {}

.pv-footer__heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pv-green-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.pv-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pv-footer__nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--pv-transition);
    text-decoration: none;
}

.pv-footer__nav a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Trust Badges */
.pv-footer__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-footer__trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--pv-radius);
    transition: var(--pv-transition);
}

.pv-footer__trust-item:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.pv-footer__trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv-footer__trust-item .pv-footer__trust-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.pv-footer__trust-item .pv-footer__trust-text span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.pv-footer__trust-icon img {
    filter: none;
}

/* Regions */
.pv-footer__regions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-footer__regions-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pv-footer__regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pv-footer__region {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--pv-transition);
    text-decoration: none;
}

.pv-footer__region:hover {
    background: var(--pv-green);
    border-color: var(--pv-green);
    color: #ffffff;
}

/* Bottom Bar */
.pv-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.pv-footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.pv-footer__legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pv-footer__legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--pv-transition);
    text-decoration: none;
}

.pv-footer__legal a:hover {
    color: var(--pv-green-light);
}

.pv-footer__legal-sep {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .pv-footer__cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 28px 24px;
    }

    .pv-footer__cta-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pv-footer__main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pv-footer__trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pv-footer__cta-bar {
        margin: 40px 0 40px;
    }

    .pv-footer__cta-title {
        font-size: 1.15rem;
    }

    .pv-footer__cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .pv-footer__links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .pv-footer__nav {
        align-items: center;
    }

    .pv-footer__nav a:hover {
        transform: none;
    }

    .pv-footer__brand {
        text-align: center;
    }

    .pv-footer__contact-items {
        align-items: center;
    }

    .pv-footer__trust {
        grid-template-columns: 1fr;
    }

    .pv-footer__trust-item {
        justify-content: center;
    }

    .pv-footer__regions {
        flex-direction: column;
        text-align: center;
    }

    .pv-footer__regions-list {
        justify-content: center;
    }

    .pv-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .pv-footer__cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .pv-footer__cta-btn {
        width: 100%;
        justify-content: center;
    }

    .pv-footer__trust-item {
        padding: 14px 16px;
    }

    .pv-footer__trust-icon {
        width: 40px;
        height: 40px;
    }
}


/* ========================================
   Portfolio Section
   ======================================== */

.pv-portfolio {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pv-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
}

/* Header */
.pv-portfolio__header {
    text-align: center;
    margin-bottom: 60px;
}

.pv-portfolio__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pv-portfolio__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pv-portfolio__desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Project */
.pv-portfolio__featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.pv-portfolio__featured-img {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.pv-portfolio__featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pv-portfolio__featured:hover .pv-portfolio__featured-img img {
    transform: scale(1.05);
}

.pv-portfolio__featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pv-portfolio__featured-content {
    padding: 40px;
}

.pv-portfolio__featured-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #10b981;
    margin-bottom: 16px;
}

.pv-portfolio__featured-location img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(51%) saturate(2878%) hue-rotate(118deg) brightness(92%) contrast(87%);
}

.pv-portfolio__featured-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pv-portfolio__featured-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

.pv-portfolio__featured-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pv-portfolio__spec {
    text-align: center;
    padding: 16px 8px;
    background: linear-gradient(135deg, #f8faf9 0%, #f0f7f4 100%);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.pv-portfolio__spec-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.pv-portfolio__spec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Project Grid */
.pv-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.pv-portfolio__card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.08);
    transition: all 0.4s ease;
}

.pv-portfolio__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
}

.pv-portfolio__card-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pv-portfolio__card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pv-portfolio__card:hover .pv-portfolio__card-visual img {
    transform: scale(1.1);
}

.pv-portfolio__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    justify-content: flex-end;
}

.pv-portfolio__card-power {
    padding: 6px 14px;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 6px;
}

.pv-portfolio__card-info {
    padding: 20px;
}

.pv-portfolio__card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pv-portfolio__card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pv-portfolio__card-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #f59e0b;
    padding: 4px 10px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
}

.pv-portfolio__card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pv-portfolio__card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #64748b;
}

.pv-portfolio__card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pv-portfolio__card-meta span::before {
    content: '•';
    color: #10b981;
    font-weight: 700;
}

.pv-portfolio__card-meta span:first-child::before {
    display: none;
}

/* Stats */
.pv-portfolio__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.pv-portfolio__stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #f59e0b, #10b981);
}

.pv-portfolio__stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.pv-portfolio__stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.pv-portfolio__stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(245, 158, 11, 0.2));
    border-radius: 12px;
    flex-shrink: 0;
}

.pv-portfolio__stat-icon img {
    width: 32px;
    height: 32px;
}

.pv-portfolio__stat-data {
    display: flex;
    flex-direction: column;
}

.pv-portfolio__stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.pv-portfolio__stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .pv-portfolio {
        padding: 80px 0;
    }
    .pv-portfolio__featured {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .pv-portfolio__featured-img {
        min-height: 300px;
    }
    .pv-portfolio__featured-content {
        padding: 32px;
    }
    .pv-portfolio__featured-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    .pv-portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pv-portfolio__stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .pv-portfolio {
        padding: 60px 0;
    }
    .pv-portfolio__header {
        margin-bottom: 40px;
    }
    .pv-portfolio__featured {
        margin-bottom: 40px;
    }
    .pv-portfolio__featured-img {
        min-height: 250px;
    }
    .pv-portfolio__featured-content {
        padding: 24px;
    }
    .pv-portfolio__featured-name {
        font-size: 1.3rem;
    }
    .pv-portfolio__featured-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .pv-portfolio__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .pv-portfolio__card-visual {
        height: 180px;
    }
    .pv-portfolio__stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 24px;
    }
    .pv-portfolio__stat {
        padding: 12px;
        gap: 12px;
    }
    .pv-portfolio__stat-icon {
        width: 48px;
        height: 48px;
    }
    .pv-portfolio__stat-icon img {
        width: 28px;
        height: 28px;
    }
    .pv-portfolio__stat-num {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .pv-portfolio {
        padding: 50px 0;
    }
    .pv-portfolio__label {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    .pv-portfolio__title {
        font-size: 1.5rem;
    }
    .pv-portfolio__desc {
        font-size: 1rem;
    }
    .pv-portfolio__featured-content {
        padding: 20px;
    }
    .pv-portfolio__featured-specs {
        gap: 10px;
    }
    .pv-portfolio__spec {
        padding: 12px 6px;
    }
    .pv-portfolio__spec-value {
        font-size: 1rem;
    }
    .pv-portfolio__spec-label {
        font-size: 0.65rem;
    }
    .pv-portfolio__card-info {
        padding: 16px;
    }
    .pv-portfolio__card-name {
        font-size: 1rem;
    }
    .pv-portfolio__stats {
        padding: 20px;
    }
    .pv-portfolio__stat {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
        gap: 10px;
    }
}

@media (max-width: 375px) {
    .pv-portfolio__featured-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    .pv-portfolio__stats {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   Pricing Section
   ======================================== */

.pv-pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 50%, #f8faf9 100%);
    position: relative;
}

.pv-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
}

/* Header */
.pv-pricing__header {
    text-align: center;
    margin-bottom: 40px;
}

.pv-pricing__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pv-pricing__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pv-pricing__desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Trust Badges */
.pv-pricing__badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.pv-pricing__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.3s ease;
}

.pv-pricing__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.pv-pricing__badge img {
    width: 20px;
    height: 20px;
}

/* Package Cards */
.pv-pricing__packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    align-items: stretch;
}

.pv-pricing__package {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.pv-pricing__package:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.12);
}

.pv-pricing__package--featured {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid #10b981;
    transform: scale(1.05);
    z-index: 1;
}

.pv-pricing__package--featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pv-pricing__package-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pv-pricing__package-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.pv-pricing__package--featured .pv-pricing__package-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pv-pricing__package-type {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.pv-pricing__package--featured .pv-pricing__package-type {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.pv-pricing__package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.pv-pricing__package--featured .pv-pricing__package-name {
    color: #ffffff;
}

.pv-pricing__package-for {
    font-size: 0.9rem;
    color: #64748b;
}

.pv-pricing__package--featured .pv-pricing__package-for {
    color: rgba(255, 255, 255, 0.6);
}

/* Package Price */
.pv-pricing__package-price {
    text-align: center;
    margin-bottom: 28px;
}

.pv-pricing__package-from {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}

.pv-pricing__package--featured .pv-pricing__package-from {
    color: rgba(255, 255, 255, 0.5);
}

.pv-pricing__package-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pv-pricing__package-currency {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pv-pricing__package-vat {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 4px;
}

.pv-pricing__package--featured .pv-pricing__package-vat {
    color: rgba(255, 255, 255, 0.5);
}

/* Package Features */
.pv-pricing__package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.pv-pricing__package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #334155;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pv-pricing__package--featured .pv-pricing__package-features li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.pv-pricing__package-features li:last-child {
    border-bottom: none;
}

.pv-pricing__package-features li img {
    flex-shrink: 0;
}

/* Package Button */
.pv-pricing__package-btn {
    display: block;
    text-align: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f8faf9, #f0f7f4);
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.pv-pricing__package-btn:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.pv-pricing__package-btn--primary {
    background: linear-gradient(135deg, #10b981, #f59e0b);
    color: #ffffff;
    border: none;
}

.pv-pricing__package-btn--primary:hover {
    background: linear-gradient(135deg, #059669, #d97706);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

/* Addons Section */
.pv-pricing__addons {
    margin-bottom: 40px;
}

.pv-pricing__addons-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.pv-pricing__addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pv-pricing__addon {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.pv-pricing__addon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.15);
}

.pv-pricing__addon--highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(245, 158, 11, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.pv-pricing__addon-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
}

.pv-pricing__addon-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 12px;
    flex-shrink: 0;
}

.pv-pricing__addon-info {
    flex: 1;
}

.pv-pricing__addon-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.pv-pricing__addon-desc {
    font-size: 0.85rem;
    color: #64748b;
}

.pv-pricing__addon-price {
    text-align: right;
}

.pv-pricing__addon-from {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
}

.pv-pricing__addon-amount {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Funding Box */
.pv-pricing__funding {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.25);
}

.pv-pricing__funding-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    flex-shrink: 0;
}



.pv-pricing__funding-content {
    flex: 1;
}

.pv-pricing__funding-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.pv-pricing__funding-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.pv-pricing__funding-amount {
    text-align: right;
}

.pv-pricing__funding-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.pv-pricing__funding-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

/* Notice */
.pv-pricing__notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(100, 116, 139, 0.08);
    border-radius: 12px;
    margin-bottom: 40px;
}

.pv-pricing__notice img {
    flex-shrink: 0;
    margin-top: 2px;
}

.pv-pricing__notice p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.pv-pricing__notice strong {
    color: #334155;
}

/* CTA */
.pv-pricing__cta {
    text-align: center;
}

.pv-pricing__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.3);
}

.pv-pricing__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.4);
}

.pv-pricing__cta-btn img {
    filter: brightness(0) invert(1);
}

.pv-pricing__cta-note {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
    .pv-pricing {
        padding: 80px 0;
    }
    .pv-pricing__packages {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .pv-pricing__package--featured {
        transform: none;
        order: -1;
    }
    .pv-pricing__package--featured:hover {
        transform: translateY(-8px);
    }
    .pv-pricing__addons-grid {
        grid-template-columns: 1fr;
    }
    .pv-pricing__funding {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .pv-pricing__funding-amount {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pv-pricing {
        padding: 60px 0;
    }
    .pv-pricing__header {
        margin-bottom: 32px;
    }
    .pv-pricing__badges {
        gap: 12px;
        margin-bottom: 40px;
    }
    .pv-pricing__badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .pv-pricing__packages {
        margin-bottom: 40px;
    }
    .pv-pricing__package {
        padding: 28px;
    }
    .pv-pricing__package-amount {
        font-size: 2.5rem;
    }
    .pv-pricing__addon {
        flex-wrap: wrap;
        gap: 12px;
    }
    .pv-pricing__addon-info {
        flex: 1 1 calc(100% - 80px);
    }
    .pv-pricing__addon-price {
        flex: 1 1 100%;
        text-align: left;
        padding-left: 72px;
    }
    .pv-pricing__funding {
        padding: 24px;
    }
    .pv-pricing__funding-title {
        font-size: 1.15rem;
    }
    .pv-pricing__funding-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pv-pricing {
        padding: 50px 0;
    }
    .pv-pricing__label {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    .pv-pricing__title {
        font-size: 1.5rem;
    }
    .pv-pricing__badge {
        width: 100%;
        justify-content: center;
    }
    .pv-pricing__package {
        padding: 24px;
    }
    .pv-pricing__package-name {
        font-size: 1.25rem;
    }
    .pv-pricing__package-amount {
        font-size: 2.2rem;
    }
    .pv-pricing__addon-price {
        padding-left: 0;
    }
    .pv-pricing__cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
}

@media (max-width: 375px) {
    .pv-pricing__package-features li {
        font-size: 0.9rem;
    }
    .pv-pricing__funding-icon {
        width: 56px;
        height: 56px;
    }
}


/* ========================================
   Warranty Section
   ======================================== */

.pv-warranty {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 50%, #f0f7f4 100%);
    position: relative;
    overflow: hidden;
}

.pv-warranty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
}

/* Header */
.pv-warranty__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pv-warranty__label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pv-warranty__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pv-warranty__desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Layout */
.pv-warranty__layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Certificate */
.pv-warranty__certificate {
    position: sticky;
    top: 100px;
}

.pv-warranty__cert-inner {
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.1);
}

.pv-warranty__cert-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(245, 158, 11, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pv-warranty__certificate:hover .pv-warranty__cert-inner::before {
    opacity: 1;
}

.pv-warranty__cert-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.pv-warranty__cert-badge img {
    filter: brightness(0) invert(1);
}

.pv-warranty__cert-years {
    margin-bottom: 16px;
}

.pv-warranty__cert-num {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pv-warranty__cert-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 8px;
}

.pv-warranty__cert-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.pv-warranty__cert-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 28px;
}

.pv-warranty__cert-seal {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    animation: rotateSeal 20s linear infinite;
}

@keyframes rotateSeal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pv-warranty__cert-seal img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 15px rgba(16, 185, 129, 0.2));
}

.pv-warranty__cert-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    font-size: 0.85rem;
    color: #64748b;
}

/* Features */
.pv-warranty__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pv-warranty__feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pv-warranty__feature:hover {
    background: #ffffff;
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
    transform: translateX(8px);
}

.pv-warranty__feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 14px;
    flex-shrink: 0;
}

.pv-warranty__feature-content {
    flex: 1;
}

.pv-warranty__feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.pv-warranty__feature-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.pv-warranty__feature-years {
    flex-shrink: 0;
    padding: 10px 18px;
    background: linear-gradient(135deg, #10b981, #f59e0b);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

/* Trust Bar */
.pv-warranty__trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    z-index: 2;
}

.pv-warranty__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pv-warranty__trust-item:hover {
    color: #10b981;
}

/* Responsive */
@media (max-width: 1024px) {
    .pv-warranty {
        padding: 80px 0;
    }
    .pv-container {
        padding: 0 20px;
    }
    .pv-warranty__header {
        margin-bottom: 50px;
    }
    .pv-warranty__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pv-warranty__certificate {
        position: static;
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pv-warranty {
        padding: 70px 0;
    }
    .pv-warranty__header {
        margin-bottom: 40px;
    }
    .pv-warranty__title {
        font-size: 1.75rem;
    }
    .pv-warranty__desc {
        font-size: 1rem;
    }
    .pv-warranty__cert-inner {
        padding: 32px 24px;
    }
    .pv-warranty__cert-num {
        font-size: 5rem;
    }
    .pv-warranty__cert-seal {
        width: 80px;
        height: 80px;
    }
    .pv-warranty__feature {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    .pv-warranty__feature-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto;
    }
    .pv-warranty__feature-years {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .pv-warranty__feature-content {
        padding-left: 0;
    }
    .pv-warranty__trust {
        gap: 20px;
        margin-top: 40px;
        padding-top: 32px;
    }
    .pv-warranty__trust-item {
        flex: 1 1 calc(50% - 10px);
        font-size: 0.875rem;
    }
}

@media (max-width: 600px) {
    .pv-warranty {
        padding: 60px 0;
    }
    .pv-container {
        padding: 0 16px;
    }
    .pv-warranty__header {
        margin-bottom: 36px;
    }
    .pv-warranty__label {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    .pv-warranty__title {
        font-size: 1.5rem;
    }
    .pv-warranty__desc {
        font-size: 0.95rem;
    }
    .pv-warranty__cert-inner {
        padding: 28px 20px;
    }
    .pv-warranty__cert-badge {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    .pv-warranty__cert-num {
        font-size: 4.5rem;
    }
    .pv-warranty__cert-text {
        font-size: 1.3rem;
    }
    .pv-warranty__cert-seal {
        width: 70px;
        height: 70px;
    }
    .pv-warranty__feature {
        padding: 20px 18px;
    }
    .pv-warranty__feature-icon {
        width: 48px;
        height: 48px;
    }
    .pv-warranty__feature-title {
        font-size: 1.05rem;
    }
    .pv-warranty__feature-text {
        font-size: 0.9rem;
    }
    .pv-warranty__feature-years {
        font-size: 0.9rem;
    }
    .pv-warranty__trust {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .pv-warranty__trust-item {
        flex: 1 1 calc(50% - 8px);
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pv-warranty {
        padding: 50px 0;
    }
    .pv-warranty__title {
        font-size: 1.375rem;
    }
    .pv-warranty__cert-badge {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    .pv-warranty__cert-num {
        font-size: 4rem;
    }
    .pv-warranty__cert-text {
        font-size: 1.2rem;
    }
    .pv-warranty__cert-seal {
        width: 60px;
        height: 60px;
    }
    .pv-warranty__feature {
        padding: 18px 16px;
    }
    .pv-warranty__feature-years {
        top: 16px;
        right: 16px;
    }
    .pv-warranty__trust-item {
        flex: 1 1 100%;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .pv-container {
        padding: 0 14px;
    }
    .pv-warranty__title {
        font-size: 1.25rem;
    }
    .pv-warranty__desc {
        font-size: 0.875rem;
    }
    .pv-warranty__cert-inner {
        padding: 24px 16px;
    }
    .pv-warranty__feature {
        padding: 16px 14px;
    }
    .pv-warranty__feature-title {
        font-size: 1rem;
    }
    .pv-warranty__feature-text {
        font-size: 0.85rem;
    }
}
