:root {
    /* --primary-color: #008669; */
    --primary-color: #24cb61;
    --primary-hover: #93c5fd;
    --secondary-color: #3b82f6;
    --dark-green: #157033;
    --green-on-white: #17823e;
    --accent-color: #ff6000;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    --text-light: #a5aebb;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #2a3646;
    --bg-card: #2a3646;
    --white: #ffffff;
    --border-color: #475569;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(
        135deg,
        var(--dark-green) 0%,
        var(--secondary-color) 100%
    );
    --gradient-secondary: linear-gradient(
        135deg,
        var(--bg-tertiary) 0%,
        var(--bg-primary) 100%
    );
    --gradient-text: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    --gradient-card: linear-gradient(135deg, #3d4d66 0%, #283343 100%);
    --gradient-card-reverse: linear-gradient(135deg, #283343 0%, #3d4d66 100%);
    --border-gradient: linear-gradient(
        var(--primary-color) 0%,
        var(--white) 50%,
        var(--primary-color) 100%
    );
}

@import url(https://fonts.bunny.net/css?family=roboto:400,400i,500,500i,700,700i);

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}
@font-face {
    font-family: "N27 Bold";
    src: url("../webfonts/N27-Bold.woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "N27 Light italic";
    src: url("../webfonts/N27-LightItalic.woff");
    font-weight: normal;
    font-style: italic;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .card-header {
        margin-bottom: 2rem;
    }
}

.card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .card-header h3 {
        font-size: 1.5rem;
    }
}

.card-header p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .card-header p {
        font-size: 0.875rem;
    }
}

.card-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .card-price {
        margin-bottom: 2rem;
    }
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

@media (min-width: 768px) {
    .price {
        font-size: 3rem;
    }
}

.yearly-price.hidden,
.monthly-price.hidden {
    display: none;
}

.period {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 0.25rem;
    display: block;
}

@media (min-width: 768px) {
    .period {
        font-size: 1rem;
    }
}

.card-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .card-features {
        margin-bottom: 2rem;
    }
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-size: 0.8rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .feature {
        font-size: 0.875rem;
    }
}

.feature::before {
    content: "✓";
    color: var(--success-color);
    font-weight: 700;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.feature-disabled {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 1;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .feature-disabled {
        font-size: 0.875rem;
    }
}

.feature-disabled::before {
    content: "✗";
    color: var(--text-light);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.card-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.75rem;
    border: 0.0625rem solid #ffffff;
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-cta.primary {
    background: var(--gradient-primary);
    color: white;
    border-color: #ffffff;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-cta.primary:hover {
    box-shadow: 0 20px 40px rgba(0, 134, 105, 0.3);
}

.pricing-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .pricing-footer {
        margin-top: 3rem;
        font-size: 1rem;
    }
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 4rem 0;
    }
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .final-cta h2 {
        font-size: 3rem;
    }
}

.final-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .final-cta p {
        font-size: 1.25rem;
    }
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .cta-actions {
        flex-direction: row;
        max-width: none;
    }
}

.final-cta .btn-primary {
    background: white;
    color: var(--green-on-white);
}

.final-cta .btn-primary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.final-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.final-cta .btn-secondary:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

/* Footer */
.footer {
    /* background: var(--bg-tertiary); */
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        margin-bottom: 3rem;
        text-align: left;
    }
}

.footer-brand {
    /* max-width: 300px; */
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    padding-top: 0.3rem;
}

@media (min-width: 768px) {
    .footer-brand {
        margin: 0;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: left;
    min-width: 200px;
}

@media (min-width: 768px) {
    .footer-logo {
        gap: 0.75rem;
        justify-content: flex-start;
    }
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
}

@media (min-width: 768px) {
    .footer-logo svg {
        width: 32px;
        height: 32px;
    }
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-brand p {
        font-size: 1rem;
    }
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 0.3rem;
}

@media (min-width: 480px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a,
.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-social {
        gap: 1rem;
    }
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 0.0625rem solid var(--white);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

@media (min-width: 768px) {
    .footer-social a {
        width: 40px;
        height: 40px;
    }
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.mobile-hidden {
    display: none;
}

@media (min-width: 768px) {
    .mobile-hidden {
        display: block;
    }
}

.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: left;
    }
}

/* Accessibility & Focus Styles */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus {
    outline-offset: 4px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-interface {
        transform: none !important;
    }

    .interface-card {
        animation: none !important;
    }

    .step-mockup:hover {
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .navigation,
    .mobile-menu-toggle,
    .final-cta,
    .footer-social {
        display: none;
    }

    .hero,
    .workflow-section,
    .try-section,
    .pricing-section {
        page-break-inside: avoid;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

@media (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Text Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@media (min-width: 768px) {
    .loading::after {
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
    }
}

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

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .reveal {
        transform: translateY(30px);
    }
}

.reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Touch Targets */
@media (max-width: 767px) {
    button,
    a,
    input[type="button"],
    input[type="submit"],
    .clickable {
        min-height: 32px;
        min-width: 44px;
    }
}

/* iOS Safari Input Zoom Prevention */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"] {
        font-size: 16px;
    }
}

/* Enhanced Mobile Styles */
@media (max-width: 767px) {
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 1.125rem 1.5rem;
        font-size: 1.0625rem;
        min-height: 52px;
    }

    .card-cta {
        padding: 1.125rem 1rem;
        font-size: 1.0625rem;
        min-height: 52px;
        font-weight: 700;
    }

    .demo-next {
        padding: 1.125rem;
        font-size: 1.0625rem;
        min-height: 52px;
        font-weight: 700;
    }

    .pricing-cards {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 1.25rem;
    }

    .card-header h3 {
        font-size: 1.375rem;
        font-weight: 800;
    }

    .card-header p {
        font-size: 0.9rem;
        margin-top: 0.375rem;
    }

    .price {
        font-size: 2.75rem;
        font-weight: 900;
        line-height: 1;
    }

    .period {
        font-size: 0.875rem;
        margin-top: 0.375rem;
        font-weight: 500;
    }

    /* Enhanced Mobile Hero */
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-actions {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    /* Section Improvements */
    .value-section {
        padding: 3rem 0;
    }

    .value-item {
        padding: 1.25rem;
    }

    .value-item h3 {
        font-size: 1.1875rem;
        margin-bottom: 0.625rem;
    }

    .value-item p {
        font-size: 0.9375rem;
        line-height: 1.55;
    }

    .workflow-section {
        padding: 3rem 0;
    }

    .workflow-steps {
        gap: 3rem;
    }

    .step-content h3 {
        font-size: 1.1875rem;
        margin-bottom: 0.625rem;
    }

    .step-content p {
        font-size: 0.9375rem;
        line-height: 1.55;
    }

    .try-section {
        padding: 3rem 0;
    }

    .try-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.625rem;
    }

    .try-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        padding: 0 0.75rem;
    }

    .final-cta {
        padding: 3rem 0;
    }

    .final-cta h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        padding: 0 1rem;
    }

    .final-cta p {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        padding: 0 1rem;
    }

    .cta-actions {
        gap: 0.75rem;
        padding: 0 1.5rem;
    }

    /* Footer Mobile Improvements */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    /* .footer-brand {
        max-width: 280px;
    } */

    .footer-brand p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .footer-column h3 {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .footer-column a {
        font-size: 0.8125rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        gap: 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }

    /* Navigation Mobile */
    .nav-container {
        padding: 0.875rem 1rem;
    }

    .nav-brand {
        font-size: 1.125rem;
    }

    .logo {
        width: 26px;
        height: 26px;
    }

    .nav-menu {
        padding: 1.75rem 1rem;
        gap: 1.75rem;
    }

    .nav-links a {
        font-size: 1.0625rem;
        padding: 0.625rem 0;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    /* Demo Mobile */
    .demo-steps {
        padding: 0;
    }

    .demo-step {
        padding: 0.625rem 0.375rem;
        gap: 0.375rem;
        font-size: 0.6875rem;
    }

    .demo-number {
        width: 18px;
        height: 18px;
        font-size: 0.5625rem;
    }

    .demo-screen {
        padding: 1.25rem;
        min-height: 220px;
    }

    .demo-form {
        max-width: 320px;
    }

    .demo-form h3 {
        font-size: 1.0625rem;
        margin-bottom: 0.875rem;
    }

    .input-group {
        margin-bottom: 0.875rem;
    }

    .input-group label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }

    .input-group input {
        padding: 0.8125rem;
        font-size: 0.9375rem;
    }

    /* Skip Links Mobile */
    .skip-link {
        padding: 0.75rem;
        font-size: 0.9375rem;
        top: -48px;
    }

    .skip-link:focus {
        top: 0.75rem;
    }

    /* Loading Mobile */
    .loading::after {
        width: 14px;
        height: 14px;
        margin: -7px 0 0 -7px;
        border-width: 1.5px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0;
    }

    .hero-actions {
        padding: 0;
    }

    .pricing-cards {
        padding: 0 0.875rem;
        gap: 1.75rem;
        max-width: 340px;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .section-header {
        padding: 0 0.875rem;
    }

    .section-header h2 {
        font-size: 1.625rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }

    .try-content {
        padding: 0 0.875rem;
    }

    .try-interface {
        max-width: 340px;
    }

    .demo-screen {
        padding: 1rem;
    }

    .demo-form {
        max-width: 300px;
    }

    .final-cta h2 {
        font-size: 1.625rem;
        padding: 0 0.875rem;
    }

    .final-cta p {
        padding: 0 0.875rem;
    }

    .cta-actions {
        padding: 0 0.875rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .nav-brand {
        font-size: 1rem;
    }

    .brand-text {
        display: none;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .pricing-cards {
        max-width: 300px;
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .demo-form {
        max-width: 280px;
    }

    .completion-summary {
        gap: 1.5rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }

    .hero-visual {
        height: 300px;
    }

    .interface-card {
        transform: scale(0.8);
    }

    .evaluation-card {
        top: 10px;
        left: 5px;
    }

    .declaration-card {
        top: 120px;
        right: 15px;
    }

    .report-card {
        bottom: 40px;
        left: 20px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .interface-card {
        border-width: 0.5px;
    }

    .pricing-card {
        border-width: 1px;
    }
}

/* iPhone SE and similar small screens */
@media (max-width: 375px) and (max-height: 667px) {
    .hero-visual {
        height: 320px;
    }

    /* .pricing-toggle {
        flex-direction: column;
        gap: 0.75rem;
    }

    .toggle-label {
        font-size: 0.8125rem;
    } */
}

/* Button Ripple Effects */
.btn-primary,
.btn-secondary,
.card-cta {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Error Messages */
.error-message {
    color: var(--error-color);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

@media (min-width: 768px) {
    .error-message {
        font-size: 0.875rem;
    }
} /* WCAG Companion Mobile Marketing CSS - COMPLETE VERSION */

/* Skip Links */
.skip-link {
    position: absolute;
    top: -45px;
    left: 0.375rem;
    background: #000;
    color: #fff;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0 0 0.25rem 0.25rem;
    z-index: 10000;
    border: 0.125rem solid #fff;

    /* Simple off-screen positioning */
    transform: translateY(-100%);
    transition: transform 0.2s ease-in-out;
}

.skip-link:focus {
    transform: translateY(0);
    top: 0.375rem;
    outline: 0.1875rem solid #ff6000;
    outline-offset: 0.125rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.75rem;
}
h3 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 3rem;
    }
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 0.0625rem solid #ffffff;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 0.875rem 1.75rem;
    }
}

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

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 134, 105, 0.3);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--white);
    backdrop-filter: blur(10px);
}

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

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    min-height: 56px;
}

/* Navigation */
.navigation {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
}
.brand-text {
    font-size: 1.25rem;
    font-family: "N27 Bold", sans-serif;
    font-weight: 700;
    font-style: normal;
}
footer .brand-text {
    font-size: 1.15rem;
}
.brand-text-italic {
    font-size: 1.25rem;
    font-family: "N27 Light italic";
    font-weight: 300;
    font-style: italic;
}
footer .brand-text-italic {
    font-size: 1.15rem;
}
footer .footer-bottom ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    text-align: left;
}

@media (min-width: 1024px) {
    .nav-brand {
        gap: 0.75rem;
        font-size: 1.25rem;
    }
}

.logo {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
}

@media (min-width: 768px) {
    .logo {
        width: 36px;
        height: 36px;
    }
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 0.0625rem solid var(--border-color);
    border-bottom: 0.0625rem solid var(--border-color);
    padding: 2rem 1rem;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    backdrop-filter: blur(20px);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: 0px 20px 25px 7px rgba(0, 0, 0, 0.8);
}

@media (min-width: 1024px) {
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 0;
        background: transparent;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: none;
        overflow: visible;
    }
}

@media (min-width: 1280px) {
    .nav-menu {
        gap: 3.5rem;
    }
    .nav-brand {
        font-size: 1.5rem;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
    margin-right: 2rem;
}
.nav-links.second {
    margin-right: 0rem;
}

.nav-menu.active .nav-links {
    margin-bottom: 40px;
    margin-right: 0rem;
}
.nav-menu.active .nav-actions a {
    margin: 0 auto;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
    .nav-links {
        flex-direction: row;
        gap: 2rem;
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        margin-right: 0rem;
        gap: 1.5rem;
    }
    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .nav-actions {
        display: none;
    }
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .nav-links a {
        font-size: 1rem;
    }
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    width: 100%;
}

.nav-links.second a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    text-align: center;
}
.nav-links.second i,
.nav-links.second svg {
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .nav-actions {
        flex-direction: row;
        width: auto;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    min-height: 0vh;
    display: flex;
    align-items: center;
}
.homepage .hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 0 6rem;
    }
    .homepage .hero {
        padding: 10rem 0 6rem;
    }
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(59, 130, 246, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(0, 134, 105, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(16, 185, 129, 0.1) 0%,
            transparent 30%
        );
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        text-align: left;
    }
}

.hero-title {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.disclaimer-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .disclaimer-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-visual {
    position: relative;
    height: 400px;
    /* order: -1; */
}

@media (min-width: 768px) {
    .hero-visual {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .hero-visual {
        height: 600px;
        order: 0;
    }
}

/* Floating Interface */
.floating-interface {
    position: relative;
    height: 100%;
    will-change: transform;
}

.interface-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .interface-card {
        border-radius: 1rem;
        padding: 1.5rem;
    }
}

.interface-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.evaluation-card {
    top: 20px;
    left: 10px;
    width: 280px;
    padding: 0;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.declaration-card {
    top: 160px;
    right: 20px;
    width: 240px;
    padding: 0;
    overflow: hidden;
    animation: float 6s ease-in-out infinite 2s;
}

.report-card {
    bottom: 60px;
    left: 30px;
    /* width: 160px; */
    width: 240px;
    padding: 0;
    overflow: hidden;
    animation: float 6s ease-in-out infinite 4s;
}

@media (min-width: 768px) {
    .evaluation-card {
        top: 20px;
        left: 20px;
        width: 280px;
    }
    .declaration-card {
        top: 120px;
        right: 40px;
        width: 240px;
    }
    .report-card {
        bottom: 80px;
        left: 200px;
        width: 240px;
    }
}
@media (max-width: 767px) {
    .hero-visual {
        height: 540px;
    }
    .evaluation-card {
        top: 20px;
        left: 00px;
        width: 280px;
    }
    .declaration-card {
        top: 120px;
        right: 0px;
        width: 240px;
    }
    .report-card {
        bottom: 00px;
        left: 40px;
        width: 240px;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Interface Card Components */
.card-header {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .card-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
}

.card-title {
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .card-title {
        font-size: 0.875rem;
    }
}

.card-progress {
    width: 40px;
    height: 3px;
    background: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-progress {
        width: 60px;
        height: 4px;
    }
}

.progress-indicator {
    width: 75%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: progress-grow 2s ease-out;
}

@keyframes progress-grow {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

.card-status {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.625rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .card-status {
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }
}

.card-score {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .card-score {
        font-size: 1.125rem;
    }
}

.evaluation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .evaluation-item {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
}

.evaluation-item:last-child {
    border-bottom: none;
}

.eval-criterion {
    color: var(--text-secondary);
    font-weight: 500;
}

.eval-status.completed {
    color: var(--success-color);
    font-weight: 500;
}

.eval-status.warning {
    color: var(--warning-color);
    font-weight: 500;
}

.doc-lines {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

@media (min-width: 768px) {
    .doc-lines {
        gap: 0.5rem;
    }
}

.doc-line {
    height: 3px;
    background: var(--bg-secondary);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .doc-line {
        height: 4px;
    }
}

.doc-line.long {
    width: 100%;
}
.doc-line.medium {
    width: 70%;
}
.doc-line.short {
    width: 40%;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 0.375rem;
    height: 40px;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .chart-container {
        gap: 0.5rem;
        height: 60px;
        margin-top: 1rem;
    }
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    min-height: 20%;
    animation: chart-grow 1.5s ease-out;
}

@keyframes chart-grow {
    from {
        height: 0%;
    }
}

/* Value Section */
.value-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
}
.value-section.usp-section {
    padding: 2rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .value-section {
        padding: 4rem 0;
    }
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
    }
}

.value-grid.usp-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    justify-content: space-evenly;
    align-items: center;
}
.value-grid.usp-grid ul {
    list-style-type: none;
    display: contents;
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

@media (max-width: 767px) {
    .value-section.usp-section .container {
        max-width: 350px;
    }
    .value-item {
        padding: 1rem;
    }
    .value-grid {
        gap: 1rem;
    }
    .hero {
        padding: 6rem 0 2rem;
    }
}
.value-grid.usp-grid .value-item {
    padding: 1rem 0;
}
.value-item span {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    gap: 1rem;
    justify-content: left;
    text-align: left;
}

.value-item span img {
    width: 30px;
    height: auto;
}
@media (max-width: 767px) {
    .value-grid.usp-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
    .value-grid.usp-grid .value-item {
        padding: 1rem 0;
    }
}

@media (min-width: 768px) {
    .value-item {
        padding: 2rem;
    }
    .value-grid.usp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .value-grid.usp-grid {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .value-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 1rem;
        margin-bottom: 1.5rem;
    }
}

.value-item:hover .value-icon {
    transform: rotate(0deg) scale(1.1);
}

.value-icon i,
.value-icon svg {
    font-size: 1.25rem;
    color: var(--white);
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--white);
    stroke-width: 2px;
}

/* Lucide icons - global stroke width */
.lucide {
    stroke-width: 1px;
}

@media (min-width: 768px) {
    .value-icon i,
    .value-icon svg {
        font-size: 1.5rem;
    }
}

.value-item h2 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}
.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .value-item h2 {
        margin-bottom: 1rem;
    }
    .value-item p {
        font-size: 1rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        margin-bottom: 1rem;
    }
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 1.25rem;
    }
}

/* Workflow Section */
.workflow-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.workflow-section.declaration-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}
@media (min-width: 768px) {
    .workflow-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .workflow-section {
        padding: 4rem 0;
    }
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .workflow-steps {
        gap: 6rem;
    }
}

@media (min-width: 1024px) {
    .workflow-steps {
        gap: 6rem;
    }
}

.workflow-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

@media (min-width: 1024px) {
    .workflow-step {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.workflow-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* .workflow-step[data-step="2"] {
    grid-template-columns: 1fr;
} */

/* @media (min-width: 1024px) {
    .workflow-step[data-step="2"] {
        grid-template-columns: 1fr 1fr;
    }
    .workflow-step[data-step="2"] .step-visual {
        order: 1;
    }
    .workflow-step[data-step="2"] .step-content {
        order: 2;
    }
} */

.step-visual {
    position: relative;
    perspective: 1000px;
    order: -1;
}

@media (min-width: 1024px) {
    .step-visual {
        order: 0;
    }
}

.step-mockup {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: none;
    transition: transform 0.4s ease;
    border: 1px solid var(--border-color);
    /* max-width: 400px; */
    margin: 0 auto;
}
.step-mockup img,
.interface-card img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    .workflow-section .container {
        max-width: 600px;
    }
}
@media (min-width: 768px) {
    .workflow-section .container {
        max-width: 1000px;
    }
    .workflow-step {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .step-mockup {
        border-radius: 1.5rem;
        max-width: none;
        /* transform: rotateY(-5deg) rotateX(5deg); */
    }
    .workflow-steps .workflow-step:nth-child(1) .step-mockup {
        transform: rotateY(-10deg) rotateX(0deg);
    }
    .workflow-steps .workflow-step:nth-child(2) .step-mockup {
        transform: rotateY(10deg) rotateX(0deg);
        translate: 25px;
    }
    .workflow-steps .workflow-step:nth-child(3) .step-mockup {
        transform: rotateY(-10deg) rotateX(0deg);
    }

    .workflow-steps .workflow-step:nth-child(2) .step-mockup .mockup-screen {
        background: var(--gradient-card-reverse);
    }

    .step-mockup:hover {
        transform: rotateY(-2deg) rotateX(2deg) scale(1.02);
    }
}

@media (min-width: 1024px) {
    .workflow-section .container {
        max-width: 1200px;
    }
}

.mockup-screen {
    padding: 1.5rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
}

.mockup-screen > div {
    text-align: center;
    color: var(--success-color);
}
.mockup-screen i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .mockup-screen {
        padding: 2rem;
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .mockup-screen {
        min-height: 100px;
    }
}

.step-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

@media (min-width: 1024px) {
    .step-content {
        margin: 0;
    }
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 768px) {
    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 767px) {
    .step-mockup {
        max-width: 400px;
    }
    .step-content {
        text-align: center;
    }
    .step-number {
        margin: 0 auto 1rem;
    }
}

@media (min-width: 1024px) {
    .step-number {
        margin: 0 0 1.5rem 0;
    }
}

.step-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .step-content h3 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .step-content p {
        font-size: 1.125rem;
    }
}

/* Workflow Mockup Components */
.form-interface {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 1rem;
}

@media (min-width: 768px) {
    .form-interface {
        border-radius: 1rem;
        padding: 1.5rem;
    }
}

.form-header h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .form-header h4 {
        margin-bottom: 1.5rem;
        font-size: 1.125rem;
    }
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .form-fields {
        gap: 1rem;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

@media (min-width: 768px) {
    .form-field {
        gap: 0.5rem;
    }
}

.field-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .field-label {
        font-size: 0.875rem;
    }
}

.field-input {
    padding: 0.625rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background: var(--bg-card);
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .field-input {
        padding: 0.75rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
    }
}

.field-input.filled {
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.checklist-interface {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 1rem;
}

@media (min-width: 768px) {
    .checklist-interface {
        border-radius: 1rem;
        padding: 1.5rem;
    }
}

.checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .checklist-header {
        margin-bottom: 1.5rem;
    }
}

.checklist-header h4 {
    color: var(--text-primary);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .checklist-header h4 {
        font-size: 1.125rem;
    }
}

.progress-circle {
    position: relative;
    width: 50px;
    height: 50px;
}

@media (min-width: 768px) {
    .progress-circle {
        width: 60px;
        height: 60px;
    }
}

.progress-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring svg {
    width: 50px;
    height: 50px;
}

@media (min-width: 768px) {
    .progress-ring svg {
        width: 60px;
        height: 60px;
    }
}

.progress-ring circle {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 3;
    r: 22;
    cx: 25;
    cy: 25;
}

@media (min-width: 768px) {
    .progress-ring circle {
        stroke-width: 4;
        r: 26;
        cx: 30;
        cy: 30;
    }
}

.progress-ring .progress-fill {
    stroke: var(--primary-color);
    stroke-linecap: round;
    stroke-dasharray: 0, 138;
    animation: progress-ring 2s ease-out 0.5s forwards;
}

@media (min-width: 768px) {
    .progress-ring .progress-fill {
        stroke-dasharray: 0, 163;
    }
}

@keyframes progress-ring {
    to {
        stroke-dasharray: 103, 138;
    }
}

@media (min-width: 768px) {
    @keyframes progress-ring {
        to {
            stroke-dasharray: 122, 163;
        }
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .progress-text {
        font-size: 0.875rem;
    }
}

.criterion-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .criterion-list {
        gap: 0.75rem;
    }
}

.criterion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--bg-card);
    border-radius: 0.375rem;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .criterion-item {
        gap: 1rem;
        padding: 0.75rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
    }
}

.criterion-item.completed {
    border-left: 3px solid var(--success-color);
}

.criterion-item.active {
    border-left: 3px solid var(--primary-color);
    background: rgba(0, 134, 105, 0.05);
}

.criterion-code {
    font-weight: 700;
    color: var(--text-primary);
    min-width: 2.5rem;
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .criterion-code {
        min-width: 3rem;
        font-size: 0.8rem;
    }
}

.criterion-name {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .criterion-name {
        font-size: 0.8rem;
    }
}

.criterion-status {
    font-weight: 700;
    color: var(--success-color);
}

.export-interface {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 1rem;
}

@media (min-width: 768px) {
    .export-interface {
        border-radius: 1rem;
        padding: 1.5rem;
    }
}

.export-header h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .export-header h4 {
        margin-bottom: 1.5rem;
        font-size: 1.125rem;
    }
}

.export-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .export-options {
        gap: 1rem;
    }
}

.export-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .export-option {
        gap: 1rem;
        padding: 1rem;
        border-radius: 0.75rem;
    }
}

.export-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .export-option:hover {
        transform: translateY(-2px);
    }
}

.option-icon {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .option-icon {
        font-size: 1.5rem;
    }
}

.option-text {
    flex: 1;
}

.option-title {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.option-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .option-desc {
        font-size: 0.875rem;
    }
}

.option-action {
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .option-action {
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Try Section */
.try-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

@media (min-width: 768px) {
    .try-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .try-section {
        padding: 8rem 0;
    }
}

.try-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.try-content h2 {
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .try-content h2 {
        margin-bottom: 1rem;
    }
}

.try-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .try-content p {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

.try-interface {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .try-interface {
        border-radius: 1.5rem;
        max-width: 600px;
    }
}

.demo-steps {
    display: flex;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.demo-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .demo-step {
        gap: 0.75rem;
        padding: 1rem;
        font-size: 0.875rem;
    }
}

.demo-step.active {
    background: var(--bg-card);
    border-bottom-color: var(--primary-color);
}

.demo-number {
    width: 20px;
    height: 20px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .demo-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

.demo-step.active .demo-number {
    background: var(--primary-color);
    color: white;
}

.demo-step span {
    font-weight: 500;
    color: var(--text-secondary);
    display: none;
}

@media (min-width: 480px) {
    .demo-step span {
        display: block;
    }
}

.demo-step.active span {
    color: var(--text-primary);
}

.demo-screen {
    padding: 1.5rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .demo-screen {
        padding: 2rem;
        min-height: 300px;
    }
}

.demo-screen.hidden {
    display: none;
}

.demo-form {
    width: 100%;
    max-width: 350px;
}

@media (min-width: 768px) {
    .demo-form {
        max-width: 400px;
    }
}

.demo-form h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .demo-form h3 {
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
    }
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.input-group input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
    min-height: 48px;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.demo-next {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    font-size: 1rem;
}

.demo-next:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.demo-evaluation {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .demo-evaluation {
        max-width: 500px;
    }
}

.demo-evaluation h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .demo-evaluation h3 {
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
    }
}

.criterion-demo {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .criterion-demo {
        border-radius: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.criterion-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .criterion-header {
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

.criterion-id {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .criterion-id {
        padding: 0.25rem 0.75rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
    }
}

.criterion-title {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .criterion-title {
        font-size: 1rem;
    }
}

.criterion-question {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .criterion-question {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
}

.criterion-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .criterion-options {
        gap: 0.75rem;
    }
}

.option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .option {
        gap: 0.75rem;
        padding: 0.75rem;
        border-radius: 0.5rem;
        font-size: 1rem;
    }
}

.option:hover {
    border-color: var(--primary-color);
}

.option input[type="radio"] {
    width: auto;
}

.option span {
    color: var(--text-secondary);
}

.demo-complete {
    text-align: center;
    width: 100%;
}

.demo-complete h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .demo-complete h3 {
        margin-bottom: 2rem;
        font-size: 1.25rem;
    }
}

.completion-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-direction: column;
}

@media (min-width: 480px) {
    .completion-summary {
        flex-direction: row;
        gap: 3rem;
    }
}

@media (min-width: 768px) {
    .completion-summary {
        margin-bottom: 2rem;
    }
}

.summary-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

.report-options {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-direction: column;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 480px) {
    .report-options {
        flex-direction: row;
        max-width: none;
    }
}

@media (min-width: 768px) {
    .report-options {
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

.report-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .report-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.report-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.demo-reset {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    min-height: 40px;
}

@media (min-width: 768px) {
    .demo-reset {
        border-radius: 0.5rem;
        font-size: 0.875rem;
    }
}

.demo-reset:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* PRICING SECTION - MAIN FOCUS */
.pricing-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

@media (min-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .pricing-section {
        padding: 4rem 0;
    }
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}
.toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    cursor: pointer;
}
.billing-toggle .toggle-label {
    transition: all 0.2s ease;
}
.toggle-label.active {
    color: #60a5fa;
    font-weight: 500;
}
button[role="switch"] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background: #3b82f6;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    padding: 0;
}
button[role="switch"][aria-checked="true"] {
    /* background: #3b82f6; */
    border-color: #e2e8f0;
}
button[role="switch"]:focus-visible {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}
.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}
button[role="switch"][aria-checked="true"] .toggle-slider {
    transform: translateX(30px);
}

@media (min-width: 768px) {
    .pricing-toggle {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .pricing-toggle {
        margin-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .toggle-label {
        font-size: 1rem;
    }
}

.discount-badge {
    background: var(--dark-green);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.625rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .discount-badge {
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        font-size: 0.75rem;
    }
}

/* MOBILE-FIRST PRICING CARDS */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1000px;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 768px) {
    .pricing-card {
        border-radius: 1.5rem;
        padding: 2rem;
    }
}

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

@media (min-width: 768px) {
    .pricing-card:hover {
        transform: translateY(-8px);
    }
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .pricing-card.featured {
        transform: scale(1.05);
    }
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

@media (min-width: 768px) {
    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .popular-badge {
        top: -12px;
        padding: 0.5rem 1.5rem;
        border-radius: 1rem;
        font-size: 0.875rem;
    }
}

/* Content Page Styles - Accessibility-focused layout */

/* Content Section */
.content-section {
    padding: 4rem 0 6rem;
    background: var(--bg-primary);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    /* display: grid;
    justify-content: center; */
}

/* Main content column with accessibility-optimized width */
.content-column {
    /* Maximum 85 characters width for optimal readability */
    max-width: 85ch; /* Using 'ch' unit for character-based width control */
    width: 100%;
    background: var(--bg-card);
    border-radius: 1rem;
    margin: 0 auto;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* Typography styles for content */
.content-column h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    line-height: 1.3;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.content-column h2:first-of-type {
    margin-top: 0;
}

.content-column h3 {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
    line-height: 1.4;
}

.content-column h3:first-of-type {
    margin-top: 0;
}

.content-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-column p:last-child {
    margin-bottom: 0;
}

/* Lists styling */
.content-column ul,
.content-column ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-column li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.content-column li:last-child {
    margin-bottom: 0;
}

/* Links within content */
.content-column a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-column a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

.content-column a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Section spacing */
.content-column section {
    margin-bottom: 2.5rem;
}

article section {
    overflow-x: auto;
}

.content-column section:last-child {
    margin-bottom: 0;
}

/* Hero section adjustments for content pages */
.hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}
.homepage .hero .hero-container {
    text-align: left;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
}

.hero-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive design for content pages */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 0;
    }

    .content-column {
        padding: 2.5rem;
    }
    .homepage .hero .hero-container {
        text-align: left;
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 3rem 0 4rem;
    }

    .content-wrapper {
        padding: 0;
    }

    .content-column {
        padding: 2rem;
        border-radius: 0.75rem;
    }

    .content-column h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        margin-top: 2.5rem;
    }

    .content-column h3 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
        margin-top: 1.75rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .content-column {
        padding: 1.5rem;
        margin: 0;
        border-radius: 0.5rem;
    }

    .content-column h2 {
        font-size: 1.375rem;
    }

    .content-column h3 {
        font-size: 1.125rem;
    }

    .content-column p,
    .content-column li {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

/* Print styles for content pages */
@media print {
    .content-section {
        background: white;
        padding: 0;
    }

    .content-column {
        max-width: none;
        background: white;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .content-column h2,
    .content-column h3,
    .content-column p,
    .content-column li {
        color: black;
    }

    .content-column h2 {
        border-bottom-color: #333;
        page-break-after: avoid;
    }

    .content-column h3 {
        page-break-after: avoid;
    }

    .content-column section {
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .content-column {
        border-width: 2px;
        border-color: var(--text-primary);
    }

    .content-column h2 {
        border-bottom-width: 3px;
        border-bottom-color: var(--text-primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .content-column a {
        transition: none;
    }
}

/* tables */

table {
    border-collapse: collapse; /* voorkomt dubbele lijnen */
    /* width: 100%; optioneel: laat de tabel de volle breedte gebruiken */
    width: max-content;
}

table,
th,
td {
    border: 1px solid #ccc; /* dunne grijze lijn */
}

th,
td {
    padding: 8px; /* wat ruimte binnen de cellen */
    text-align: left; /* tekst links uitlijnen */
}

th {
    text-align: left;
    font-weight: 700;
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* important for iOS smooth scroll */
    width: 100%;
}

.table-container table {
    min-width: 300px; /* or whatever prevents squishing */
}

/* Updated Cookie Consent Styles - Non-blocking bottom bar */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary, #1f2937);
    color: white;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: slideUp 0.3s ease;
}

.cookie-consent-bar.show {
    display: block;
}

.cookie-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-bar-text {
    flex: 1;
    min-width: 0;
}

.cookie-bar-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cookie-bar-text p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cookie-bar-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    align-items: center;
}

/* Cookie Preferences Modal (full overlay when opened) */
.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-preferences-modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.cookie-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    z-index: 1;
}

/* Close button for modal */
.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.cookie-modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.cookie-modal-close:focus {
    outline: 2px solid #3b82f6;
    outline-offset: -2px;
}

.cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-modal-title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 3rem; /* Space for close button */
}

.cookie-modal-subtitle {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.cookie-modal-body {
    padding: 1rem 1.5rem;
}

.cookie-modal-description {
    margin: 0 0 1.5rem;
    color: #374151;
    font-size: 0.875rem;
}

.cookie-categories {
    margin-bottom: 1.5rem;
}

.cookie-category {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: #f9fafb;
}

/* Cookie category headers */
.cookie-category-header {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
    color: #1f2937;
}

.cookie-category-header:hover {
    background: #f3f4f6;
}

.cookie-category-header:focus {
    outline: 2px solid #3b82f6;
    outline-offset: -2px;
}

.category-info {
    flex: 1;
}

.category-info strong {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.category-subtitle {
    font-weight: normal;
    font-size: 0.8rem;
    color: #6b7280;
}

.category-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Cookie toggle switches */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
}

.cookie-toggle:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.cookie-toggle.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-toggle.active {
    background: #3b82f6;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active .toggle-slider {
    transform: translateX(20px);
}

.expand-icon {
    transition: transform 0.2s;
    color: #6b7280;
}

.cookie-category.expanded .expand-icon {
    transform: rotate(180deg);
}

.cookie-category-details {
    padding: 0 1rem 1rem;
    display: none;
    font-size: 0.8rem;
    color: #6b7280;
}

.cookie-category.expanded .cookie-category-details {
    display: block;
}

.detected-cookies {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #f3f4f6;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    font-size: 0.75rem;
}

.detected-cookies strong {
    color: #1f2937;
}

/* Info note styling */
.cookie-info-note {
    background: #f3f4f6;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cookie-info-note i {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.cookie-modal-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Button styles */
.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.cookie-btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.cookie-btn-secondary {
    background: white;
    color: #374151;
    border-color: #d1d5db;
}

.cookie-btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.cookie-btn-minimal {
    background: none;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.cookie-btn-minimal:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Compact notification banner for return visits */
.cookie-notification {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: var(--bg-primary, #1f2937);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    font-size: 0.875rem;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-notification.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.cookie-notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-notification-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-notification .cookie-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.cookie-notification .cookie-btn-minimal {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    text-decoration: underline;
}

.cookie-notification .cookie-btn-minimal:hover {
    color: white;
}

/* Better notification styling */
.notification-text {
    flex: 1;
}

.notification-message {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Footer cookie settings link */
.footer-legal-links a[onclick*="showCookieSettings"] {
    color: inherit;
    text-decoration: none;
}

.footer-legal-links a[onclick*="showCookieSettings"]:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-bar-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-preferences-modal {
        padding: 0;
        align-items: flex-end;
    }

    .cookie-modal-content {
        margin: 0;
        max-height: 85vh;
        width: 100%;
        border-radius: 12px 12px 0 0;
        max-width: none;
    }

    .cookie-modal-header {
        padding: 1.5rem 3rem 1rem 1.5rem; /* Extra right padding for close button */
    }

    .cookie-modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-notification {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        border-radius: 12px;
    }

    .cookie-notification-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .cookie-notification-actions {
        justify-content: center;
    }

    /* Make categories more touch-friendly on mobile */
    .cookie-category-header {
        padding: 1.25rem 1rem;
        min-height: 60px;
    }

    .cookie-toggle {
        width: 48px;
        height: 28px;
    }

    .toggle-slider {
        width: 24px;
        height: 24px;
    }

    .cookie-toggle.active .toggle-slider {
        transform: translateX(20px);
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .cookie-modal-content {
        max-width: 90vw;
        margin: 2rem;
    }
}

/* Ensure backdrop is clickable to close on desktop */
@media (min-width: 769px) {
    .cookie-modal-backdrop {
        cursor: pointer;
    }

    .cookie-modal-content {
        cursor: default;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookie-modal-content {
        border: 3px solid #000;
    }

    .cookie-toggle {
        border: 2px solid #000;
    }

    .cookie-modal-close {
        border: 1px solid #000;
    }

    .cookie-consent-bar {
        border-top: 3px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .cookie-preferences-modal,
    .cookie-toggle,
    .expand-icon,
    .cookie-btn {
        transition: none;
    }

    .cookie-notification.show,
    .cookie-consent-bar {
        animation: none;
    }
}

/* Focus-visible support for better keyboard navigation */
.cookie-toggle:focus-visible,
.cookie-category-header:focus-visible,
.cookie-modal-close:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Ensure proper stacking */
.cookie-consent-bar {
    z-index: 9999;
}

.cookie-preferences-modal {
    z-index: 10000;
}

.cookie-modal-close {
    z-index: 10001;
}

/* Screen reader only content */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
