/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --text: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --card: #ffffff;
    --border: #e5e7eb;
    --success: #10b981;
    --error: #ef4444;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & 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', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Quiz Container */
.quiz-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

/* Screens */
.screen {
    display: none;
    width: 100%;
    max-width: 600px;
    animation: fadeIn 0.3s ease-in-out;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Start Screen */
.start-content {
    background: var(--card);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.start-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.3;
}

.start-content .subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Quiz Screen */
.quiz-header {
    margin-bottom: 40px;
}

.progress-info {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary);
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.quiz-content {
    background: var(--card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.quiz-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text);
    line-height: 1.4;
}

/* Answers Container */
.answers-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-option {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    color: var(--text);
    text-align: left;
    font-weight: 500;
}

.answer-option:hover {
    border-color: var(--primary);
    background-color: rgba(99, 102, 241, 0.05);
    transform: translateX(4px);
}

.answer-option.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.answer-option:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Quiz Footer */
.quiz-footer {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-primary:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

/* Email Gate Screen */
.email-content {
    background: var(--card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.email-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text);
    transition: border-color 0.2s ease-in-out;
    font-family: inherit;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.error-message {
    color: var(--error);
    font-size: 14px;
    margin-bottom: 16px;
    padding: 12px;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Loading Screen */
.loading-content {
    text-align: center;
    padding: 60px 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-content p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Result Screen */
.result-content {
    max-width: 700px;
}

.result-card {
    background: var(--card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.result-card h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.result-profile {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.result-sections {
    margin-bottom: 30px;
}

.result-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.result-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.result-section p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.reflection-questions {
    list-style-position: inside;
    padding-left: 0;
}

.reflection-questions li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.result-cta {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 16px;
    border-radius: 8px;
    margin-top: 30px;
}

.cta-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.email-confirmation {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success);
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* Courses Section */
.courses-section {
    background: var(--card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.courses-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text);
}

.courses-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.course-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s ease-in-out;
}

.course-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.course-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.course-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.universal-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.universal-cta h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.universal-cta p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.universal-cta .btn {
    width: 100%;
}

/* Course Section */
.course-section {
    background: var(--card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.course-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text);
}

.course-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

.course-card.featured h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.course-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 12px;
}

.course-card.featured p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.course-card.featured .btn {
    width: 100%;
    margin-top: 16px;
}

.closing-message {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.closing-message p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

/* Error Screen */
.error-content {
    background: var(--card);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.error-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--error);
}

.error-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 640px) {
    .quiz-container {
        padding: 16px;
    }

    .start-content,
    .quiz-content,
    .email-content,
    .result-card,
    .courses-section,
    .error-content {
        padding: 24px;
    }

    .start-content h1 {
        font-size: 24px;
    }

    .start-content .subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .quiz-content h2 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .email-content h2,
    .courses-section h2 {
        font-size: 20px;
    }

    .result-card h1 {
        font-size: 24px;
    }

    .answer-option {
        padding: 14px;
        font-size: 15px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .courses-list {
        grid-template-columns: 1fr;
    }

    .universal-cta {
        padding: 20px;
    }

    .universal-cta h3 {
        font-size: 18px;
    }

    .universal-cta p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .quiz-container {
        padding: 12px;
    }

    .start-content,
    .quiz-content,
    .email-content,
    .result-card,
    .courses-section,
    .error-content {
        padding: 20px;
        border-radius: 12px;
    }

    .start-content h1 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .start-content .subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .quiz-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .result-card h1 {
        font-size: 20px;
    }

    .result-profile {
        font-size: 14px;
    }

    .answer-option {
        padding: 12px;
        font-size: 14px;
    }

    .btn {
        padding: 11px 18px;
        font-size: 14px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .result-section h3 {
        font-size: 15px;
    }

    .result-section p {
        font-size: 14px;
    }

    .universal-cta h3 {
        font-size: 16px;
    }

    .universal-cta p {
        font-size: 13px;
    }
}

/* Landing Page Container */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg);
}

/* Buttons */
.lp-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

.lp-btn-primary {
    background-color: var(--primary);
    color: white;
}

.lp-btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.lp-btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.lp-hero {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 60px 20px;
    text-align: center;
}

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

.lp-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.2;
}

.lp-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.lp-tagline {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.lp-urgency-banner {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.lp-urgency-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.lp-timer-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.lp-timer {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

.lp-hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Sections */
section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--border);
}

section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
    text-align: center;
}

.lp-section-intro {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* Recognition Section */
.lp-recognition {
    background: var(--bg-light);
}

.lp-recognition-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.lp-recognition-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lp-checkmark {
    font-size: 24px;
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

.lp-recognition-item p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.lp-key-insight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Section */
.lp-solution-intro {
    max-width: 700px;
    margin: 0 auto 32px;
    text-align: center;
}

.lp-solution-intro p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.lp-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.lp-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.lp-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.lp-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.lp-benefits,
.lp-curriculum {
    list-style-position: inside;
    padding-left: 0;
}

.lp-benefits li,
.lp-curriculum li {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.lp-benefits li:before {
    content: "✓ ";
    color: var(--success);
    font-weight: bold;
    margin-right: 8px;
}

.lp-why-works {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.lp-why-works h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.lp-reasons {
    list-style-position: inside;
    padding-left: 0;
}

.lp-reasons li {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.lp-reasons li:before {
    content: "→ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 8px;
}

/* Pricing Section */
.lp-pricing {
    background: var(--bg-light);
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: flex;
    flex-direction: column;
}

.lp-pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.lp-pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.lp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.lp-pricing-header {
    margin-bottom: 20px;
}

.lp-pricing-stars {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.lp-pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.lp-pricing-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.lp-pricing-description {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.lp-pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.lp-pricing-features li {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.lp-pricing-price {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.lp-price-tag {
    display: block;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 4px;
}

.lp-price-original {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.lp-pricing-btn {
    width: 100%;
}

/* Decision Section */
.lp-decision {
    background: white;
}

.lp-decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.lp-decision-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.lp-decision-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.lp-decision-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Closing Section */
.lp-closing {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    text-align: center;
}

.lp-closing h2 {
    color: var(--text);
}

.lp-closing p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.lp-closing-urgency {
    max-width: 500px;
    margin: 0 auto;
}

.lp-urgency-highlight {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

/* Footer */
.lp-footer {
    background: var(--text);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.lp-footer p {
    font-size: 14px;
    margin-bottom: 12px;
}

.lp-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.lp-footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lp-hero h1 {
        font-size: 32px;
    }

    .lp-tagline {
        font-size: 20px;
    }

    section h2 {
        font-size: 28px;
    }

    .lp-two-column {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lp-pricing-card-featured {
        transform: scale(1);
    }

    .lp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .lp-decision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .lp-hero {
        padding: 40px 16px;
    }

    .lp-hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .lp-tagline {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .lp-urgency-banner {
        padding: 16px;
        margin-bottom: 16px;
    }

    .lp-urgency-text {
        font-size: 16px;
    }

    .lp-hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    section {
        padding: 40px 16px;
    }

    section h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .lp-section-intro {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .lp-recognition-item {
        padding: 12px;
        gap: 12px;
    }

    .lp-recognition-item p {
        font-size: 14px;
    }

    .lp-solution-intro p {
        font-size: 16px;
    }

    .lp-badges {
        gap: 8px;
    }

    .lp-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .lp-pricing-card {
        padding: 20px;
    }

    .lp-pricing-card h3 {
        font-size: 18px;
    }

    .lp-pricing-features li {
        font-size: 14px;
    }

    .lp-footer {
        padding: 24px 16px;
    }
}
