.article-section {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-white);
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
}

.article-section h2+p,
.comparison-section h2+p {
    text-align: center;
}

.article-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
    color: #ddd;
}

.article-section ul,
.article-section ol {
    margin-bottom: 24px;
}

.article-section li {
    margin-bottom: 8px;
    font-weight: 300;
    color: #ddd;
}

.ai-generator-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-white);
}

.form-textarea {
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-family: inherit;
    resize: vertical;
}

.form-controls {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.form-select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    color: white;
    flex: 1;
    min-width: 150px;
}

.credits-count {
    font-size: 14px;
    color: var(--color-gold);
    margin-left: auto;
    display: flex;
    align-items: center;
}

.micro-faq {
    margin-top: 16px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-white);
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.prompt-library {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.prompt-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prompt-card h4 {
    color: var(--color-branded-light);
    margin-bottom: 10px;
}

.prompt-text {
    font-size: 14px;
    color: #ccc;
    font-style: italic;
}

.quote-block {
    border-left: 4px solid var(--color-branded);
    padding-left: 24px;
    font-size: 20px;
    font-style: italic;
    color: #eee;
}

.quote-author {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: #aaa;
    font-style: normal;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 40px;
    font-weight: bold;
    color: var(--color-branded);
    line-height: 1;
}

.step-content h3 {
    margin-top: 0;
}

.update-badge {
    display: inline-block;
    background: rgba(24, 27, 136, 0.4);
    color: #ccc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
}

.gallery-grid.slider-enabled {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-auto-flow: column;
    grid-auto-columns: 70%;
    padding: 10px;
    scroll-padding: 0 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.gallery-grid.slider-enabled .gallery-item {
    scroll-snap-align: center;
    min-width: 0;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid.slider-enabled {
        grid-auto-columns: 30%;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 4vw 30px 4vw;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        min-width: 280px;
        width: 80vw;
        max-width: 400px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .gallery-item figure {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    }

    .gallery-caption {
        margin-top: 12px;
        font-size: 14px;
        opacity: 0.9;
        text-align: center;
        padding: 0 10px;
    }

    .gallery-dots {
        margin-top: 20px;
    }
}

.gallery-item figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

@media (max-width: 900px) {
    .gallery-item img:hover {
        transform: none;
    }
}

@media (max-width: 900px) {
    .block-7 .container {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .gallery-grid {
        width: 100vw;
        margin: 0;
        padding: 10px 0 30px 0;
    }
}

@media (max-width: 900px) {
    .gallery-item {
        width: 80vw;
        max-width: 80vw;
        flex-shrink: 0;
    }
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-caption {
    font-size: 12px;
    color: #aaa;
    margin-top: 8px;
    text-align: center;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-dot.active {
    background-color: var(--color-branded);
}

.toc {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.toc-title {
    font-weight: bold;
    margin-bottom: 12px;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li {
    margin-bottom: 6px;
}

.toc a {
    font-size: 14px;
    color: #ccc;
}

.toc a:hover {
    color: var(--color-branded-light);
}

.block-9__card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.gallery-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s, transform 0.3s;
}

.gallery-dot.active {
    background: var(--color-branded);
    transform: scale(1.3);
}

@media (max-width: 900px) {
    .gallery-dots {
        display: flex;
    }
}

.gallery-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    pointer-events: auto;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.gallery-dot.active {
    background: var(--color-branded);
    transform: scale(1.3);
}

.ai-transparency-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    text-align: center;
    gap: 12px;
}

.ai-update-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(44, 34, 250, 0.3);
    border: 1px solid var(--color-branded);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.ai-tech-note {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0;
    font-weight: 300;
}

.prompt-card.full-width {
    grid-column: 1 / -1;
}

.gallery-item figure {
    aspect-ratio: auto !important;
    overflow: visible !important;
    height: auto !important;
    background: transparent !important;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.gallery-item img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.gallery-caption {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #A0AEC0;
    text-align: left;
    font-weight: 300;
}

@media (max-width: 900px) {
    .block-7 .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
        width: 100%;
        max-width: 100%;
    }

    .gallery-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        gap: 16px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        min-width: 85vw;
        max-width: 85vw;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin: 0 !important;
    }

    .gallery-item figure {
        display: flex;
        flex-direction: column;
        height: 100%;
        margin: 0;
        background: transparent !important;
        aspect-ratio: auto !important;
        overflow: visible !important;
    }

    .gallery-item img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .gallery-caption {
        white-space: normal;
        font-size: 14px !important;
        color: #CBD5E0;
        margin-top: 16px;
        padding: 0 4px;
        text-align: left;
    }
}

.pricing-policy-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-weight: 300;
    color: #ddd;
    font-size: 18px;
    line-height: 1.6;
}

.policy-item {
    margin-bottom: 12px;
}

.policy-item strong {
    color: var(--color-white);
    font-weight: 600;
}

.policy-legal-links {
    margin-top: 16px;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.policy-legal-links a {
    color: var(--color-branded-light);
    text-decoration: underline;
}

.policy-legal-links a:hover {
    color: var(--color-white);
}

.license-glance {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0 24px 0;
}

.license-glance h4 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--color-white);
    text-align: left;
}

.license-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 600px) {
    .license-list {
        grid-template-columns: 1fr 1fr;
    }
}

.license-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
}

.license-list li strong {
    color: var(--color-white);
}

.security-privacy-content {
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
}

.security-privacy-content .policy-item {
    margin-bottom: 16px;
}

.security-privacy-content .policy-item strong {
    color: var(--color-white);
    font-weight: 600;
}

.policy-legal-links {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.policy-legal-links p {
    margin-bottom: 0;
    font-size: 14px;
    color: #aaa;
}

.policy-legal-links a {
    color: var(--color-branded-light);
    text-decoration: underline;
}

.policy-legal-links a:hover {
    color: var(--color-white);
}

.article-section {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-white);
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: left;
}

.article-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
    color: #ddd;
}

ul.block-6__cards-container {
    list-style-type: none;
    padding-left: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

.block-6__card-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: var(--color-white);
    margin: 0 0 16px 0;
}

.tech-benchmarks {
    margin-top: 60px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
}

.tech-benchmarks__title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-branded-light);
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

.tech-benchmarks__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: #ccc;
}

.tech-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.tech-item strong {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .tech-benchmarks__grid {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

.expert-context {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
}

.expert-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-branded);
    color: var(--color-branded-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.expert-text {
    color: #aaa;
    font-style: italic;
}

.comparison-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
    color: #ddd;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-grid.card-style {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.gallery-grid.card-style .gallery-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-grid.card-style .gallery-item img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 16px;
}

.gallery-grid.card-style .gallery-caption {
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
    color: #ccc;
    background: transparent;
    padding: 0;
}

@media (max-width: 1024px) {
    .gallery-grid.card-style {
        grid-template-columns: 1fr;
    }
}

.creator-subtitle {
    font-size: 24px;
    color: var(--color-white);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
}

.creator-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.creator-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: #ddd;
    font-weight: 300;
}

.creator-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-branded);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
}

.creator-list li strong {
    color: var(--color-white);
    font-weight: 500;
}

.creator-quote-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-left: 4px solid var(--color-branded);
    border-radius: 8px;
    padding: 24px 32px;
    margin-top: 48px;
}

.quote-content {
    font-size: 18px;
    font-style: italic;
    color: #eee;
    margin-bottom: 24px;
    line-height: 1.6;
}

.quote-author-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-branded);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 16px;
}

.author-role {
    font-size: 13px;
    color: #aaa;
}

@media (max-width: 600px) {
    .creator-quote-card {
        padding: 20px;
    }

    .quote-content {
        font-size: 16px;
    }

    .expert-context {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.howto-video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 48px auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.howto-video {
    border-radius: 8px;
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.howto-caption {
    margin-top: 12px;
    color: #aaa;
    font-size: 14px;
    text-align: center;
    font-style: italic;
}

.step-number {
    font-size: 48px;
    color: var(--color-branded);
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.prompt-formula {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 6px;
    margin: 12px 0;
    border-left: 3px solid var(--color-branded);
}

.prompt-formula code {
    font-family: monospace;
    color: var(--color-branded-light);
    font-size: 14px;
    word-break: break-word;
}

.prompt-example {
    font-size: 14px;
    color: #ccc;
    font-style: italic;
    margin-top: 8px;
}

.pro-tip {
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: #eee;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.pro-tip strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 4px;
}

.block-9__cards-wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

.block-9__cards-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.block-9__card.full-height {
    flex: 1;
}

@media (max-width: 900px) {
    .block-9__cards-wrapper {
        flex-direction: column;
    }

    .block-9__cards-column {
        width: 100%;
    }
}

.prompt-guide-block {
    margin-bottom: 32px;
}

.guide-subtitle {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 500;
}

.formula-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 16px;
    color: #aaa;
}

.formula-tag {
    background: rgba(44, 34, 250, 0.2);
    border: 1px solid var(--color-branded);
    color: var(--color-white);
    padding: 4px 8px;
    border-radius: 4px;
}

.formula-example {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #ddd;
    border-left: 2px solid var(--color-branded);
}

.prompt-tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .prompt-tips-grid {
        grid-template-columns: 1fr;
    }
}

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-card h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--color-branded-light);
    font-size: 16px;
}

.tip-card p {
    font-size: 14px;
    margin: 0;
    color: #ccc;
}

.tip-card code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #fff;
    font-size: 13px;
}

.table-responsive-wrapper {
    overflow-x: auto;
    margin: 24px 0 40px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prompt-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    font-size: 14px;
}

.prompt-comparison-table th {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.prompt-comparison-table td {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
    vertical-align: top;
    line-height: 1.5;
}

.prompt-comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.prompt-comparison-table code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    color: #aaddff;
}

.expert-insight {
    background: linear-gradient(90deg, rgba(44, 34, 250, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-left: 4px solid var(--color-branded);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    color: #eee;
    font-size: 16px;
    line-height: 1.6;
}

.expert-insight strong {
    color: var(--color-branded-light);
}

.expert-insight code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

@media (min-width: 1024px) {
    #prompt-secrets {
        max-width: 1200px;
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    #prompt-secrets .table-responsive-wrapper {
        overflow-x: visible;
        border: none;
    }

    #prompt-secrets .prompt-comparison-table {
        min-width: 100%;
        table-layout: fixed;
    }

    #prompt-secrets .prompt-comparison-table th:nth-child(1) {
        width: 15%;
    }

    #prompt-secrets .prompt-comparison-table th:nth-child(2) {
        width: 20%;
    }

    #prompt-secrets .prompt-comparison-table th:nth-child(3) {
        width: 40%;
    }

    #prompt-secrets .prompt-comparison-table th:nth-child(4) {
        width: 25%;
    }

    #prompt-secrets .prompt-comparison-table code {
        white-space: pre-wrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.library-source-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.source-badge {
    background: var(--color-branded);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.source-text {
    color: #888;
    font-style: italic;
}

.prompt-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.prompt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prompt-card-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--color-white);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.preset-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.prompt-text {
    font-family: monospace;
    font-size: 13px;
    color: #ccc;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.btn-copy-preset {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-copy-preset:hover {
    background: var(--color-branded);
    border-color: var(--color-branded);
}

.prompt-card.full-width {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, rgba(44, 34, 250, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-left: 4px solid var(--color-branded);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-branded-light);
    font-weight: 600;
}

.spec-value {
    font-size: 16px;
    color: var(--color-white);
    font-family: monospace;
}

@media (max-width: 768px) {
    .prompt-library-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    #advanced-tools {
        max-width: 1200px;
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }
}

.tools-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    font-weight: 300;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
}

@media (min-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tool-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.tool-figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(90deg, #222 50%, #333 50%);
    overflow: hidden;
}

.tool-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    font-weight: 600;
}

.tool-caption {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tool-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: var(--color-white);
    font-weight: 600;
}

.tool-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.tool-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    background: rgba(44, 34, 250, 0.1);
    border: 1px solid var(--color-branded);
    color: var(--color-branded-light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tool-btn:hover {
    background: var(--color-branded);
    color: white;
    text-decoration: none;
}

.tools-tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-box {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 20px;
    border-radius: 8px;
}

.tip-box h4 {
    margin: 0 0 12px 0;
    color: var(--color-white);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-box p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .tools-intro {
        text-align: left;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tools-tips-container {
        grid-template-columns: 1fr;
    }
}

.comparison-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 32px;
    color: var(--color-white);
    text-align: center;
}

.comparison-section>p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 40px;
}

.comparison-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--color-white);
}

.comparison-table caption {
    text-align: center;
    caption-side: bottom;
    color: #aaa;
    font-size: 12px;
    margin-top: 12px;
}

.comparison-section .ai-transparency-block {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 900px) {
    .comparison-section {
        padding: 0 32px;
        text-align: left !important;
    }

    .comparison-section>p {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .comparison-table-wrapper {
        justify-content: flex-start;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
        padding: 0 16px;
    }

    .comparison-table caption {
        text-align: left;
        padding-left: 2px;
    }

    .comparison-section .ai-transparency-block {
        align-items: flex-start;
        text-align: left;
    }
}

.nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    list-style: none;
    padding: 0;
}

.nav-pill-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #ddd;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.nav-pill-item:hover {
    background: rgba(44, 34, 250, 0.2);
    border-color: var(--color-branded);
    color: #fff;
    text-decoration: none;
}

.comparison-table tfoot td {
    padding: 12px 16px;
    font-size: 12px;
    color: #888;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

@media (max-width: 900px) {
    .nav-pills {
        justify-content: flex-start;
    }
}

.review-card {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-title {
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 12px;
}

.pros-item,
.cons-item {
    font-size: 15px;
    line-height: 1.5;
}

.pros-title,
.cons-title {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.pros-title {
    color: #4ade80;
}

.cons-title {
    color: #f87171;
}

.specs-box {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #ddd;
}

.spec-item strong {
    color: var(--color-white);
    margin-right: 4px;
}

.gallery-example-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    font-weight: 500;
}

@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-title {
        font-size: 24px;
    }
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-visit:hover {
    background: var(--color-branded);
    border-color: var(--color-branded);
    color: white;
    text-decoration: none;
}

.mini-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.mini-review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.mini-review-card h4 {
    margin-top: 0;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.sources-list {
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.sources-list h5 {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sources-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sources-list li {
    font-size: 12px;
    color: #666;
}

.sources-list a {
    color: #888;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mini-reviews-grid {
        grid-template-columns: 1fr;
    }
}

.guide-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.guide-icon {
    width: 40px;
    height: 40px;
    background: var(--color-branded);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    color: var(--color-white);
    flex-shrink: 0;
}

.guide-title {
    margin: 0;
    font-size: 24px;
    color: var(--color-white);
}

.guide-description {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 32px;
    font-weight: 300;
}

.guide-section-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 16px;
    font-weight: 600;
}

.guide-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.pick-card {
    background: rgba(44, 34, 250, 0.1);
    border: 1px solid rgba(44, 34, 250, 0.3);
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.2s ease;
}

.pick-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-branded);
}

.pick-name {
    display: block;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pick-meta {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
    display: block;
}

.checklist-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.checklist-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 15px;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.checklist-mark {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-branded);
    font-weight: bold;
}

@media (max-width: 768px) {
    .guide-card {
        padding: 24px;
    }

    .guide-title {
        font-size: 20px;
    }

    .guide-description {
        font-size: 16px;
    }
}

.free-tool-card {
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 64px;
}

.decision-criteria-box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.decision-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 600;
}

.flowchart-figure {
    margin: 48px 0;
    width: 100%;
}

.flowchart-caption {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 16px;
    font-style: italic;
}

.logic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.logic-item {
    background: rgba(44, 34, 250, 0.05);
    border-left: 3px solid var(--color-branded);
    padding: 16px 24px;
    border-radius: 0 8px 8px 0;
}

.logic-question {
    display: block;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    font-size: 16px;
}

.logic-answer {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.expert-quote-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-quote-text {
    font-family: serif;
    font-size: 20px;
    line-height: 1.6;
    color: #eee;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.expert-quote-wrapper::before {
    content: "“";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

.expert-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.expert-avatar {
    width: 48px;
    height: 48px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #888;
    font-size: 20px;
}

.expert-info strong {
    display: block;
    color: var(--color-white);
    font-size: 16px;
}

.expert-info span {
    color: #888;
    font-size: 13px;
}

@media (max-width: 768px) {
    .logic-grid {
        grid-template-columns: 1fr;
    }

    .expert-quote-wrapper {
        padding: 24px;
    }

    .expert-quote-text {
        font-size: 18px;
    }
}

.free-tool-section {
    margin-bottom: 64px;
    text-align: left;
}

.free-tool-section h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--color-white);
}

.free-tool-section p {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 24px;
    font-weight: 300;
}

.criteria-inset {
    margin-top: 24px;
    padding-left: 24px;
    border-left: 2px solid var(--color-branded);
}

.criteria-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 600;
}

.criteria-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.criteria-list li {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.criteria-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-branded);
}

.legal-section {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--color-gold);
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 0 12px 12px 0;
}

.legal-title {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-icon {
    color: var(--color-gold);
}

.legal-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 16px;
}

.legal-highlight-box {
    background: rgba(255, 208, 0, 0.1);
    border: 1px solid rgba(255, 208, 0, 0.2);
    padding: 16px;
    border-radius: 8px;
    margin-top: 24px;
}

.highlight-header {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.citation-link {
    font-size: 12px;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
}

.tos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.tos-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.tos-card h4 {
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.tos-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
    flex-grow: 1;
}

.tos-card.highlight {
    background: rgba(44, 34, 250, 0.08);
    border: 1px solid var(--color-branded);
    position: relative;
    overflow: hidden;
}

.tos-card.highlight::before {
    content: "Recommended";
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    background: var(--color-branded);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
}

.tos-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-branded-light);
    text-decoration: underline;
}

.tos-link:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .tos-grid {
        grid-template-columns: 1fr;
    }
}

.dodont-container {
    display: flex;
    gap: 32px;
    margin: 40px auto;
    max-width: 1000px;
    justify-content: center;
}

.dodont-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 300px;
}

.dodont-header {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.do-header {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.dont-header {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.dodont-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s ease;
}

.dodont-card:hover {
    transform: translateY(-2px);
}

.do-card {
    border-left: 3px solid #4ade80;
}

.dont-card {
    border-left: 3px solid #f87171;
}

.dodont-card-icon {
    font-size: 24px;
    line-height: 1;
    padding-top: 2px;
}

.dodont-card-content {
    display: flex;
    flex-direction: column;
}

.dodont-card-content strong {
    color: var(--color-white);
    font-size: 16px;
    margin-bottom: 4px;
}

.dodont-card-content p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

.regulatory-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin: 60px auto 40px auto;
    max-width: 1000px;
}

.regulatory-title {
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.regulatory-item h4 {
    color: var(--color-branded-light);
    font-size: 16px;
    margin: 0 0 8px 0;
}

.regulatory-item p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.disclaimer-box {
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding: 20px;
    background: rgba(255, 200, 0, 0.05);
    border: 1px solid rgba(255, 200, 0, 0.2);
    border-radius: 8px;
    text-align: left;
}

.disclaimer-header {
    display: block;
    color: var(--color-gold);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.disclaimer-box p {
    margin: 0;
    font-size: 13px;
    color: #ddd;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .free-tool-section p {
        text-align: left;
    }

    .dodont-container {
        flex-direction: column;
        gap: 40px;
    }

    .dodont-column {
        width: 100%;
    }

    .regulatory-block {
        padding: 20px;
    }

    .regulatory-grid {
        grid-template-columns: 1fr;
    }
}

.methodology-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.method-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.method-title {
    color: var(--color-branded-light);
    font-size: 20px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-card p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

.benchmarks-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-left: 4px solid var(--color-branded);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benchmarks-title {
    color: var(--color-white);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.benchmarks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benchmark-item strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.benchmark-item p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.methodology-table caption {
    caption-side: top;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 600;
}

.methodology-table td {
    font-size: 14px;
    vertical-align: middle;
}

.winner-badge {
    display: inline-block;
    background: rgba(44, 34, 250, 0.2);
    color: var(--color-branded-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid var(--color-branded);
    white-space: nowrap;
}

.methodology-table tfoot td {
    font-size: 12px;
    color: #777;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.4;
}

.test-metadata-block {
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metadata-header {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.metadata-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: baseline;
    font-size: 14px;
    color: #ccc;
}

.metadata-item {
    flex: 0 1 auto;
}

.metadata-item strong {
    color: var(--color-white);
    margin-right: 6px;
}

.metadata-item.full-width {
    width: 100%;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.repo-link {
    color: var(--color-branded-light);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.repo-link:hover {
    color: var(--color-white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .metadata-grid {
        flex-direction: column;
        gap: 12px;
    }

    .metadata-item.full-width {
        border-top: none;
        padding-top: 0;
        margin-top: 8px;
    }
}

.use-cases-intro {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.use-cases-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.use-cases-tags li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #ccc;
}

.use-cases-tags strong {
    color: var(--color-branded-light);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0;
    list-style: none;
    margin: 0 auto;
    max-width: 1000px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.use-case-figure {
    margin: 0;
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #222;
    overflow: hidden;
}

.use-case-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-img {
    transform: scale(1.05);
}

.use-case-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.use-case-title {
    font-size: 18px;
    color: var(--color-white);
    margin: 0 0 12px 0;
    font-weight: 600;
}

.use-case-desc {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.use-case-desc strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.use-case-btn {
    align-self: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-branded-light);
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.use-case-btn:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
    text-decoration: none;
}

@media (max-width: 768px) {
    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-tags {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .use-cases-tags li {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

.aggregate-rating-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
}

.rating-stars {
    color: var(--color-gold);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.rating-text {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
}

.rating-source {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    max-width: 1200px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-stars {
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.review-body {
    margin: 0 0 24px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #eee;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    font-style: normal;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #333;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 16px;
}

.author-role {
    font-size: 13px;
    color: #aaa;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        max-width: 100%;
    }
}

.block-10__items-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.block-10__column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    width: 100%;
}

.block-10__item {
    width: 100%;
    position: relative;
    background: rgba(18, 19, 21, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .block-10__items-container {
        flex-direction: column;
    }
}

.block-11__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.block-11__button {
    margin: 0;
    min-width: 240px;
    font-size: 18px;
}

.block-11__secondary-link {
    font-size: 16px;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.block-11__secondary-link:hover {
    color: var(--color-branded-light);
    border-bottom-color: var(--color-branded-light);
}

.block-11__trust-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    max-width: fit-content;
}

.trust-icon {
    font-size: 16px;
    line-height: 1.4;
}

.block-11__trust-text {
    margin: 0;
    font-size: 13px;
    color: #eee;
    line-height: 1.4;
    text-align: left;
}

.block-11__trust-text strong {
    color: var(--color-white);
    font-weight: 600;
}

@media (max-width: 600px) {
    .block-11__content {
        align-items: center;
        text-align: center;
    }

    .block-11__actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .block-11__button {
        width: 100%;
        margin-left: 0;
    }

    .block-11__trust-info {
        flex-direction: row;
        text-align: left;
        border-radius: 12px;
        margin-top: 16px;
        padding: 16px;
    }
}

.sources-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 80px;
    margin-bottom: 60px;
}

.sources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.sources-header h3 {
    margin: 0;
    font-size: 24px;
    color: var(--color-white);
}

.update-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-badge strong {
    color: var(--color-white);
}

.author-bio-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.author-avatar-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-branded);
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.author-details {
    flex: 1;
}

.author-header {
    margin-bottom: 12px;
}

.author-header h4 {
    margin: 0 0 4px 0;
    font-size: 18px;
    color: var(--color-white);
}

.author-role {
    font-size: 13px;
    color: var(--color-branded-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.author-bio {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.author-bio strong {
    color: var(--color-white);
}

.author-link {
    font-size: 14px;
    color: var(--color-branded-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.author-link:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.sources-block {
    margin-bottom: 32px;
}

.sources-title {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.sources-list-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 8px 32px;
}

.sources-list-grid li {
    font-size: 13px;
    color: #888;
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
}

.sources-list-grid li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #444;
}

.breadcrumbs-footer {
    font-size: 13px;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.breadcrumbs-footer a {
    color: #888;
    text-decoration: none;
}

.breadcrumbs-footer a:hover {
    color: #ccc;
}

.crumb-separator {
    margin: 0 6px;
    color: #444;
}

.crumb-current {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .sources-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-bio-card {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .author-avatar-large {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .sources-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 0 16px 32px;
        margin: 0;
        width: 100%;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    .gallery-item figure {
        margin: 0;
    }

    .gallery-item img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 12px;
    }

    .gallery-caption {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.4;
    }
}

.art-types-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 60px;
}

.art-types-gallery figure {
    margin: 0;
    min-width: 0;
}

.art-types-gallery img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.art-types-gallery img:hover {
    transform: scale(1.02);
}

.art-types-gallery figcaption {
    font-size: 0.9em;
    color: #888;
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .art-types-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

    .art-types-gallery::-webkit-scrollbar {
        height: 4px;
    }

    .art-types-gallery::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }

    .art-types-gallery figure {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .article-section h2+p,
    .comparison-section h2+p {
        text-align: left;
    }
}

.internal-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.internal-nav-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.internal-nav-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-branded);
    background: rgba(255, 255, 255, 0.05);
}

.nav-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(44, 34, 250, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--color-branded-light);
}

.internal-nav-card:hover .nav-card-icon {
    background: var(--color-branded);
    color: #fff;
}

.nav-card-content {
    flex-grow: 1;
}

.nav-card-content strong {
    display: block;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 8px;
    font-weight: 600;
}

.internal-nav-card:hover .nav-card-content strong {
    color: var(--color-branded-light);
}

.nav-card-content p {
    font-size: 14px;
    color: #bbb;
    margin: 0;
    line-height: 1.5;
}

.nav-card-arrow {
    margin-left: 16px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.2s ease, color 0.2s ease;
}

.internal-nav-card:hover .nav-card-arrow {
    color: var(--color-branded-light);
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .internal-nav-list {
        grid-template-columns: 1fr;
    }

    .internal-nav-card {
        padding: 20px;
    }
}

.sources-section {
    margin-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.sources-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.sources-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.sources-subhead {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.sources-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources-link-list li {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.5;
}

.sources-link-list li strong {
    color: var(--color-white);
    margin-right: 6px;
}

.sources-link-list a {
    color: var(--color-branded-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.sources-link-list a:hover {
    opacity: 1;
    text-decoration: underline;
}

.sources-link-list a:not(:last-child)::after {
    content: ",";
    color: #888;
    margin-right: 4px;
    text-decoration: none;
    display: inline-block;
}

.sources-link-list.secondary li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.sources-link-list.secondary li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-branded);
}

.methodology-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 20px;
}

.method-card-title {
    margin-top: 0;
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 20px;
}

.method-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.method-check-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
}

.check-icon {
    color: #4ade80;
    font-weight: bold;
    flex-shrink: 0;
}

.transparency-note {
    background: rgba(44, 34, 250, 0.1);
    border-left: 3px solid var(--color-branded);
    padding: 16px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    font-style: italic;
}

.transparency-note strong {
    color: var(--color-branded-light);
    display: block;
    margin-bottom: 4px;
    font-style: normal;
}

@media (max-width: 900px) {
    .sources-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sources-intro {
        text-align: left;
    }

    .methodology-card {
        position: static;
    }
}

.author-conclusion-group {
    margin-top: 80px;
    margin-bottom: 60px;
}

.author-bio-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.author-avatar-wrapper {
    flex-shrink: 0;
}

.author-initials {
    width: 80px;
    height: 80px;
    background: var(--color-branded);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.author-details-content {
    flex-grow: 1;
}

.author-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.author-name {
    margin: 0;
    font-size: 24px;
    color: var(--color-white);
}

.author-badge {
    background: rgba(255, 255, 255, 0.1);
    font-size: 11px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    color: #ccc;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.author-role-title {
    font-size: 15px;
    color: var(--color-branded-light);
    margin: 0 0 16px 0;
    font-weight: 500;
}

.author-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #ccc;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-item strong {
    color: var(--color-white);
}

.author-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.links-label {
    color: #888;
    margin-right: 4px;
}

.social-link {
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.social-link:hover {
    color: var(--color-branded-light);
    border-bottom-color: var(--color-branded-light);
}

.social-link.highlight {
    color: var(--color-branded-light);
    font-weight: 600;
    border-bottom-color: rgba(44, 34, 250, 0.5);
}

.social-link.highlight:hover {
    color: #fff;
    background: rgba(44, 34, 250, 0.2);
    padding: 2px 4px;
    margin: -2px -4px;
    border-radius: 4px;
    border-bottom: none;
}

.separator {
    color: #444;
}

.final-word-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.final-word-title {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 24px;
    display: inline-block;
    border-bottom: 2px solid var(--color-branded);
    padding-bottom: 8px;
}

.final-word-block p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 16px;
}

.final-word-block strong {
    color: var(--color-white);
}

.final-cta {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--color-white) !important;
    margin-top: 24px;
    font-style: italic;
}

.disclaimer-legal-box {
    font-size: 12px;
    line-height: 1.5;
    color: #888;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #666;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.disclaimer-legal-box strong {
    color: #ccc;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .author-bio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .author-header-row {
        justify-content: center;
    }

    .author-stats-grid {
        justify-content: center;
    }

    .author-social-links {
        justify-content: center;
    }

    .final-word-block p {
        font-size: 16px;
        text-align: left;
    }

    .final-cta {
        text-align: center !important;
    }
}