/* ============================================
   WEBSITE DESIGN LANDING PAGE
   ============================================ */

/* Hero Section */
.wd-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.wd-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.wd-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.wd-hero-title .highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wd-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.wd-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.wd-hero-ctas .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.wd-hero-ctas .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.wd-hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.trust-item svg {
    color: var(--primary-orange);
}

/* Problem Section */
.wd-problem {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.problem-card {
    background: var(--grey-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: transform var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-4px);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #EF4444;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--grey-900);
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--grey-600);
    line-height: 1.6;
}

/* Solution Section */
.wd-solution {
    padding: var(--section-padding) 0;
    background: var(--grey-100);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.solution-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--grey-900);
}

.solution-card p {
    font-size: 0.9375rem;
    color: var(--grey-600);
    line-height: 1.6;
}

/* What's Included Section */
.wd-included {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--grey-100);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--grey-700);
}

.included-item svg {
    flex-shrink: 0;
    color: var(--primary-blue);
}

/* Pricing Section */
.wd-pricing {
    padding: var(--section-padding) 0;
    background: var(--gradient-hero);
    position: relative;
}

.wd-pricing .section-header .section-title,
.wd-pricing .section-header .section-subtitle {
    color: var(--white);
}

.wd-pricing .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.wd-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.wd-pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: transform var(--transition-normal);
}

.wd-pricing-card:hover {
    transform: translateY(-8px);
}

.wd-pricing-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.wd-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.wd-pricing-card .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.wd-pricing-card .pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.wd-pricing-card .pricing-header p {
    font-size: 0.9375rem;
    color: var(--grey-600);
    margin-bottom: 24px;
}

.wd-pricing-card.featured .pricing-header p {
    color: rgba(255, 255, 255, 0.8);
}

.wd-pricing-card .pricing-price {
    margin-bottom: 32px;
}

.wd-pricing-card .pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.wd-pricing-card .pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.wd-pricing-card .pricing-price .period {
    font-size: 0.9375rem;
    color: var(--grey-500);
    display: block;
    margin-top: 4px;
}

.wd-pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, 0.7);
}

.wd-pricing-card .pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.wd-pricing-card .pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--grey-700);
    border-bottom: 1px solid var(--grey-200);
}

.wd-pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.wd-pricing-card .pricing-features li:last-child {
    border-bottom: none;
}

.wd-pricing-card .pricing-features svg {
    flex-shrink: 0;
    color: var(--primary-blue);
}

.wd-pricing-card.featured .pricing-features svg {
    color: var(--primary-orange);
}

.wd-pricing-card .btn-outline {
    border-color: var(--grey-300);
    color: var(--grey-800);
}

.wd-pricing-card .btn-outline:hover {
    background: var(--grey-100);
    border-color: var(--grey-400);
}

.wd-pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.wd-pricing-card.featured .btn-primary:hover {
    background: var(--grey-100);
}

.wd-pricing-note {
    text-align: center;
    margin-top: 48px;
    color: rgba(255, 255, 255, 0.8);
}

.wd-pricing-note a {
    color: var(--primary-orange-light);
}

/* Process Section */
.wd-process {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-timeline {
    max-width: 700px;
    margin: 60px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--grey-200);
}

.process-step {
    display: flex;
    gap: 32px;
    padding-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-marker {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--grey-900);
}

.process-content p {
    font-size: 1rem;
    color: var(--grey-600);
    line-height: 1.6;
}

/* FAQ Section */
.wd-faq {
    padding: var(--section-padding) 0;
    background: var(--grey-100);
}

/* Contact Section */
.wd-contact {
    padding: var(--section-padding) 0;
    background: var(--gradient-hero);
    position: relative;
}

.wd-contact .section-tag,
.wd-contact .section-title {
    color: var(--white);
}

.wd-contact .contact-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Form Select Styling */
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--grey-800);
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236C757D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 144, 219, 0.1);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .wd-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .wd-pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .wd-pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .wd-hero {
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .wd-hero-title {
        font-size: 2rem;
    }
    
    .wd-hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .wd-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .wd-hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .wd-hero-trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .problem-card {
        padding: 24px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .included-item {
        padding: 14px 16px;
    }
    
    .wd-pricing-card {
        padding: 32px 24px;
    }
    
    .wd-pricing-card .pricing-price .amount {
        font-size: 3rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .process-marker {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .process-content h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .wd-hero {
        padding-top: 130px;
    }
    
    .wd-hero-title {
        font-size: 1.75rem;
    }
    
    .problem-icon {
        width: 56px;
        height: 56px;
    }
    
    .solution-number {
        font-size: 2.5rem;
    }
}
