* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
            color: #e4e4e4;
            line-height: 1.6;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            padding: 40px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 40px;
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .tagline {
            color: #888;
            font-size: 1.1rem;
        }
        
        .badge {
            display: inline-block;
            background: rgba(0, 212, 170, 0.15);
            color: #00d4aa;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 15px;
            border: 1px solid rgba(0, 212, 170, 0.3);
        }
        
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00d4aa;
        }
        
        .stat-label {
            font-size: 0.75rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Progress bar */
        .progress-container {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            height: 8px;
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #00d4aa, #00a8cc);
            border-radius: 10px;
            transition: width 0.5s ease;
        }
        
        .progress-text {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        /* Quiz card */
        .quiz-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .question-number {
            color: #00d4aa;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .question-text {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #fff;
        }
        
        .question-help {
            background: rgba(0, 168, 204, 0.1);
            border-left: 3px solid #00a8cc;
            padding: 12px 16px;
            margin-bottom: 25px;
            font-size: 0.9rem;
            color: #aaa;
            border-radius: 0 8px 8px 0;
        }
        
        .question-help a {
            color: #00a8cc;
            text-decoration: none;
        }
        
        /* Options */
        .options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .option {
            background: rgba(255,255,255,0.03);
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 18px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .option:hover {
            background: rgba(0, 212, 170, 0.1);
            border-color: rgba(0, 212, 170, 0.3);
            transform: translateX(5px);
        }
        
        .option.selected {
            background: rgba(0, 212, 170, 0.15);
            border-color: #00d4aa;
        }
        
        .option-radio {
            width: 24px;
            height: 24px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }
        
        .option.selected .option-radio {
            border-color: #00d4aa;
            background: #00d4aa;
        }
        
        .option.selected .option-radio::after {
            content: '✓';
            color: #1a1a2e;
            font-weight: bold;
            font-size: 14px;
        }
        
        .option-text {
            font-size: 1.05rem;
        }
        
        .option-subtext {
            font-size: 0.85rem;
            color: #888;
            margin-top: 4px;
        }
        
        /* Buttons */
        .buttons {
            display: flex;
            gap: 15px;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-secondary {
            background: rgba(255,255,255,0.1);
            color: #e4e4e4;
        }
        
        .btn-secondary:hover {
            background: rgba(255,255,255,0.15);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
            color: #1a1a2e;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
        }
        
        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }
        
        .btn-small {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid rgba(0, 212, 170, 0.5);
            color: #00d4aa;
        }
        
        .btn-outline:hover {
            background: rgba(0, 212, 170, 0.1);
        }
        
        /* Results */
        .results-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 40px;
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .results-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .results-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        
        .results-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .results-subtitle {
            color: #888;
            font-size: 1.1rem;
        }
        
        /* Action buttons row */
        .action-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .obligation-section {
            margin-bottom: 30px;
        }
        
        .obligation-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .obligation-title .year {
            background: rgba(0, 212, 170, 0.2);
            color: #00d4aa;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        
        .obligation-title .year.warning {
            background: rgba(255, 193, 7, 0.2);
            color: #ffc107;
        }
        
        .checklist {
            list-style: none;
        }
        
        .checklist li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .checklist li:last-child {
            border-bottom: none;
        }
        
        .check-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 14px;
        }
        
        .check-icon.required {
            background: rgba(255, 107, 107, 0.2);
            color: #ff6b6b;
        }
        
        .check-icon.optional {
            background: rgba(0, 212, 170, 0.2);
            color: #00d4aa;
        }
        
        .check-icon.info {
            background: rgba(0, 168, 204, 0.2);
            color: #00a8cc;
        }
        
        .check-icon.done {
            background: rgba(0, 212, 170, 0.2);
            color: #00d4aa;
        }
        
        .check-content strong {
            display: block;
            margin-bottom: 4px;
        }
        
        .check-content span {
            color: #888;
            font-size: 0.9rem;
        }
        
        .check-content a {
            color: #00a8cc;
            text-decoration: none;
        }
        
        .check-content a:hover {
            text-decoration: underline;
        }
        
        /* Cost estimate */
        .cost-estimate {
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
        }
        
        .cost-title {
            font-weight: 600;
            color: #ffc107;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .cost-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 10px;
            font-size: 0.9rem;
        }
        
        .cost-item {
            display: contents;
        }
        
        .cost-item span:last-child {
            text-align: right;
            color: #fff;
        }
        
        .cost-total {
            border-top: 1px solid rgba(255, 193, 7, 0.3);
            padding-top: 10px;
            margin-top: 10px;
            font-weight: 600;
        }
        
        /* Summary box */
        .summary-box {
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.2);
            border-radius: 12px;
            padding: 25px;
            margin-top: 30px;
        }
        
        .summary-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: #00d4aa;
        }
        
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }

/* Landing page styles */
.landing-hero {
    text-align: center;
    padding: 40px 20px 20px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.skip-intro {
    border-color: rgba(255,255,255,0.25);
    color: #e4e4e4;
}

.skip-intro:hover {
    border-color: rgba(0, 212, 170, 0.6);
    background: rgba(0, 212, 170, 0.08);
}

.landing-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 25px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.landing-section {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
}

.landing-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #00d4aa;
}

.landing-section p {
    color: #bbb;
    margin-bottom: 15px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.info-card {
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 12px;
    padding: 25px;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.info-card p {
    font-size: 0.95rem;
    color: #999;
    margin: 0;
}

.affected-list {
    list-style: none;
    padding: 0;
}

.affected-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #bbb;
}

.affected-list li:last-child {
    border-bottom: none;
}

.note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
    font-size: 0.95rem;
}

/* Timeline simple */
.timeline-simple {
    margin: 25px 0;
}

.timeline-item-simple {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-left: 2px solid rgba(255,255,255,0.1);
    padding-left: 25px;
    margin-left: 10px;
    position: relative;
}

.timeline-item-simple::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}

.timeline-item-simple.current::before {
    background: #00d4aa;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

.timeline-date-simple {
    min-width: 140px;
    color: #00d4aa;
    font-weight: 600;
}

.timeline-text {
    color: #bbb;
}

/* Benefits */
.benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    background: rgba(0, 212, 170, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.benefit strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.benefit p {
    margin: 0;
    color: #888;
    font-size: 0.95rem;
}

/* CTA */
.landing-cta {
    text-align: center;
    padding: 35px 20px 50px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 12px;
}

.cta-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    background: transparent;
    border: none;
    padding: 20px 0;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #ddd;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: #00d4aa;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 20px;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item a {
    color: #00a8cc;
}

/* Wider profile summary for printing/sharing */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px 18px;
}

.profile-item {
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    color: #e4e4e4;
}

.profile-item strong {
    color: #fff;
}
        
        .summary-item {
            text-align: center;
        }
        
        .summary-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }
        
        .summary-label {
            color: #888;
            font-size: 0.85rem;
        }
        
        /* Timeline */
        .timeline {
            margin: 30px 0;
            position: relative;
            padding-left: 30px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(255,255,255,0.1);
        }
        
        .timeline-item {
            position: relative;
            padding-bottom: 25px;
        }
        
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        
        .timeline-dot {
            position: absolute;
            left: -26px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #00d4aa;
            border: 3px solid #1a1a2e;
        }
        
        .timeline-dot.future {
            background: #444;
        }
        
        .timeline-date {
            font-size: 0.85rem;
            color: #00d4aa;
            margin-bottom: 5px;
        }
        
        .timeline-content {
            font-size: 0.95rem;
        }
        
        /* Links section */
        .links-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .links-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
        }
        
        .link-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 20px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .link-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(0, 212, 170, 0.3);
            transform: translateY(-3px);
        }
        
        .link-card-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .link-card-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: #00d4aa;
        }
        
        .link-card-desc {
            font-size: 0.85rem;
            color: #888;
        }
        
        /* Not obligated state */
        .not-obligated {
            text-align: center;
            padding: 60px 40px;
        }
        
        .not-obligated .results-icon {
            color: #00d4aa;
        }
        
        .not-obligated p {
            color: #888;
            max-width: 500px;
            margin: 0 auto 30px;
        }
        
        /* Share modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-overlay.active {
            display: flex;
        }
        
        .modal {
            background: #1a1a2e;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
        }
        
        .modal-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .modal-close {
            float: right;
            background: none;
            border: none;
            color: #888;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .share-url {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .share-url input {
            flex: 1;
            padding: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 0.9rem;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .share-btn {
            flex: 1;
            min-width: 100px;
            padding: 12px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        
        .share-btn.facebook { background: #1877f2; color: white; }
        .share-btn.twitter { background: #1da1f2; color: white; }
        .share-btn.linkedin { background: #0077b5; color: white; }
        .share-btn.whatsapp { background: #25d366; color: white; }
        
        .share-btn:hover {
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 60px;
        }

        /* Feedback */
        .feedback-box {
            margin-top: 25px;
            text-align: left;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 18px;
        }

        .feedback-title {
            font-weight: 700;
            color: #e4e4e4;
            margin-bottom: 6px;
        }

        .feedback-row {
            margin-bottom: 12px;
        }

        .feedback-label {
            display: block;
            font-size: 0.85rem;
            margin-bottom: 6px;
            color: #aaa;
        }

        .feedback-input {
            width: 100%;
            padding: 10px 12px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 0.95rem;
            outline: none;
        }

        .feedback-input:focus {
            border-color: rgba(0, 212, 170, 0.5);
        }

        /* Star rating */
        .star-rating {
            display: inline-flex;
            flex-direction: row-reverse;
            gap: 6px;
            user-select: none;
        }

        .star-rating input {
            position: absolute;
            opacity: 0;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .star-rating label {
            font-size: 1.6rem;
            line-height: 1;
            color: rgba(255,255,255,0.25);
            cursor: pointer;
            transition: transform 0.12s ease, color 0.12s ease;
        }

        /* Fill stars up to selected */
        .star-rating input:checked ~ label {
            color: #ffc107;
        }

        /* Hover preview (desktop) */
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffdf6a;
            transform: translateY(-1px);
        }

        /* Keyboard focus */
        .star-rating input:focus-visible + label {
            outline: 2px solid rgba(0, 212, 170, 0.6);
            outline-offset: 3px;
            border-radius: 6px;
        }

        /* Make select dropdown readable in dark theme */
        #feedback-role {
            background-color: #1a1a2e;
            color: #e4e4e4;
        }

        #feedback-role option {
            background-color: #1a1a2e;
            color: #e4e4e4;
        }

        .feedback-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        #feedback-status {
            min-height: 18px;
        }
        
        footer a {
            color: #00d4aa;
            text-decoration: none;
        }
        
        .disclaimer {
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
            font-size: 0.85rem;
            color: #ffc107;
        }
        
        .ecosystem-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .ecosystem-link {
            padding: 8px 16px;
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        /* Print styles */
        @media print {
            body {
                background: white;
                color: black;
            }
            
            .quiz-card, .results-card {
                background: white;
                border: 1px solid #ccc;
            }
            
            .btn, .action-buttons, .links-section, footer {
                display: none !important;
            }

            /* Don't print landing content */
            #landing-section {
                display: none !important;
            }
            
            .check-icon {
                border: 1px solid #ccc;
            }

    .profile-item {
        background: white;
        border: 1px solid #ccc;
        color: black;
    }

    .profile-item strong {
        color: black;
    }
        }
        
        /* Responsive */
        @media (max-width: 600px) {
            .quiz-card, .results-card {
                padding: 25px;
            }
            
            .question-text {
                font-size: 1.25rem;
            }
            
            .buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
            
            .stats-bar {
                gap: 15px;
            }
            
            .summary-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .landing-hero h1 {
                font-size: 1.8rem;
            }

            .hero-actions {
                margin-bottom: 10px;
            }

            .landing-section {
                padding: 25px;
            }

            .timeline-item-simple {
                flex-direction: column;
                gap: 5px;
            }

            .timeline-date-simple {
                min-width: auto;
            }
        }
