/* ==================== HERO SECTION COMPLETE CSS ==================== */
/* Version: 2.0 - Complete Rewrite with New Animation System */

/* ==================== NEW ANIMATION SYSTEM ==================== */

/* Initial Hidden States */
.hero-animate-left,
.hero-animate-right,
.hero-animate-bottom {
    opacity: 0;
    visibility: hidden;
}

/* Slide from Left */
.hero-animate-left {
    transform: translateX(-80px);
}

.hero-animate-left.hero-animated {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s;
}

/* Slide from Right */
.hero-animate-right {
    transform: translateX(80px);
}

.hero-animate-right.hero-animated {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s;
    transition-delay: 0.15s;
}

/* Slide from Bottom */
.hero-animate-bottom {
    transform: translateY(60px);
}

.hero-animate-bottom.hero-animated {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s;
    transition-delay: 0.4s;
}

/* ==================== HERO SECTION BASE ==================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    overflow: hidden;
    flex-direction: column;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 163, 255, 0.08) 0%, transparent 40%);
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 102, 255, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(0, 163, 255, 0.3), transparent);
    background-size: 200% 200%;
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 100% 0%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 80% 20%, 20% 80%;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    padding-top: 60px;
}

/* ==================== HERO BADGE ==================== */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #00A3FF;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 163, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmerBadge 3s infinite;
}

@keyframes shimmerBadge {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hero-badge-icon {
    font-size: 14px;
    line-height: 1;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ==================== HERO TYPOGRAPHY ==================== */

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
    background: linear-gradient(90deg, #00A3FF 0%, #CCE5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    font-weight: 400;
}

/* ==================== HERO STATS ==================== */

.hero-stats {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: relative;
    flex: 0 1 auto;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #CCE5FF;
    line-height: 1;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

/* ==================== HERO CTA BUTTONS ==================== */

.hero-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052CC, #0052CC);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #CCE5FF;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(225, 204, 240, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 204, 240, 0.1), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(225, 204, 240, 0.1);
    color: #ffffff;
    border-color: rgba(225, 204, 240, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 204, 240, 0.2);
}

.btn-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    font-weight: 700;
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
    transform: translateX(3px);
}

/* ==================== HERO TRUST BAR ==================== */

.hero-trust-bar {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-check {
    color: #00A3FF;
    font-size: 12px;
}

/* ==================== HERO VISUAL (CALCULATOR CONTAINER) ==================== */

.hero-visual {
    position: relative;
    perspective: 1500px;
}

.hero-demo-calculator.pwcp-calculator-container.pwcp-modern-design {
    animation: float3D 6s ease-in-out infinite;
    max-width: 450px;
    margin: 0 auto;
    width: calc(100% - 20px);
}

@keyframes float3D {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==================== CALCULATOR STYLES ==================== */

.hero-demo-calculator.pwcp-calculator-container,
.hero-demo-calculator.pwcp-calculator-container * {
    box-sizing: border-box;
    font-size: inherit;
    line-height: inherit;
}

.hero-demo-calculator .pwcp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-demo-calculator .pwcp-hidden {
    display: none;
}

.hero-demo-calculator input[type="text"],
.hero-demo-calculator input[type="number"],
.hero-demo-calculator input[type="email"],
.hero-demo-calculator input[type="radio"],
.hero-demo-calculator input[type="checkbox"],
.hero-demo-calculator input[type="range"],
.hero-demo-calculator textarea,
.hero-demo-calculator select,
.hero-demo-calculator button {
    outline: 0;
    outline-width: 0;
    outline-style: none;
    outline-color: transparent;
    border-style: solid;
}

.hero-demo-calculator.pwcp-calculator-container.pwcp-modern-design {
    max-width: 400px;
    margin: 40px 0 50px 150px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: visible;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Calculator Header */
.hero-demo-calculator .pwcp-calculator-header {
    padding: 32px 24px 24px;
    text-align: center;
    color: white;
    position: relative;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border-radius: 16px 16px 0 0;
}

.hero-demo-calculator .pwcp-calculator-title {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.25px;
    color: #ffffff;
}

.hero-demo-calculator .pwcp-calculator-description {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation Header */
.hero-demo-calculator .pwcp-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #FFFBFE;
    border-bottom: 1px solid #E0E9F2;
}

.hero-demo-calculator .pwcp-prev-btn,
.hero-demo-calculator .pwcp-next-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: none;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
    min-width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    text-decoration: none;
    border: none;
    box-shadow: none;
    text-shadow: none;
    margin: 0;
}

.hero-demo-calculator .pwcp-prev-btn {
    background: #F2F7FA;
    background-color: #F2F7FA;
    background-image: none;
    border: 1px solid #E0E9F2;
    color: #49454F;
}

.hero-demo-calculator .pwcp-prev-btn:hover:not(:disabled) {
    background: #CCE5FF;
    background-color: #CCE5FF;
    border-color: #CCE5FF;
}

.hero-demo-calculator .pwcp-prev-btn:disabled {
    opacity: 0.68;
    cursor: not-allowed;
}

.hero-demo-calculator .pwcp-next-btn {
    background: #0066FF;
    background-color: #0066FF;
    background-image: none;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.hero-demo-calculator .pwcp-next-btn:hover:not(:disabled) {
    background: #0052CC;
    background-color: #0052CC;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.hero-demo-calculator .pwcp-step-counter {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.1px;
    line-height: 1.2;
    color: #0066FF;
}

.hero-demo-calculator .pwcp-current-step {
    font-size: 18px;
    font-weight: 800;
}

/* Form Section */
.hero-demo-calculator .pwcp-form-section {
    padding: 28px 24px;
    position: relative;
    overflow: visible !important;
    padding-bottom: 40px !important;
    margin-bottom: 10px;
}

.hero-demo-calculator .pwcp-field-step {
    width: 100%;
}

.hero-demo-calculator .pwcp-field-question {
    font-size: 16px;
    font-weight: 500;
    color: #1C1B1F;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
}

.hero-demo-calculator .pwcp-field-description {
    text-align: center;
    margin-bottom: 24px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.4;
}

.hero-demo-calculator .pwcp-required-indicator {
    color: #ef4444;
}

.hero-demo-calculator .pwcp-field-container {
    position: relative;
}

/* Radio Buttons */
.hero-demo-calculator .pwcp-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-demo-calculator .pwcp-radio-option {
    position: relative;
    cursor: pointer;
}

.hero-demo-calculator .pwcp-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.hero-demo-calculator .pwcp-radio-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 12px;
    background: #FFFBFE;
    border: 1px solid #E0E9F2;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    color: #272727;
    width: 100%;
    font-size: 13px;
    line-height: 1.4;
}

.hero-demo-calculator .pwcp-radio-option:hover .pwcp-radio-label {
    transform: translateY(-1px);
}

.hero-demo-calculator .pwcp-option-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.hero-demo-calculator .pwcp-radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
}

.hero-demo-calculator .pwcp-radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6b7280;
    opacity: 0;
    transition: opacity 0.2s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-demo-calculator .pwcp-radio-option input[type="radio"]:checked + .pwcp-radio-label {
    background: #0066FF;
    color: white;
    border-color: #0066FF;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.hero-demo-calculator .pwcp-radio-option input[type="radio"]:checked + .pwcp-radio-label .pwcp-radio-circle {
    border-color: white;
}

.hero-demo-calculator .pwcp-radio-option input[type="radio"]:checked + .pwcp-radio-label .pwcp-radio-circle::after {
    opacity: 1;
    background: white;
}

.hero-demo-calculator .pwcp-radio-option input[type="radio"]:checked + .pwcp-radio-label span {
    color: white;
}

/* Checkboxes */
.hero-demo-calculator .pwcp-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-demo-calculator .pwcp-checkbox-option {
    position: relative;
    cursor: pointer;
}

.hero-demo-calculator .pwcp-checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.hero-demo-calculator .pwcp-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 12px;
    background: #FFFBFE;
    border: 1px solid #E0E9F2;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    color: #272727;
    font-size: 17px;
    line-height: 1.4;
}

.hero-demo-calculator .pwcp-checkbox-option:hover .pwcp-checkbox-label {
    transform: translateY(-1px);
}

.hero-demo-calculator .pwcp-checkbox-square {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
    margin-right: 16px;
    border: 2px solid #6b7280;
    background: transparent;
}

.hero-demo-calculator .pwcp-checkbox-square::after {
    content: '✓';
    color: white;
    font-size: 11px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hero-demo-calculator .pwcp-checkbox-option input[type="checkbox"]:checked + .pwcp-checkbox-label {
    background: #0066FF;
    color: white;
    border-color: #0066FF;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.hero-demo-calculator .pwcp-checkbox-option input[type="checkbox"]:checked + .pwcp-checkbox-label .pwcp-checkbox-square {
    background: #0066FF;
    border-color: #0066FF;
}

.hero-demo-calculator .pwcp-checkbox-option input[type="checkbox"]:checked + .pwcp-checkbox-label .pwcp-checkbox-square::after {
    opacity: 1;
}

.hero-demo-calculator .pwcp-checkbox-option input[type="checkbox"]:checked + .pwcp-checkbox-label span {
    color: white;
}

/* Price Tags */
.hero-demo-calculator .pwcp-price-tag {
    background: rgba(0, 102, 255, 1);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.hero-demo-calculator .pwcp-radio-option input[type="radio"]:checked + .pwcp-radio-label .pwcp-price-tag,
.hero-demo-calculator .pwcp-checkbox-option input[type="checkbox"]:checked + .pwcp-checkbox-label .pwcp-price-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Sliders */
.hero-demo-calculator .pwcp-slider-container {
    padding: 0 20px 20px 20px;
    background: transparent;
}

.hero-demo-calculator .pwcp-slider-wrapper {
    position: relative;
    margin: 16px 0;
    height: 14px;
    line-height: 0;
}

.hero-demo-calculator .pwcp-modern-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    height: 14px;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 2;
}

.hero-demo-calculator .pwcp-modern-slider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    background: #E0E9F2;
    border: 0;
    box-shadow: none;
}

.hero-demo-calculator .pwcp-modern-slider::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #E0E9F2;
    border: 0;
    box-shadow: none;
}

.hero-demo-calculator .pwcp-modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    background: #0066FF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-top: -4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero-demo-calculator .pwcp-modern-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.hero-demo-calculator .pwcp-modern-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    background: #0066FF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.hero-demo-calculator .pwcp-slider-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 3px;
    background: #0066FF;
    pointer-events: none;
    z-index: 3;
}

.hero-demo-calculator .pwcp-slider-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.hero-demo-calculator .pwcp-slider-value-container {
    text-align: center;
    background: #0066FF;
    color: white;
    border-radius: 6px;
    min-width: 80px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
}

.hero-demo-calculator .pwcp-slider-value {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: white;
}

.hero-demo-calculator .pwcp-slider-unit {
    font-size: 11px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.hero-demo-calculator .pwcp-slider-range {
    font-size: 12px;
    line-height: 1.2;
    color: #79747E;
    font-weight: 400;
}

.hero-demo-calculator .pwcp-slider-price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hero-demo-calculator .pwcp-price-per-label {
    font-size: 14px;
    color: #79747E;
}

.hero-demo-calculator .pwcp-slider-price {
    font-size: 18px;
    font-weight: 700;
    color: #0066FF;
}

.hero-demo-calculator .pwcp-price-per-unit {
    font-size: 12px;
    color: #79747E;
}

/* Select Dropdown */
.hero-demo-calculator .pwcp-select-container {
    position: relative;
    background: #FFFBFE;
    border: 1px solid #79747E;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
        overflow: visible !important;

}

.hero-demo-calculator .pwcp-select-container:hover {
    background: #CCE5FF;
}

.hero-demo-calculator .pwcp-select-container.active {
    border-color: #0066FF;
    background: #CCE5FF;
}

.hero-demo-calculator .pwcp-select-trigger {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #1C1B1F;
    padding: 16px 40px 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

.hero-demo-calculator .pwcp-select-display {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-demo-calculator .pwcp-select-text {
    flex: 1;
    text-align: left;
}

.hero-demo-calculator .pwcp-select-price {
    background: #0066FF;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
    margin-left: 8px;
}

.hero-demo-calculator .pwcp-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #79747E;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.hero-demo-calculator .pwcp-select-container.active .pwcp-select-arrow {
    color: #0066FF;
    transform: translateY(-50%) rotate(180deg);
}

.hero-demo-calculator .pwcp-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 1px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 300px;
    overflow-y: auto;
    border: none;
}

.hero-demo-calculator .pwcp-select-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-demo-calculator .pwcp-select-option {
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 1.4;
    color: #1C1B1F;
}

.hero-demo-calculator .pwcp-select-option:hover {
    background: rgba(0, 102, 255, 0.5);
    color: #FFFFFF;
}

.hero-demo-calculator .pwcp-select-option.selected {
    background: rgba(0, 102, 255, 0.5);
    color: #FFFFFF;
    font-weight: 500;
}

.hero-demo-calculator .pwcp-select-option .pwcp-option-label {
    color: inherit;
}

.hero-demo-calculator .pwcp-select-hidden-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* File Upload */
.hero-demo-calculator .pwcp-file-upload-container {
    width: 100%;
}

.hero-demo-calculator .pwcp-file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed #E0E9F2;
    border-radius: 12px;
    background: #FFFBFE;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 16px;
}

.hero-demo-calculator .pwcp-file-upload-label:hover {
    border-color: #0066FF;
    background: #F2F7FA;
}

.hero-demo-calculator .pwcp-upload-icon {
    font-size: 48px;
    line-height: 1;
}

.hero-demo-calculator .pwcp-upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.hero-demo-calculator .pwcp-upload-title {
    font-size: 16px;
    font-weight: 500;
    color: #1C1B1F;
}

.hero-demo-calculator .pwcp-upload-subtitle {
    font-size: 13px;
    color: #79747E;
}

.hero-demo-calculator .pwcp-upload-button {
    background: #0066FF;
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.hero-demo-calculator .pwcp-file-upload-label:hover .pwcp-upload-button {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.hero-demo-calculator .pwcp-file-name {
    margin-top: 16px;
    padding: 12px 16px;
    background: #CCE5FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-demo-calculator .pwcp-file-icon {
    color: #0066FF;
    font-weight: bold;
}

.hero-demo-calculator .pwcp-file-text {
    color: #1C1B1F;
    font-size: 14px;
    font-weight: 500;
}

/* Textarea */
.hero-demo-calculator .pwcp-textarea-container {
    width: 100%;
}

.hero-demo-calculator .pwcp-textarea-field {
    width: 100%;
    padding: 16px;
    border: 1px solid #E0E9F2;
    border-radius: 12px;
    background: #FFFBFE;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1C1B1F;
    resize: vertical;
    min-height: 120px;
    transition: all 0.2s ease;
}

.hero-demo-calculator .pwcp-textarea-field:focus {
    outline: none;
    border-color: #0066FF;
    background: #F2F7FA;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.hero-demo-calculator .pwcp-textarea-field::placeholder {
    color: #79747E;
}

.hero-demo-calculator .pwcp-textarea-info {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.hero-demo-calculator .pwcp-char-count {
    font-size: 12px;
    color: #79747E;
}

/* Footer Section */
.hero-demo-calculator .pwcp-footer-section {
    background: linear-gradient(135deg, #CCE5FF 0%, #CCE5FF 100%);
    padding: 24px;
    text-align: center;
    border-radius: 0 0 16px 16px;
}

.hero-demo-calculator .pwcp-price-indicator {
    font-size: 14px;
    line-height: 1.4;
    color: #0066FF;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hero-demo-calculator .pwcp-price-label {
    font-weight: 600;
    color: #0066FF;
    font-size: 14px;
}

.hero-demo-calculator .pwcp-price-amount {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    color: #0066FF;
    margin-left: 0;
}

.hero-demo-calculator .pwcp-progress-bar {
    width: 75%;
    height: 6px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 16px auto;
}

.hero-demo-calculator .pwcp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066FF, #0066FF);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hero-demo-calculator .pwcp-progress-text {
    font-size: 14px;
    line-height: 1.4;
    color: #0066FF;
    margin: 0;
    font-weight: 400;
}

.hero-demo-calculator .pwcp-progress-text strong {
    font-weight: 500;
}

.hero-demo-calculator .pwcp-progress-subtext {
    font-size: 12px;
    line-height: 1.4;
    color: #79747E;
    margin-top: 8px;
}

.hero-demo-calculator .pwcp-completed-required {
    color: #0066FF;
}

/* ==================== SOCIAL PROOF CARDS ==================== */

.hero-social-proof {
    width: 100%;
    max-width: 1400px;
    margin: 100px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.social-proof-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00A3FF, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.proof-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.proof-card:hover::before {
    opacity: 1;
}

.proof-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00A3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.proof-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablet Large and Desktop Small */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .hero-content {
        position: static;
        padding-top: 0;
    }

    .hero {
        padding: 120px 30px 60px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-social-proof {
        margin-top: 80px;
    }

    .social-proof-container {
        gap: 25px;
    }
    
    /* Responsive animations for tablet */
    .hero-animate-left,
    .hero-animate-right {
        transform: translateY(40px);
    }
    
    .hero-animate-left.hero-animated,
    .hero-animate-right.hero-animated {
        transform: translateY(0);
        transition-delay: 0s;
    }
    
    .hero-animate-right.hero-animated {
        transition-delay: 0.2s;
    }
}

/* Tablet Portrait */
@media (max-width: 1200px) and (min-width: 769px) {
    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 20px;
        align-items: flex-start;
    }
    
    .hero-content {
        max-width: 100%;
        padding-top: 40px;
        text-align: left;
    }
    
    .hero h1 {
        font-size: 44px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-stats {
        gap: 25px;
        justify-content: flex-start;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .hero-cta-group {
        justify-content: flex-start;
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 13px 24px;
        font-size: 13px;
    }
    
    .hero-trust-bar {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .hero-demo-calculator.pwcp-calculator-container.pwcp-modern-design {
        margin: 0 auto;
        width: 100%;
        max-width: 380px;
            overflow: visible !important;

    }
    
    .hero-social-proof {
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .social-proof-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .proof-card {
        padding: 30px 20px;
    }
    
    .proof-number {
        font-size: 42px;
    }
    
    .proof-label {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 50px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .hero-stats {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .stat {
        gap: 5px;
    }
    
    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0.4px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 25px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
        justify-content: center;
    }
    
    .hero-trust-bar {
        padding-top: 15px;
        gap: 20px;
        font-size: 12px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .trust-item {
        flex-shrink: 0;
    }

    .hero-demo-calculator.pwcp-calculator-container.pwcp-modern-design {
        border-radius: 16px;
        margin: 10px;
        max-width: none;
    }
    
    .hero-demo-calculator .pwcp-calculator-header {
        border-radius: 16px 16px 0 0;
    }
    
    .hero-demo-calculator .pwcp-footer-section {
        border-radius: 0 0 16px 16px;
    }
    
    .hero-demo-calculator .pwcp-calculator-header,
    .hero-demo-calculator .pwcp-nav-header,
    .hero-demo-calculator .pwcp-form-section,
    .hero-demo-calculator .pwcp-footer-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-demo-calculator .pwcp-calculator-title {
        font-size: 20px;
    }
    
    .hero-demo-calculator .pwcp-field-question {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-demo-calculator .pwcp-radio-label,
    .hero-demo-calculator .pwcp-checkbox-label {
        padding: 14px 16px;
    }
    
    .hero-demo-calculator .pwcp-price-tag {
        font-size: 11px;
        padding: 4px 8px;
        min-width: 70px;
    }
    
    .hero-demo-calculator .pwcp-nav-header {
        flex-direction: row;
        gap: 8px;
    }
    
    .hero-demo-calculator .pwcp-prev-btn,
    .hero-demo-calculator .pwcp-next-btn {
        min-width: 70px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero-demo-calculator .pwcp-price-amount {
        font-size: 16px;
    }
    
    .hero-demo-calculator .pwcp-select-trigger {
        padding: 14px 36px 14px 16px;
        font-size: 15px;
        min-height: 50px;
    }
    
    .hero-demo-calculator .pwcp-select-option {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .hero-demo-calculator .pwcp-slider-container {
        padding: 0 16px 16px 16px;
    }

    .hero-social-proof {
        margin-top: 50px;
        padding: 0 20px;
    }
    
    .social-proof-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .proof-card {
        padding: 25px 15px;
    }
    
    .proof-number {
        font-size: 36px;
    }
    
    .proof-label {
        font-size: 12px;
    }
    
    /* Mobile animations */
    .hero-animate-bottom {
        transform: translateY(40px);
    }
    
    .hero-animate-bottom.hero-animated {
        transition-delay: 0.3s;
    }
}

/* Mobile Small */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 16px;
    }

    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 9px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 13px;
        padding: 12px 20px;
    }
    
    .hero-demo-calculator .pwcp-field-question {
        font-size: 15px;
    }
    
    .hero-demo-calculator .pwcp-price-amount {
        font-size: 15px;
    }

    .social-proof-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-social-proof {
        margin-top: 40px;
    }

    .proof-card {
        padding: 20px 12px;
    }

    .proof-number {
        font-size: 32px;
    }
    
    .proof-label {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-animate-left,
    .hero-animate-right,
    .hero-animate-bottom {
        transform: none;
    }
    
    .hero-animate-left.hero-animated,
    .hero-animate-right.hero-animated,
    .hero-animate-bottom.hero-animated {
        transition: opacity 0.3s ease, visibility 0s;
        transition-delay: 0s;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}