/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: white;
    min-height: 100vh;
}

/* Override container for landing page */
.landing-page .container {
    background: transparent;
}

/* Blue Header Bar */
.header-bar {
    background: #1976d2;
    color: white;
    padding: 15px 30px;
    margin-bottom: 0;
}

/* Test Container */
.test-container {
    background: white;
    padding: 30px;
}

/* Header */
.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.question-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.category {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.question-number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.timer {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: 'Courier New', monospace;
}

/* Question Section */
.question-section {
    margin-bottom: 30px;
}

.question-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.instruction {
    color: #d32f2f;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.question-image {
    margin: 20px 0;
    text-align: center;
}

.question-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Answers */
.answers-form {
    margin-top: 30px;
}

.answers-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .answers-list {
        grid-template-columns: 1fr;
    }
}

.answer-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.answer-option:hover {
    border-color: #00acc1;
    background: #f0f9fa;
}

.answer-option.selected {
    border-color: #00acc1;
    background: #e0f7fa;
}

.answer-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #00acc1;
}

.answer-text {
    font-size: 16px;
    color: #333;
    flex: 1;
}

/* Navigation Bar */
.navigation-bar {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.nav-btn {
    padding: 12px 24px;
    border: 2px solid #00acc1;
    background: white;
    color: #00acc1;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-btn:hover:not(:disabled) {
    background: #00acc1;
    color: white;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.next-btn {
    background: #00acc1;
    color: white;
}

.next-btn:hover {
    background: #0097a7;
}

/* Results Page */
.results-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.results-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.score-summary {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
}

.score-circle {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: #00acc1;
}

.score-total {
    font-size: 32px;
    color: #666;
}

.score-percentage {
    font-size: 24px;
    margin-top: 10px;
    color: #666;
    font-weight: 500;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.result-item {
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid;
}

.result-item.correct {
    background: #e8f5e9;
    border-color: #4caf50;
}

.result-item.incorrect {
    background: #ffebee;
    border-color: #f44336;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.result-question-num {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.result-status {
    font-weight: 600;
    font-size: 14px;
}

.result-item.correct .result-status {
    color: #4caf50;
}

.result-item.incorrect .result-status {
    color: #f44336;
}

.result-question-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.result-image {
    margin: 15px 0;
    text-align: center;
}

.result-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-answers {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 4px;
}

.result-answers p {
    margin-bottom: 8px;
    font-size: 14px;
}

.result-explanation {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.results-actions {
    text-align: center;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background: #00acc1;
    color: white;
}

.btn-primary:hover {
    background: #0097a7;
}

/* Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #00d4aa;
    text-decoration: none;
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 15px;
    white-space: nowrap;
}

.nav-link:hover {
    background: #f0f0f0;
    color: #00d4aa;
}

/* Landing Page - Option 1: Modern Energetic */
.landing-page {
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 50%, #667eea 100%);
    color: white;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-accent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-supporting {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    display: block;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits li {
    font-size: 18px;
    margin-bottom: 12px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-reassurance {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.btn-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.hero-note {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
}

/* Comparison Section */
.comparison-section {
    background: white;
    padding: 80px 20px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 50px 0 30px;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

.comparison-table th:first-child {
    width: 35%;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
    width: 32.5%;
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 18px 20px;
    font-size: 15px;
    color: #333;
}

.comparison-table td:first-child {
    font-weight: 600;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    text-align: center;
}

.comparison-table td strong {
    color: #00d4aa;
    font-size: 18px;
    font-weight: 700;
}

.comparison-table td strong.official-price {
    color: #e74c3c;
}

.comparison-closing {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-top: 30px;
    color: #00d4aa;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 80px 20px;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

/* How It Works Section */
.how-it-works-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Devices Section */
.devices-section {
    background: white;
    padding: 80px 20px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.device-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
}

.device-item:hover {
    transform: translateY(-5px);
}

.device-icon {
    font-size: 64px;
    margin-bottom: 15px;
    display: block;
}

.device-item p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Categories Section */
.categories-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.category-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.category-label {
    color: #00d4aa;
    font-weight: 700;
}

.category-count {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 20px;
}

/* Pass Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    padding: 80px 20px;
    color: white;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.guarantee-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.guarantee-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.guarantee-details {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
}

.guarantee-text strong {
    font-weight: 700;
    color: #ffeb3b;
}

.guarantee-note {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.testimonial-quote {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

.btn-large {
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.modal-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Payment Section */
.payment-section {
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 50%, #667eea 100%);
    padding: 80px 20px;
    text-align: center;
}

.payment-content {
    max-width: 800px;
    margin: 0 auto;
}

.payment-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.payment-value-heading {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.payment-value-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.payment-value-question {
    font-size: 20px;
    color: #ffeb3b;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.payment-value-question strong {
    font-weight: 700;
}

.payment-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
}

.payment-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.btn-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.btn-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-payment:active {
    transform: translateY(0);
}

.btn-paypal {
    background: linear-gradient(135deg, #003087 0%, #009CDE 100%);
    color: white;
    border-color: #003087;
}

.btn-paypal:hover {
    background: linear-gradient(135deg, #0040a8 0%, #00b0f0 100%);
    border-color: #0040a8;
}

.btn-stripe {
    background: linear-gradient(135deg, #635BFF 0%, #7C3AED 100%);
    color: white;
    border-color: #635BFF;
}

.btn-stripe:hover {
    background: linear-gradient(135deg, #7B6FFF 0%, #8B5CF6 100%);
    border-color: #7B6FFF;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}


.payment-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-icon {
    font-size: 18px;
    line-height: 1;
}

.security-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.payment-note {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.restore-access-link {
    margin-top: 20px;
    font-size: 14px;
}

.restore-access-link a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.restore-access-link a:hover {
    text-decoration: underline;
}

.access-info {
    margin-top: 15px;
    font-size: 14px;
    color: #4caf50;
    font-weight: 500;
}

/* Payment Success Page */
.payment-success {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.payment-success h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.success-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.access-code-box {
    background: #f5f5f5;
    border: 2px dashed #1976d2;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.access-code-box h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.access-code-display {
    font-size: 32px;
    font-weight: bold;
    color: #1976d2;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 2px solid #1976d2;
}

.access-code-note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}

.access-code-instruction {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

.success-actions {
    margin-top: 30px;
}

/* Payment Cancel Page */
.payment-cancel {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.payment-cancel h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.cancel-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cancel-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Restore Access Page */
.restore-access {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.restore-access h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.restore-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.error-message {
    background: rgba(255, 235, 238, 0.9);
    color: #c62828;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
}

.restore-form {
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s;
    text-align: center;
}

.form-control:focus {
    outline: none;
    border-color: #1976d2;
}

.form-help {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
    text-align: center;
}

.restore-actions {
    text-align: center;
    margin-top: 20px;
}

/* Responsive Styles for New Landing Page */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-logo a {
        font-size: 20px;
    }
    
    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-supporting {
        font-size: 16px;
    }
    
    .hero-benefits {
        max-width: 100%;
    }
    
    .hero-benefits li {
        font-size: 16px;
    }
    
    .hero-reassurance {
        font-size: 14px;
    }
    
    .comparison-table-wrapper {
        margin: 30px -20px;
        padding: 0 20px;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
    
    .comparison-table th {
        font-size: 14px;
    }
    
    .comparison-closing {
        font-size: 18px;
    }
    
    .payment-value-heading {
        font-size: 28px;
    }
    
    .payment-value-text {
        font-size: 16px;
    }
    
    .payment-value-question {
        font-size: 18px;
    }
    
    .btn-hero {
        padding: 16px 40px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .benefits-grid,
    .steps-grid,
    .devices-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-section,
    .benefits-section,
    .how-it-works-section,
    .devices-section,
    .categories-section,
    .testimonials-section,
    .guarantee-section,
    .payment-section {
        padding: 60px 20px;
    }
    
    .payment-title {
        font-size: 36px;
    }
    
    .payment-description {
        font-size: 18px;
    }
    
    .payment-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-payment {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .guarantee-title {
        font-size: 36px;
    }
    
    .guarantee-subtitle {
        font-size: 20px;
    }
    
    .guarantee-text {
        font-size: 16px;
    }
    
    .guarantee-note {
        font-size: 14px;
    }
    
    .guarantee-icon {
        font-size: 60px;
    }
    
    .guarantee-details {
        padding: 30px 20px;
    }
    
    .benefit-icon,
    .device-icon {
        font-size: 48px;
    }
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00d4aa;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .site-footer {
        padding: 40px 20px 20px;
    }
    
    .category-icon {
        font-size: 32px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

