/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #1e3a8a;
    --accent-color: #2563eb;
    --accent-light: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==================== Header ==================== */
.header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 32px;
    line-height: 1;
}

.logo h1 {
    line-height: 1.2;
    font-size: 18px;
    color: var(--primary-color);
}

.logo small {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 600;
}

.start-btn {
    padding: 10px 24px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

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

/* ==================== Hero Section ==================== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-tagline {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-decoration: none;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-dark);
    white-space: nowrap;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dimension-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.dimension-item {
    position: absolute;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 140px;
}

.dimension-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.dim-power {
    top: 5%;
    left: 0%;
}

.dim-strategy {
    top: 40%;
    right: 0%;
}

.dim-morality {
    bottom: 5%;
    left: 30%;
}

.dim-icon {
    font-size: 40px;
    margin-bottom: 12px;
    line-height: 1;
}

.dim-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.dim-subtitle {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==================== How It Works ==================== */
.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.how-it-works h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    padding: 25px 20px;
}

.step-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
}

.step-icon.arrow {
    font-size: 24px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    min-width: 40px;
}

.step-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== Test Preview ==================== */
.test-preview {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.test-preview h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.preview-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.question-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
}

.question-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

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

.q-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-color);
}

.q-category {
    font-size: 11px;
    font-weight: 700;
    background: #e0f2fe;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 6px;
}

.question-text {
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-dark);
}

.answer-scale {
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

.scale-dot {
    font-size: 20px;
    color: #d1d5db;
    cursor: default;
}

.scale-dot.active {
    color: var(--accent-color);
    font-size: 22px;
}

.cta-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* ==================== Personality Types ==================== */
.personality-types {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.personality-types h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 500;
}

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

.type-card {
    background: white;
    border-radius: 12px;
    padding: 32px 25px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.1);
    border-color: var(--accent-color);
}

.type-icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
    display: block;
}

.type-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.type-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.type-feature {
    font-size: 12px;
    color: var(--accent-color);
    margin-bottom: 14px;
    font-weight: 700;
    padding: 8px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.type-card .desc {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 600;
}

.type-detail {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: auto;
}

/* ==================== Social Proof ==================== */
.social-proof {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.social-proof h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    padding: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    border-radius: 12px;
}

.stat h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat p {
    font-size: 14px;
    opacity: 0.9;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
}

.user-info {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 10px;
}

/* ==================== Fun Facts ==================== */
.fun-facts {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.fun-facts h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 50px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: all 0.3s ease;
}

.fact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.fact-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.fact-text {
    font-size: 14px;
    line-height: 1.8;
}

/* ==================== Comparison ==================== */
.comparison {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.comparison h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comparison-intro {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.comparison-chart {
    max-width: 600px;
    margin: 0 auto;
}

.chart-item {
    margin-bottom: 30px;
    text-align: left;
}

.chart-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.bar-container {
    background-color: var(--bg-light);
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    transition: width 0.5s ease;
}

/* ==================== Final CTA ==================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta h2 span {
    color: #dbeafe;
}

.final-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.large-cta {
    padding: 16px 50px;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.large-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
}

/* ==================== Footer ==================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer-col p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h2 {
        font-size: 40px;
    }

    .hero-visual {
        height: 300px;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .header .container {
        gap: 12px;
    }

    .logo h1 {
        font-size: 18px;
        line-height: 1.2;
    }

    .logo small {
        font-size: 11px;
    }

    .start-btn {
        padding: 9px 18px;
        font-size: 12px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-content h2 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .hero-cta {
        font-size: 15px;
        padding: 12px 28px;
        margin-bottom: 15px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-visual {
        height: 250px;
    }

    .dimension-item {
        width: 120px;
        padding: 18px;
    }

    .dim-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .dim-title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .dim-subtitle {
        font-size: 11px;
    }

    .how-it-works,
    .test-preview,
    .personality-types,
    .social-proof,
    .fun-facts,
    .comparison,
    .final-cta {
        padding: 60px 0;
    }

    .how-it-works h2,
    .test-preview h2,
    .personality-types h2,
    .social-proof h2,
    .fun-facts h2,
    .comparison h2,
    .final-cta h2 {
        font-size: 28px;
        margin-bottom: 35px;
        line-height: 1.3;
    }

    .steps-container {
        flex-direction: column;
        gap: 15px;
    }

    .step-item {
        min-width: 100%;
        padding: 20px 15px;
    }

    .step-icon {
        font-size: 40px;
    }

    .step-icon.arrow {
        transform: rotate(90deg);
        margin: 5px 0;
        font-size: 20px;
    }

    .step-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .step-item p {
        font-size: 12px;
        line-height: 1.6;
    }

    .preview-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .question-card {
        padding: 20px;
    }

    .question-header {
        margin-bottom: 12px;
    }

    .q-number {
        font-size: 18px;
    }

    .q-category {
        font-size: 10px;
        padding: 3px 8px;
    }

    .question-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .scale-dot {
        font-size: 18px;
    }

    .scale-dot.active {
        font-size: 20px;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .types-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .type-card {
        min-height: 300px;
        padding: 25px 20px;
    }

    .type-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .type-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .type-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .type-feature {
        font-size: 11px;
        margin-bottom: 10px;
        padding: 6px 0;
    }

    .type-card .desc {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .type-detail {
        font-size: 12px;
        line-height: 1.6;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat {
        padding: 25px 20px;
    }

    .stat h3 {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .stat p {
        font-size: 12px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial {
        padding: 18px;
        font-size: 12px;
        line-height: 1.7;
    }

    .user-info {
        font-size: 11px;
        margin-top: 8px;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .fact-card {
        padding: 20px;
        min-height: 180px;
    }

    .fact-number {
        font-size: 36px;
        margin-bottom: 8px;
        line-height: 1;
    }

    .fact-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .comparison-chart {
        max-width: 100%;
    }

    .chart-item {
        margin-bottom: 20px;
    }

    .chart-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .bar-container {
        height: 35px;
    }

    .bar {
        font-size: 11px;
        padding-right: 10px;
    }

    .final-cta h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .final-cta p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .large-cta {
        padding: 12px 28px;
        font-size: 14px;
        margin-bottom: 12px;
        width: auto;
    }

    .cta-features {
        gap: 12px;
        font-size: 12px;
    }

    .footer {
        padding: 50px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-col p {
        font-size: 12px;
        line-height: 1.7;
    }

    .footer-col ul li {
        margin-bottom: 6px;
    }

    .footer-col a {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .header .container {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }

    .logo h1 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .logo small {
        font-size: 10px;
    }

    .start-btn {
        padding: 8px 14px;
        font-size: 11px;
        width: 100%;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-container {
        gap: 20px;
    }

    .hero-content h2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-tagline {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .hero-cta {
        font-size: 13px;
        padding: 10px 20px;
        margin-bottom: 12px;
        width: 100%;
    }

    .hero-badges {
        gap: 8px;
    }

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

    .hero-visual {
        height: 200px;
    }

    .dimension-item {
        width: 90px;
        padding: 12px;
    }

    .dim-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .dim-title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .dim-subtitle {
        font-size: 10px;
    }

    .how-it-works,
    .test-preview,
    .personality-types,
    .social-proof,
    .fun-facts,
    .comparison,
    .final-cta {
        padding: 40px 0;
    }

    .how-it-works h2,
    .test-preview h2,
    .personality-types h2,
    .social-proof h2,
    .fun-facts h2,
    .comparison h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .final-cta h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .steps-container {
        flex-direction: column;
        gap: 10px;
    }

    .step-item {
        padding: 15px 12px;
    }

    .step-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .step-icon.arrow {
        transform: rotate(90deg);
        font-size: 16px;
        margin: 3px 0;
    }

    .step-item h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .step-item p {
        font-size: 11px;
        line-height: 1.5;
    }

    .preview-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .question-card {
        padding: 15px;
    }

    .question-header {
        margin-bottom: 10px;
    }

    .q-number {
        font-size: 16px;
    }

    .q-category {
        font-size: 9px;
        padding: 2px 6px;
    }

    .question-text {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .answer-scale {
        gap: 6px;
    }

    .scale-dot {
        font-size: 16px;
    }

    .scale-dot.active {
        font-size: 18px;
    }

    .cta-btn {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
    }

    .types-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .type-card {
        min-height: 280px;
        padding: 20px 15px;
    }

    .type-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .type-card h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .type-subtitle {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .type-feature {
        font-size: 10px;
        margin-bottom: 8px;
        padding: 5px 0;
    }

    .type-card .desc {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .type-detail {
        font-size: 11px;
        line-height: 1.5;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat {
        padding: 20px 15px;
    }

    .stat h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .stat p {
        font-size: 11px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonial {
        padding: 15px;
        font-size: 11px;
        line-height: 1.6;
    }

    .user-info {
        font-size: 10px;
        margin-top: 8px;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fact-card {
        padding: 18px;
        min-height: 160px;
    }

    .fact-number {
        font-size: 32px;
        margin-bottom: 8px;
        line-height: 1;
    }

    .fact-text {
        font-size: 11px;
        line-height: 1.5;
    }

    .comparison {
        padding: 40px 0;
    }

    .comparison h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .comparison-intro {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .comparison-chart {
        max-width: 100%;
    }

    .chart-item {
        margin-bottom: 18px;
    }

    .chart-label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .bar-container {
        height: 32px;
    }

    .bar {
        font-size: 10px;
        padding-right: 8px;
    }

    .final-cta {
        padding: 40px 0;
    }

    .final-cta h2 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .final-cta p {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .large-cta {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 10px;
        width: 100%;
    }

    .cta-features {
        flex-direction: column;
        gap: 6px;
        font-size: 10px;
    }

    .footer {
        padding: 35px 0 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-col p {
        font-size: 11px;
        line-height: 1.6;
    }

    .footer-col ul {
        margin-top: 8px;
    }

    .footer-col ul li {
        margin-bottom: 5px;
    }

    .footer-col a {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 9px;
    }
}

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat {
        padding: 20px;
    }

    .stat h3 {
        font-size: 28px;
    }

    .testimonial {
        font-size: 12px;
    }

    .cta-features {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }

    .large-cta {
        padding: 12px 30px;
        font-size: 14px;
    }

    .preview-container {
        gap: 15px;
    }

    .question-card {
        padding: 18px;
    }

    .q-number {
        font-size: 18px;
    }

    .question-text {
        font-size: 13px;
    }
}
