/* Unlock page specific styles */
:root {
    --color-primary: #011f4b;
    --color-secondary: #03396c;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-gray: #6b7280;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
}

/* Unlock Services Section */
.unlock-services {
    padding: 4rem 0;
    background: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 1.5rem;
    position: relative;
}

.service-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    opacity: 0.8;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    opacity: 0.9;
    font-size: 0.9rem;
}

.service-content {
    padding: 1.5rem;
}

.service-description {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.feature-item i {
    color: var(--color-success);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-price .currency {
    font-size: 1rem;
    vertical-align: super;
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: normal;
}

.service-btn {
    display: block;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.service-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: var(--color-white);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: var(--color-light);
    z-index: 0;
}

.step-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--color-primary);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
    flex-shrink: 0;
}

.step-content {
    margin-left: 2rem;
}

.step-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-description {
    color: var(--color-gray);
    line-height: 1.6;
}

/* FAQ Section */
.unlock-faq {
    padding: 4rem 0;
    background: var(--color-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(1, 31, 75, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--color-gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--color-light);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(1, 31, 75, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.author-device {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 0.9rem;
}

/* Contact Section */
.unlock-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-description {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Device Selector */
.device-selector {
    padding: 3rem 0;
    background: var(--color-white);
}

.selector-container {
    max-width: 800px;
    margin: 0 auto;
}

.selector-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
    font-size: 1.8rem;
}

.selector-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.selector-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.selector-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--color-light);
    z-index: 0;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-light);
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.selector-step.active .step-circle {
    background: var(--color-primary);
    color: var(--color-white);
}

.selector-step.completed .step-circle {
    background: var(--color-success);
    color: var(--color-white);
}

.step-label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.selector-step.active .step-label {
    color: var(--color-primary);
    font-weight: 600;
}

.selector-content {
    background: var(--color-light);
    border-radius: 10px;
    padding: 2rem;
}

.selector-form {
    display: none;
}

.selector-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-prev {
    background: var(--color-light);
    color: var(--color-gray);
    border: 1px solid #e5e7eb;
}

.btn-prev:hover {
    background: #e5e7eb;
}

.btn-next,
.btn-submit {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .selector-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .selector-step:not(:last-child)::after {
        display: none;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
}