/* global-landing.css */

:root {
    /* Wootzoo Global Color Variables (Shared across both pages) */
    --wootzoo-primary: #2AA9E3;
    --wootzoo-secondary: #2B8ED7;
    --wootzoo-accent: #ED1E79;
    --wootzoo-success: #2BD7A2;
    --wootzoo-warning: #F4C32F;
    --wootzoo-dark: #34495e;
    --wootzoo-light: #ecf0f1;
    
    /* Global Font Family Variable (Identical) */
    --bs-body-font-family: Outfit, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

body {
    font-family: var(--bs-body-font-family);
    line-height: 1.6;
    color: var(--wootzoo-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    line-height: 1.2;
}

/* --- Shared Button Styles --- */
.btn {
    display: inline-block;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 800;
    line-height: 18px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 39px;
    border-radius: 999px;
    transition: 0.2s;
}

.btn-xxs {
    padding: 2px 6px;
    font-size: 0.7rem;
    line-height: 1;
    border-radius: 4px;
}
.btn-sm {
    padding: 6px 8px !important;
    font-size: 0.75rem !important;
    line-height: 1;
    border-radius: 4px;
}

.btn-white {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border-width: 3px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
}

.btn-white:hover,
.btn-white:active,
.btn-white:focus {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff !important;
}

.btn-black {
    border: 3px #000000 solid;
    background-color: transparent;
    color: #000000 !important;
}

.btn-black:hover,
.btn-black:active,
.btn-black:focus {
    border-color: #000000;
    background-color: #000000;
    color: #fff !important;
}

/* --- Shared Hero Section Background Pattern --- */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.brand-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.display-title {
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-text {
    color: #fff;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    /* Uses common success/warning colors */
    background: linear-gradient(90deg, var(--wootzoo-success), var(--wootzoo-warning));
    border-radius: 2px;
}

/* --- Shared Benefit Item Styles --- */
.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--wootzoo-success); /* Uses common success color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* --- Shared Form/Card Styles --- */
.demo-form-card {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    /* Border uses a generic primary color for global definition */
    border: 1px solid rgba(42, 169, 227, 0.2); 
    position: relative;
    overflow: hidden;
    height: 100%;
    background: #F8F8F8;
    display: flex;
    flex-direction: column;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--wootzoo-primary);
    box-shadow: 0 0 0 0.2rem rgba(42, 169, 227, 0.25);
}

/* --- Shared Social Proof Styles --- */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.avatar-group {
    display: flex;
    margin-right: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    /* Note: Background is page-specific, this will be overridden */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.avatar:first-child {
    margin-left: 0;
}

.star-rating {
    color: var(--wootzoo-warning);
    font-size: 18px;
}

/* --- Shared Video Section Styles --- */
.video-section {
    color: #000;
    padding: 80px 0;
    background: #f8f9fa;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

/* --- Shared Features Section Styles --- */
.features-section {
    padding: 80px 0;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.feature-icon.blue {
    background: linear-gradient(135deg, var(--wootzoo-primary), var(--wootzoo-secondary));
}

.feature-icon.green {
    background: linear-gradient(135deg, var(--wootzoo-success), #58d68d);
}

.feature-icon.orange {
    background: linear-gradient(135deg, var(--wootzoo-warning), #f7dc6f);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
}
/* Pink Feature Icon for Sylwi Page */
.feature-icon.pink {
    background: linear-gradient(135deg, var(--wootzoo-accent), #f35595);
}

.feature-icon.yellow {
    /* Uses a vibrant yellow starting point and a warmer yellow/gold endpoint */
    background: linear-gradient(135deg, #ffc300, #ffdd57);
}


/* --- Shared CTA Urgency Styles --- */
.urgency-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* --- Shared Utility/Message Styles --- */
.error-message {
    display: none;
    text-align: center;
    padding: 15px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-message.d-none {
    display: none;
}
        
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--wootzoo-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

/* --- Shared Tablet/Mobile Styles --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .display-title {
        font-size: 2.5rem;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .avatar-group {
        justify-content: center;
    }
}

.tablet-bg{
    background-color: #000;
    padding: 15px 5px;
    border: 10px solid #000;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
}

/* Internal link card is only on sylwi-page, but defined globally, so let's keep it here for now */
.internal-link-card {
    display: block;
    text-decoration: none;
    padding: 30px 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 169, 227, 0.1);
    height: 100%;
    color: var(--wootzoo-dark);
}

.internal-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--wootzoo-primary);
    color: var(--wootzoo-dark);
}

.internal-link-card .card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--wootzoo-primary);
    transition: color 0.3s ease;
}

.internal-link-card:hover .card-icon {
    color: var(--wootzoo-accent);
}

.internal-link-card h5 {
    margin-bottom: 10px;
}