.elementor-29016 .elementor-element.elementor-element-6a1cb5a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* WUP Home Page Styles - WordPress Compatible */
/* Prefixed with 'wup-' to avoid conflicts */

/* Variables */
:root {
    --wup-green: #51d65e;
    --wup-dark: #153939;
    --wup-light: #f0f9ff;
    --wup-gradient-primary: linear-gradient(135deg, #153939 0%, #0f2e2e 100%);
    --wup-gradient-green: linear-gradient(135deg, #51d65e 0%, #3dd65a 100%);
}

/* Container */
.wup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wup-text-highlight {
    color: var(--wup-green);
}

/* Buttons */
.wup-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    line-height: 1;
}

.wup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}

.wup-btn-primary {
    background-color: var(--wup-green);
    color: var(--wup-dark);
}

.wup-btn-primary:hover {
    background-color: var(--wup-dark);
    color: var(--wup-green);
}

.wup-btn-secondary {
    background-color: white;
    color: var(--wup-dark);
    border: 2px solid var(--wup-dark);
}

.wup-btn-secondary:hover {
    background-color: var(--wup-dark);
    color: white;
}

.wup-btn-resource {
    background-color: var(--wup-dark);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.wup-btn-resource:hover {
    background-color: var(--wup-green);
    color: var(--wup-dark);
}

.wup-btn-membership {
    background-color: var(--wup-green);
    color: var(--wup-dark);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.wup-btn-newsletter {
    background-color: var(--wup-dark);
    color: white;
    white-space: nowrap;
}

.wup-btn-newsletter:hover {
    background-color: white;
    color: var(--wup-dark);
}

/* Hero Section */
.wup-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.wup-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('attached_assets/envato-labs-image-edit%20(5)_1751411070342.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.1);
}

.wup-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.wup-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.wup-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
}

.wup-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wup-hero-highlight {
    background: linear-gradient(45deg, #51d65e, #3dd65a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wup-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.wup-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.wup-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.wup-stat-item {
    text-align: center;
}

.wup-stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--wup-green);
    display: inline-block;
}

.wup-stat-suffix {
    color: var(--wup-green);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.wup-stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

/* Features Section */
.wup-features-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white 0%, #f8fafc 100%);
}

.wup-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wup-section-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--wup-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.wup-section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.wup-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.wup-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.wup-feature-card.wup-animate {
    opacity: 1;
    transform: translateY(0);
}

.wup-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.wup-feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--wup-dark);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    color: white;
}

.wup-feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--wup-green);
    border-radius: 50%;
}

.wup-feature-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--wup-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.wup-feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Resources Section */
.wup-resources-section {
    padding: 5rem 0;
    background: white;
}

.wup-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.wup-resource-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.wup-resource-card.wup-animate {
    opacity: 1;
    transform: translateY(0);
}

.wup-resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.wup-resource-image {
    height: 200px;
    overflow: hidden;
}

.wup-resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wup-resource-card:hover .wup-resource-image img {
    transform: scale(1.05);
}

.wup-resource-content {
    padding: 2rem;
}

.wup-resource-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--wup-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--wup-green);
}

.wup-resource-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--wup-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.wup-resource-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Membership Section */
.wup-membership-section {
    padding: 5rem 0;
    position: relative;
    color: white;
    overflow: hidden;
}

.wup-membership-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wup-gradient-primary);
}

.wup-membership-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wup-membership-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.wup-membership-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.wup-membership-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.wup-membership-feature {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.wup-membership-feature.wup-animate {
    opacity: 1;
    transform: translateY(0);
}

.wup-membership-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--wup-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--wup-dark);
}

.wup-membership-feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.wup-membership-feature-desc {
    opacity: 0.8;
    line-height: 1.6;
}

.wup-membership-cta {
    margin-top: 2rem;
}

/* Newsletter Section */
.wup-newsletter-section {
    padding: 5rem 0;
    position: relative;
    color: white;
    overflow: hidden;
}

.wup-newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wup-gradient-green);
}

.wup-newsletter-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.wup-newsletter-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.wup-newsletter-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.wup-newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.wup-form-fields {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wup-newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
    background-color: white;
    color: #333;
}

.wup-newsletter-input::placeholder {
    color: #666;
    opacity: 0.7;
}

.wup-gdpr-field {
    margin-top: 1rem;
    text-align: left;
}

.wup-gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.wup-gdpr-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.wup-gdpr-text {
    line-height: 1.4;
    opacity: 0.9;
}

.wup-form-messages {
    margin-top: 1rem;
}

.wup-form-success {
    background-color: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.wup-form-error {
    background-color: rgba(220,53,69,0.8);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(220,53,69,0.3);
}

/* Animations */
@keyframes wup-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wup-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.wup-animate-on-scroll.wup-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .wup-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wup-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .wup-form-fields {
        flex-direction: column;
    }
    
    .wup-newsletter-input,
    .wup-btn-newsletter {
        width: 100%;
    }
    
    .wup-features-grid,
    .wup-resources-grid {
        grid-template-columns: 1fr;
    }
    
    .wup-membership-features {
        grid-template-columns: 1fr;
    }
    
    .wup-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .wup-hero-content,
    .wup-feature-card,
    .wup-resource-content {
        padding: 1.5rem;
    }
    
    .wup-container {
        padding: 0 0.5rem;
    }
    
    .wup-features-section,
    .wup-resources-section,
    .wup-membership-section,
    .wup-newsletter-section {
        padding: 3rem 0;
    }
}

/* WordPress specific fixes */
.wup-hero-section,
.wup-features-section,
.wup-resources-section,
.wup-membership-section,
.wup-newsletter-section {
    clear: both;
}

/* Prevent theme conflicts */
.wup-hero-section * {
    box-sizing: border-box;
}

/* Focus states for accessibility */
.wup-btn:focus,
.wup-newsletter-input:focus {
    outline: 2px solid var(--wup-green);
    outline-offset: 2px;
}/* End custom CSS */