/* ============================================
   DT Theme - Estilos Principales
   Branding: Negro (#000000) + Blanco (#FFFFFF)
   Estilo: Minimalista, elegante, alta conversión
   ============================================ */

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

:root {
    --color-bg: #000000;
    --color-primary: #FFFFFF;
    --color-text: #FFFFFF;
    --color-text-muted: #CCCCCC;
    --color-border: #333333;
    --font-primary: 'Spectral', serif;
    --font-headings: 'Lora', serif;
    --max-width: 1200px;
    --max-content-width: 800px;
    --spacing-unit: 1rem;
    --spacing-section: 6rem;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* Tipografía - Minimalista y legible */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 3rem; 
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 { 
    font-size: 2.25rem; 
    margin-bottom: 1.25rem;
    font-weight: 800;
}

h3 { 
    font-size: 1.75rem; 
    margin-bottom: 1rem;
    font-weight: 800;
}

h4 { 
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

p {
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    opacity: 0.85;
    border-bottom-color: var(--color-primary);
}

a.article-image,
a.article-image:hover,
a.article-image:hover img {
    opacity: 1;
    border-bottom: none !important;
    text-decoration: none;
}

.article-title a:hover {
    opacity: 1;
    border-bottom: none !important;
}

.article-read-more:hover {
    opacity: 1;
    border-bottom: none !important;
}

a:not(.btn-primary):not(.btn-secondary):not(.article-read-more):not(.hero-back-link):not(.post-back-link):not(.see-all-button):not(.author-home-link) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

a:not(.btn-primary):not(.btn-secondary):not(.article-read-more):not(.hero-back-link):not(.post-back-link):not(.see-all-button):not(.author-home-link):hover {
    border-bottom-color: #FFFFFF;
}

/* Author/avatar home link - mismo aspecto visual, solo cursor pointer */
a.author-home-link {
    color: inherit;
    border-bottom: none !important;
    cursor: pointer;
}
a.author-home-link:hover {
    opacity: 1;
    border-bottom: none !important;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

main {
    min-height: calc(100vh - 200px);
    padding: 0;
}

/* Header - Minimalista y sticky */
header {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.logo a {
    color: var(--color-text);
    border: none;
}

.logo a:hover {
    border: none;
    opacity: 1;
}



/* Botones - Unificados y consistentes - High Conversion */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
    border-radius: 6px;
    font-family: var(--font-headings);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    text-decoration: none !important;
    letter-spacing: -0.01em;
    line-height: 1;
}

.btn-primary:hover {
    background-color: #F5F5F5;
    border-color: #F5F5F5;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 6px;
    font-family: var(--font-headings);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    border-color: #FFFFFF;
}

/* Hero Section - Elegante y centrado */
.hero {
    text-align: center;
    padding: 8rem 0 6rem;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2.5rem;
    border: 3px solid var(--color-border);
    display: block;
}

.hero-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    border: 3px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.3) 100%);
    color: var(--color-text);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero .hero-tagline {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Posts Grid - Minimalista y scaneable */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.post-card {
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.post-card:hover {
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.post-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-card h3 a {
    color: var(--color-text);
    border: none;
}

.post-card h3 a:hover {
    border: none;
    color: #FFFFFF;
}

.post-card .post-meta {
    font-family: var(--font-headings);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.post-card .post-excerpt {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.post-card .read-more {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
}

.post-card .read-more:hover {
    border: none;
}

/* Single Post Page - Rediseñado High-Conversion */
.single-post-page {
    background-color: #000000;
}

/* Post Hero Section */
.post-hero-section {
    padding: 6rem 0 0;
}

.post-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-back-link {
    font-family: var(--font-headings);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #CCCCCC;
    text-decoration: none;
    border: none;
    border-bottom: none !important;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.post-back-link:hover {
    color: #FFFFFF;
    border-bottom: none !important;
}

.post-back-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.post-hero-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-align: left;
}

.post-hero-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    width: 100%;
}

.post-author-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-author-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background-color: #0d0d0d;
}

.post-author-avatar a {
    display: block;
    width: 100%;
    height: 100%;
}

.author-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.post-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.post-author-name {
    font-family: var(--font-headings);
    font-size: 0.875rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.post-hero-date {
    font-family: var(--font-headings);
    font-size: 0.875rem;
    color: #999999;
}

.post-share-button {
    font-family: var(--font-headings);
    background: transparent;
    border: 1px solid #666666;
    border-radius: 999px;
    color: #CCCCCC;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.375rem 1rem;
    margin: 0;
    transition: all 0.2s ease;
}

.post-share-button:hover {
    color: #FFFFFF;
    border-color: #999999;
}

.post-meta-separator {
    color: #666666;
}

.post-meta-category {
    font-family: var(--font-headings);
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Post Article Content */
.post-article {
    padding: 2rem 0 4rem;
}

.post-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.post-content-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #FFFFFF;
}

.post-content-body p {
    margin-bottom: 1.5rem;
    color: #E5E5E5;
}

.post-content-body h2 {
    font-family: var(--font-headings);
    font-size: 1.625rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.post-content-body h3 {
    font-family: var(--font-headings);
    font-size: 1.875rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content-body h4 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.post-content-body strong {
    color: #FFFFFF;
    font-weight: 700;
}

.post-content-body a {
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.post-content-body a:hover {
    color: #CCCCCC;
    border-bottom-color: #CCCCCC;
}

.post-content-body ul,
.post-content-body ol {
    margin: 2rem 0;
    padding-left: 2rem;
    color: #E5E5E5;
}

.post-content-body li {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.post-content-body ul li::marker {
    color: #FFFFFF;
}

.post-content-body blockquote {
    font-family: var(--font-primary);
    border-left: 4px solid #FFFFFF;
    padding-left: 2rem;
    margin: 2.5rem 0;
    color: #CCCCCC;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.post-content-body code {
    background-color: #1a1a1a;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #FFFFFF;
    font-family: 'Courier New', monospace;
}

.post-content-body pre {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid #333333;
}

.post-content-body pre code {
    background: none;
    padding: 0;
    color: #FFFFFF;
}

.post-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Post Newsletter Section */
.post-newsletter-section {
    margin: 3.5rem 0;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.post-newsletter-title {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.post-newsletter-meta {
    font-size: 1.0625rem;
    color: #999999;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.post-newsletter-tagline {
    font-size: 0.75rem;
    color: #999999;
    margin: 0 0 2rem 0;
    text-transform: lowercase;
}

.post-newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 420px;
    margin: 1em auto;
    justify-content: center;
}

.post-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 0.875rem;
    min-width: 0;
}

.post-newsletter-input::placeholder {
    color: #666666;
}

.post-newsletter-input:focus {
    outline: none;
    border-color: #666666;
}

.post-newsletter-button {
    font-family: var(--font-headings);
    padding: 0.5rem 1.25rem;
    background-color: #1a1a1a;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Cuando el botón también tiene clase btn-primary, mantener estilo de single post pero con mejor contraste */
.post-newsletter-button.btn-primary {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.post-newsletter-button.btn-primary:hover {
    background-color: #F5F5F5;
    border-color: #F5F5F5;
}

.post-newsletter-button:not(.btn-primary):hover {
    background-color: #2a2a2a;
    color: #FFFFFF;
}

.post-newsletter-disclaimer {
    font-size: 0.8125rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.post-newsletter-disclaimer a {
    color: #999999;
    text-decoration: none;
    border-bottom: 1px solid rgba(153, 153, 153, 0.3);
    transition: color 0.2s ease;
}

.post-newsletter-disclaimer a:hover {
    color: #CCCCCC;
    border-bottom-color: #CCCCCC;
}

/* Newsletter Message Container para Single Post */
.post-newsletter-section .newsletter-message-container {
    max-width: 500px;
    margin: 0 auto 1rem;
    animation: slideDown 0.3s ease-out;
}

.post-newsletter-section .newsletter-message {
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 0;
    animation: fadeIn 0.3s ease-out;
}

.post-newsletter-section .newsletter-success {
    background-color: transparent;
    border: none;
}

.post-newsletter-section .newsletter-success p {
    color: #FFFFFF;
    margin: 0 0 1.25rem;
    font-weight: 500;
    font-size: 0.9375rem;
}

.post-guide-success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
}

.post-guide-success-actions .btn-primary,
.post-guide-success-actions .btn-secondary {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.post-newsletter-section .newsletter-error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.5);
}

.post-newsletter-section .newsletter-error p {
    color: #EF4444;
    margin: 0;
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Loading state para botón de single post */
.post-newsletter-button .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.post-newsletter-button .spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.post-newsletter-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Related Posts Section */
.related-posts-section {
    padding-top: 1rem;
}

.related-posts-title {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-align: left;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
}

.related-post-horizontal {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333333;
}

.related-post-horizontal:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-post-title-horizontal {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

.related-post-title-horizontal a {
    color: #FFFFFF;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: color 0.2s ease;
}

.related-post-title-horizontal a:hover {
    color: #CCCCCC;
    text-decoration: none !important;
    border-bottom: none !important;
}

.related-post-excerpt-horizontal {
    font-size: 0.875rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

.related-post-date-horizontal {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-post-image-horizontal {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    overflow: hidden;
    display: block;
    border: none !important;
}

.related-post-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.related-post-horizontal:hover .related-post-image-horizontal {
    border: none !important;
}

.related-post-horizontal:hover .related-post-image-horizontal img {
    filter: grayscale(100%);
}

.related-posts-see-all {
    text-align: center;
    margin-top: 3rem;
}

.see-all-button {
    font-family: var(--font-headings);
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: #1a1a1a;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.see-all-button:hover {
    background-color: #2a2a2a;
    color: #FFFFFF;
}

.related-post-card {
    display: block;
    text-decoration: none;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
}

.related-post-card:hover {
    border-color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-title {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 1.5rem;
    margin: 0;
    line-height: 1.4;
}

.related-post-excerpt {
    font-size: 0.9375rem;
    color: #CCCCCC;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.6;
}

.post-content ul,
.post-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    padding-left: 1rem;
}

.post-content li {
    font-family: var(--font-primary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.125rem;
}

.post-content ul li::marker {
    color: #FFFFFF;
}

.post-content blockquote {
    font-family: var(--font-primary);
    border-left: 4px solid #FFFFFF;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.post-content code {
    background-color: #1a1a1a;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
    color: #FFFFFF;
}

.post-content pre {
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: var(--color-text);
}

/* CTA Section - Reutilizable y atractivo */
.cta-section {
    background-color: rgba(10, 10, 10, 0.6);
    padding: 4rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
    border: 1px solid var(--color-border);
    max-width: var(--max-content-width);
    margin-left: auto;
    margin-right: auto;
}

.cta-section h2 {
    margin-top: 0;
    color: var(--color-text);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 1rem auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form .btn-primary {
    white-space: nowrap;
}

/* Footer styles removed - using .site-footer instead */

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    color: var(--color-text-muted);
    font-size: 1.25rem;
}

.social-links a:hover {
    color: #FFFFFF;
}

/* Formulario de Contacto */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
    font-family: var(--font-headings);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Utilidades */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-unit); }
.mt-2 { margin-top: calc(var(--spacing-unit) * 2); }
.mt-3 { margin-top: calc(var(--spacing-unit) * 3); }

.mb-1 { margin-bottom: var(--spacing-unit); }
.mb-2 { margin-bottom: calc(var(--spacing-unit) * 2); }
.mb-3 { margin-bottom: calc(var(--spacing-unit) * 3); }

/* Secciones de contenido */
.content-section {
    padding: var(--spacing-section) 0;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* About Section integrada */
.about-section {
    padding: var(--spacing-section) 0;
    max-width: var(--max-content-width);
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Internal Links Section */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.related-posts h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.related-posts ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.related-posts li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.related-posts li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FFFFFF;
}

.related-posts a {
    font-size: 1.125rem;
    color: var(--color-text);
    border: none;
}

.related-posts a:hover {
    color: #FFFFFF;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-section: 4rem;
    }
    
    body {
        font-size: 16px;
    }
    
    h1 { 
        font-size: 2.25rem; 
    }
    
    h2 { 
        font-size: 1.875rem; 
    }
    
    h3 { 
        font-size: 1.5rem; 
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero-image {
        width: 150px;
        height: 150px;
    }
    
    nav ul {
        gap: 1.5rem;
        font-size: 0.875rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-card {
        padding: 1.5rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
}

/* ============================================
   Landing Page Styles - Minimal & High Conversion
   ============================================ */

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.98);
    border-top: 1px solid var(--color-border);
    padding: 1rem 0;
    z-index: 1000;
    display: none; /* Hidden by default, shown via JS on scroll */
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
}

.btn-sticky {
    font-family: var(--font-headings);
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

/* Minimal Header */
.minimal-header {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.minimal-header .logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    border: none;
}


/* Landing Page Hero - Giant Title */
.landing-page {
    padding: 0;
}

.hero-landing {
    padding: 8rem 0 6rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    font-family: var(--font-headings);
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Featured Post Section */
.featured-post-section {
    padding: 6rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid var(--color-border);
    padding: 3rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.featured-post:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.featured-post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-post-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.featured-post-title a {
    color: var(--color-text);
    border: none;
}

.featured-post-title a:hover {
    color: var(--color-primary);
    border: none;
}

.featured-post-excerpt {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}


/* Posts List Section */
.posts-list-section {
    padding: 6rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text);
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.post-list-item {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

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

.post-list-title {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.post-list-title a {
    color: var(--color-text);
    border: none;
}

.post-list-title a:hover {
    color: var(--color-primary);
    border: none;
}

.post-list-excerpt {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more-link {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 1rem;
    border: none;
}

.read-more-link:hover {
    border: none;
    opacity: 0.85;
}

.posts-list-cta {
    text-align: center;
    margin-top: 4rem;
}

.posts-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* Authority Section - Subtle */
.authority-section {
    padding: 4rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.authority-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.authority-text a {
    color: var(--color-primary);
    border: none;
}

/* Final CTA Section */
.cta-final-section {
    padding: 6rem 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-message {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.newsletter-success {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
}

.newsletter-success p {
    color: #FFFFFF;
    margin: 0;
    font-weight: 500;
}

.newsletter-error {
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.newsletter-error p {
    color: #ff4444;
    margin: 0;
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    opacity: 0.7;
}

/* Minimal footer styles removed - using .site-footer instead */

/* Responsive Landing Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .featured-post-image {
        height: 200px;
    }
    
    .featured-post-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .post-list-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    
    .hero-landing {
        padding: 4rem 0 3rem;
    }
    
    .featured-post-section,
    .posts-list-section,
    .cta-final-section {
        padding: 4rem 0;
    }
}

/* ============================================
   Homepage Styles
   High conversion, minimalist, clean hierarchy
   ============================================ */

/* Site Header */
.site-header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.site-header.visible {
    transform: translateY(0);
}

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

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    border-bottom: none !important;
}

.site-logo a:hover {
    color: #FFFFFF;
    opacity: 0.9;
    border-bottom: none !important;
}

.site-logo-image {
    display: block;
    max-height: 28px;
    width: auto;
}

@media (max-width: 768px) {
    .site-logo-image {
        max-height: 20px;
    }
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.hero-section .container {
    max-width: 1200px;
    width: 100%;
}

.hero-headline {
    font-family: var(--font-headings);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #FFFFFF;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-wrapper {
    margin-bottom: 2rem;
}


.hero-social-proof {
    font-size: 1.125rem;
    color: #999999;
    margin: 1.5rem 0 0 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Blog Archive Page */
.blog-archive-page {
    background-color: #000000;
}

/* Notes page (listado en /notes: misma sensación que homepage) */
.blog-notes-page {
    background-color: #000000;
}

/* Hero blog/notes: banner bajo, alineado a la izquierda, sin padding abajo */
.blog-notes-page .hero-section {
    min-height: 0;
    padding: 3rem 0 0 0;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}
.blog-notes-page .hero-section .container {
    align-self: flex-start;
}
.blog-notes-page .post-back-link {
    margin-bottom: 1rem;
}

.blog-notes-page .hero-headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1em;
}

.blog-notes-page .blog-section {
    padding-top: 0;
}

/* Blog Hero Section */
/* Blog Categories Section */
.blog-categories-section {
    padding: 2rem 0;
    border-bottom: 1px solid #333333;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-category-item {
    font-family: var(--font-headings);
    padding: 0.5rem 1.25rem;
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.blog-category-item:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
}

.blog-category-item.active {
    color: #FFFFFF;
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Blog Featured Section */
.blog-featured-section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-featured-post {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.blog-featured-post:hover {
    border-color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-featured-post:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.blog-featured-category {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.blog-featured-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.blog-featured-title a {
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    transition: color 0.2s ease;
}

.blog-featured-title a:hover {
    color: #CCCCCC;
    border: none;
}

.blog-featured-excerpt {
    font-size: 1.25rem;
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-featured-meta {
    font-family: var(--font-headings);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #999999;
    margin-bottom: 2rem;
}

.blog-featured-separator {
    color: #666666;
}

.blog-featured-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    border: none;
    align-self: flex-start;
}

.blog-featured-link:hover {
    color: #CCCCCC;
    border: none;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 3rem 0 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-post-card {
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    border-color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #1a1a1a;
    display: block;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-category {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.blog-post-title {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-post-title a {
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    transition: color 0.2s ease;
}

.blog-post-title a:hover {
    color: #CCCCCC;
    border: none;
}

.blog-post-excerpt {
    font-size: 1.125rem;
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-post-meta {
    font-family: var(--font-headings);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #999999;
    margin-bottom: 1.5rem;
}

.blog-post-separator {
    color: #666666;
}

.blog-post-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    align-self: flex-start;
}

.blog-post-link:hover {
    color: #CCCCCC;
    border: none;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 4rem;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    padding: 0.75rem 1.25rem;
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid #333333;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    border-color: #FFFFFF;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
}

.blog-pagination .prev,
.blog-pagination .next {
    font-weight: 600;
}

/* Blog No Posts */
.blog-no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.blog-no-posts h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.blog-no-posts p {
    font-size: 1.125rem;
    color: #CCCCCC;
}

/* Blog Section (para homepage) */
.blog-section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section-header {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.blog-section-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.blog-section-subtitle {
    font-size: 1.25rem;
    color: #CCCCCC;
    line-height: 1.8;
    margin: 0;
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-article-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.article-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: transparent;
    display: block;
    border: none;
    border-bottom: none !important;
    text-decoration: none;
    cursor: pointer;
}

.article-image img,
.article-image .article-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.article-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-title {
    font-family: var(--font-headings);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.article-title a {
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    border-bottom: none !important;
    cursor: pointer;
}

.article-snippet {
    font-size: 1.125rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

.article-read-more {
    display: inline;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    border: none !important;
    border-bottom: none !important;
    margin-top: 1.25rem;
    cursor: pointer;
}

.article-read-more:hover {
    opacity: 1;
    color: #FFFFFF;
    text-decoration: underline;
    border: none !important;
    border-bottom: none !important;
}

.article-date {
    font-family: var(--font-headings);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #333333;
    font-size: 0.9375rem;
    color: #999999;
}

.article-date svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #999999;
}

.blog-section-footer {
    text-align: center;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 2.5rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.about-image-circle {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background-color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-circle a {
    display: block;
    width: 100%;
    height: 100%;
}

.about-image-circle img,
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    border-radius: 50%;
    transform: scale(1.15);
}

.about-content {
    text-align: left;
}

.about-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-text {
    font-size: 1.25rem;
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-text a {
    color: #FFFFFF;
    text-decoration: none;
    border: none;
}

.about-text a:hover {
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

.about-social {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    border-bottom: none !important;
    background: none;
    transition: opacity 0.2s ease;
    padding: 0;
}

.about-social a:hover {
    opacity: 0.7;
    border: none;
    border-bottom: none !important;
}

.about-social a svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Newsletter Section - High Conversion Design */
.newsletter-section {
    padding: 5rem 0;
    text-align: center;
    width: 100%;
    margin: 0;
    background-color: #000000;
}

.newsletter-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-title {
    font-family: var(--font-headings);
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Make CTA guide title less wide on desktop */
.cta-guide-section .newsletter-title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-description {
    font-size: 1.375rem;
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guide-section .cta-guide-button-wrap {
    text-align: center;
    margin-top: 0;
}

.cta-guide-section .newsletter-description {
    margin-bottom: 2rem;
}

.newsletter-privacy {
    font-size: 1rem;
    color: #999999;
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* Newsletter Loading State */
.newsletter-form .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Newsletter Message Container */
.newsletter-message-container {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    animation: slideDown 0.3s ease-out;
}

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

.newsletter-message {
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    margin-bottom: 0;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.newsletter-success {
    background-color: transparent;
    border: none;
}

.newsletter-success p {
    color: #FFFFFF;
    margin: 0;
    font-weight: 500;
    font-size: 1.125rem;
}

.newsletter-error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.5);
}

.newsletter-error p {
    color: #EF4444;
    margin: 0;
    font-weight: 500;
    font-size: 1.125rem;
}

/* Newsletter Popup Modal - Centrado y profesional */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease-out;
}

.newsletter-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newsletter-popup-content {
    position: relative;
    background-color: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
    animation: popupSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10001;
    text-align: center;
}

@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.newsletter-popup-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: #CCCCCC;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.newsletter-popup-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transform: rotate(90deg);
}

.newsletter-popup-body {
    margin: 0;
}

/* Mensajes dentro del popup */
.newsletter-popup-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-popup-title {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.newsletter-popup-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: #CCCCCC;
    margin: 0;
    max-width: 100%;
}

.newsletter-popup-success {
    color: #FFFFFF;
}

.newsletter-popup-error {
    color: #FFFFFF;
}

.newsletter-popup-error .newsletter-popup-title {
    color: #EF4444;
}

.newsletter-popup-error .newsletter-popup-description {
    color: #EF4444;
}

/* Site Footer */
.site-footer {
    background-color: #000000;
    border-top: none;
    padding: 3rem 0;
    margin-top: 0;
}

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

.footer-logo a {
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    border-bottom: none !important;
}

.footer-logo a:hover {
    color: #FFFFFF;
    opacity: 0.9;
    border-bottom: none !important;
}

.footer-logo-image {
    display: block;
    max-height: 28px;
    width: auto;
}

@media (max-width: 768px) {
    .footer-logo-image {
        max-height: 20px;
    }
}

.footer-social-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    border-bottom: none !important;
    background: none;
    transition: opacity 0.2s ease;
    padding: 0;
}

.footer-social-icons a:hover {
    opacity: 0.7;
    border: none;
    border-bottom: none !important;
}

.footer-social-icons a svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Global mobile spacing: 0.5em horizontal padding on all main containers */
    .container {
        padding-left: 0.5em;
        padding-right: 0.5em;
    }

    /* Newsletter section container: no lateral padding on mobile */
    .newsletter-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .site-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }

    .site-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Reduce button padding on mobile */
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

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

    .hero-subheadline {
        font-size: 1.25rem;
    }

    .blog-articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1rem;
    }

    .article-content {
        padding: 1.25rem 0;
    }

    .article-title {
        font-size: 1.25rem;
    }

    .article-snippet {
        font-size: 1rem;
    }

    .article-read-more {
        font-size: 1rem;
    }

    .article-date {
        font-size: 0.9375rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .newsletter-section {
        padding: 2rem 1rem;
        margin: 0;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .newsletter-form {
        flex-direction: row;
        max-width: 100%;
    }

    .newsletter-form input {
        flex: 1;
        min-width: 0;
        padding: 0.5rem 0.75rem;
    }

    .newsletter-form .btn-primary {
        width: auto;
        flex-shrink: 0;
    }

    .newsletter-popup-content {
        padding: 2.5rem 1.75rem;
        max-width: 90%;
        border-radius: 12px;
    }

    .newsletter-popup-close {
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }

    .newsletter-popup-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .newsletter-popup-description {
        font-size: 0.9375rem;
    }

    .newsletter-form .btn-loading {
        font-size: 0.875rem;
    }

    .newsletter-message {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .site-footer .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }

    .hero-section {
        min-height: 100vh;
    }

    .blog-section {
        padding: 2rem 0;
    }

    .about-section {
        padding: 2rem 0;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        justify-content: center;
    }

    .about-image-circle {
        max-width: 200px;
    }

    .about-content {
        text-align: center;
    }

    .about-social {
        justify-content: center;
    }

    .newsletter-section {
        padding: 2rem 1rem;
        margin: 0;
    }

    /* Blog Archive Responsive */
    .blog-categories {
        justify-content: flex-start;
        gap: 1rem;
        padding: 0 1rem;
    }

    .blog-featured-post {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .blog-featured-image {
        min-height: 300px;
    }

    .blog-featured-content {
        padding: 2rem;
    }

    .blog-featured-title {
        font-size: 2rem;
    }

    .blog-featured-excerpt {
        font-size: 1.125rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-post-content {
        padding: 1.5rem;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-post-content {
        padding: 1.5rem;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }

    /* Single Post Responsive */
    .post-hero-section {
        padding: 1rem 0;
    }

    .post-article {
        padding: 1rem 0;
    }

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

    .post-content-wrapper {
        padding: 0 0.5em;
    }

    .post-content-body {
        font-size: 1rem;
    }

    .post-content-body h2 {
        font-size: 1.625rem;
    }

    .post-content-body h3 {
        font-size: 1.5rem;
    }

    .post-newsletter-section {
        margin: 1.5rem 0;
        padding: 1.5rem 1rem;
    }

    .post-newsletter-title {
        font-size: 1.875rem;
    }

    .related-posts-title {
        font-size: 1.5rem;
    }

    .post-newsletter-form {
        flex-direction: row;
        max-width: 100%;
    }

    .post-newsletter-input {
        flex: 1;
        min-width: 0;
    }

    .post-newsletter-button {
        width: auto;
        flex-shrink: 0;
    }

    .related-post-horizontal {
        flex-direction: column;
        gap: 1.5rem;
    }

    .related-post-image-horizontal {
        width: 100%;
        height: 150px;
        order: -1;
    }

    .related-post-title-horizontal {
        font-size: 1.25rem;
    }
}

/* ============================================
   Lead Magnet Page - Freelance Guide
   Scoped to .lead-magnet-page; no global overrides.
   ============================================ */
.lead-magnet-page {
    padding: 0;
}

/* Single above-the-fold section: two columns on desktop, stacked on mobile */
.lead-magnet-single-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    box-sizing: border-box;
    background-color: #000000;
    position: relative;
}

.lead-magnet-single-section .lead-magnet-single-container {
    position: relative;
    z-index: 1;
}

.lead-magnet-single-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

.lead-magnet-content {
    text-align: left;
}

.lead-magnet-content .lead-magnet-hero-tag {
    margin-bottom: 0.75rem;
}

.lead-magnet-content .lead-magnet-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.lead-magnet-content .lead-magnet-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.lead-magnet-benefits-list-compact {
    list-style: none;
    margin: 0 0 1.25rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lead-magnet-benefits-list-compact li {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text);
    font-weight: 500;
    padding-left: 1.25rem;
    position: relative;
}

.lead-magnet-benefits-list-compact li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.lead-magnet-authority {
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin: 0.75rem 0 0 0;
    line-height: 1.4;
}

.lead-magnet-reinforcement {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.5;
}

.lead-magnet-cta-box {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.45);
    text-align: left;
}

.lead-magnet-cta-headline {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.lead-magnet-cta-supporting {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
}

.lead-magnet-cta-box .lead-magnet-form-inner {
    text-align: left;
}

.lead-magnet-cta-box .newsletter-form {
    flex-direction: row;
    max-width: none;
    margin: 0 0 0.75rem 0;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.lead-magnet-cta-box .newsletter-form input {
    flex: 1;
    min-width: 0;
    background-color: rgba(0, 0, 0, 0.35);
}

.lead-magnet-cta-box .newsletter-form .btn-primary {
    width: auto;
    flex-shrink: 0;
}

.lead-magnet-cta-box .newsletter-form input::placeholder {
    color: #FFFFFF;
}

.lead-magnet-cta-box .lead-magnet-form-microcopy {
    font-size: 0.8125rem;
    color: #999999;
    margin: 0;
}

.lead-magnet-cta-box .lead-magnet-success-inner {
    padding: 0;
}

.lead-magnet-cta-box .lead-magnet-success-title {
    margin-bottom: 0.5rem;
}

.lead-magnet-cta-box .lead-magnet-success-desc {
    margin-bottom: 1rem;
}

.lead-magnet-cta-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.lead-magnet-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-top: 1.5em;
    padding: 0;
    text-align: center;
}

.lead-magnet-social-proof-author {
    font-family: var(--font-primary);
    font-size: 0.6875rem;
    line-height: 1.4;
    color: var(--color-text);
    font-weight: 500;
}

.lead-magnet-social-proof-based {
    font-family: var(--font-primary);
    font-size: 0.625rem;
    line-height: 1.4;
    color: var(--color-text-muted);
    font-weight: 400;
}

.lead-magnet-social-proof > a.author-home-link {
    display: inline-flex;
    border-radius: 50%;
    overflow: hidden;
    background-color: #0d0d0d;
    flex-shrink: 0;
}

.lead-magnet-social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 28%;
}

/* Legacy hero/benefits (kept for class reuse in single section) */
.lead-magnet-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    margin: 0 auto;
}

.lead-magnet-hero .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.lead-magnet-hero-tag {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.35rem 0.9rem;
    border-radius: 0;
    border: 1px solid #FFFFFF;
    background-color: #000000;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.lead-magnet-hero-title {
    font-family: var(--font-headings);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 900px;
    color: var(--color-text);
    letter-spacing: -0.03em;
    margin-left: auto;
    margin-right: auto;
}

.lead-magnet-hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lead-magnet-hero-cta {
    margin-bottom: 2rem;
}

.lead-magnet-hero-microcopy {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: 0;
    opacity: 0.9;
}

.lead-magnet-benefits {
    padding: var(--spacing-section) 0;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.lead-magnet-benefits .container {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

.lead-magnet-benefits-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.lead-magnet-benefits-intro {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin: 0 auto 1.5rem;
    max-width: 800px;
}

.lead-magnet-benefits-list {
    margin: 0 auto;
    max-width: 40em;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-magnet-benefits-item {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
    text-align: center;
}

.lead-magnet-form-section {
    padding: 1.5rem 0 2rem;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.lead-magnet-form-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.lead-magnet-form-inner {
    text-align: center;
}

.lead-magnet-form-microcopy {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.lead-magnet-form-section .newsletter-form {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.lead-magnet-success-inner {
    padding: 2rem 0;
}

.lead-magnet-success-title {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.lead-magnet-success-desc {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.lead-magnet-success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.lead-magnet-read-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.lead-magnet-download-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    border-bottom: 2px solid var(--color-primary);
}

.lead-magnet-success-ps {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.lead-magnet-success-ps a {
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lead-magnet-success-ps a:hover {
    color: var(--color-text);
}

.lead-magnet-error {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 6px;
    text-align: center;
}

.lead-magnet-error-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #EF4444;
    margin: 0;
}

.lead-magnet-social-proof {
    text-align: center;
    max-width: var(--max-content-width);
}

.lead-magnet-social-proof .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.lead-magnet-social-proof-text {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .lead-magnet-single-section {
        min-height: auto;
        padding: 1.5rem 0 2rem;
    }

    .lead-magnet-single-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .lead-magnet-cta-box {
        order: -1;
        padding: 1.5rem;
    }

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

    .lead-magnet-content .lead-magnet-hero-subtitle {
        font-size: 1rem;
    }

    .lead-magnet-benefits-list-compact li {
        font-size: 0.875rem;
    }

    .lead-magnet-cta-headline {
        font-size: 1.5rem;
    }

    .lead-magnet-hero {
        padding: 4rem 0 3rem;
    }

    .lead-magnet-hero-title {
        font-size: 2rem;
    }

    .lead-magnet-hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .lead-magnet-benefits-title {
        font-size: 1.5rem;
    }

    .lead-magnet-benefits-intro {
        font-size: 1rem;
    }

    .lead-magnet-benefits-list {
        gap: 0.5rem;
    }

    .lead-magnet-benefits-item {
        font-size: 1rem;
    }

    .lead-magnet-form-section .newsletter-form {
        flex-direction: column;
    }

    .lead-magnet-form-section .newsletter-form input {
        min-width: 100%;
    }

    .lead-magnet-success-title {
        font-size: 1.25rem;
    }

    .lead-magnet-success-desc {
        font-size: 1rem;
    }
}

.work-with-me-page {
    padding: 0;
}

.work-with-me-single-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    box-sizing: border-box;
    background-color: #000000;
    position: relative;
}

.work-with-me-single-section .work-with-me-single-container {
    position: relative;
    z-index: 1;
}

.work-with-me-single-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

.work-with-me-content {
    text-align: left;
}

.work-with-me-hero-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid #FFFFFF;
    background-color: #000000;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.work-with-me-hero-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.work-with-me-hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.work-with-me-benefits-list {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.work-with-me-benefits-list li {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    font-weight: 500;
    padding-left: 1.25rem;
    position: relative;
}

.work-with-me-benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.work-with-me-price {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.5;
}

.work-with-me-cta-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.work-with-me-cta-box {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.45);
    text-align: left;
}

.work-with-me-cta-headline {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.work-with-me-cta-supporting {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
}

.work-with-me-form-inner .form-group {
    margin-bottom: 1rem;
}

.work-with-me-form-inner .form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-headings);
}

.work-with-me-form-inner .form-group input,
.work-with-me-form-inner .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.work-with-me-form-inner .form-group input:focus,
.work-with-me-form-inner .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.work-with-me-form-inner .form-group input::placeholder,
.work-with-me-form-inner .form-group textarea::placeholder {
    color: #FFFFFF;
}

.work-with-me-form-inner .form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.work-with-me-form-inner .btn-primary,
.work-with-me-form-inner .contact-form .btn-primary,
.work-with-me-form-inner form button.btn-primary {
    width: auto !important;
    max-width: fit-content;
    margin-top: 0.25rem;
}

.work-with-me-form-inner #call-request-success,
.work-with-me-form-inner #call-request-error {
    margin-top: 1rem;
}

.work-with-me-form-inner #call-request-success p {
    color: var(--color-text);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.work-with-me-form-inner #call-request-error p {
    color: #EF4444;
    margin: 0;
    font-size: 0.9375rem;
}

.work-with-me-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-top: 1.5em;
    padding: 0;
    text-align: center;
}

.work-with-me-social-proof-author {
    font-family: var(--font-primary);
    font-size: 0.6875rem;
    line-height: 1.4;
    color: var(--color-text);
    font-weight: 500;
}

.work-with-me-social-proof-based {
    font-family: var(--font-primary);
    font-size: 0.625rem;
    line-height: 1.4;
    color: var(--color-text-muted);
    font-weight: 400;
}

.work-with-me-social-proof > a.author-home-link {
    display: inline-flex;
    border-radius: 50%;
    overflow: hidden;
    background-color: #0d0d0d;
    flex-shrink: 0;
}

.work-with-me-social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 28%;
}

@media (max-width: 768px) {
    .work-with-me-single-section {
        min-height: auto;
        padding: 1.5rem 0 2rem;
    }
    .work-with-me-single-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .work-with-me-cta-box {
        order: -1;
        padding: 1.5rem;
    }
    .work-with-me-hero-title {
        font-size: 1.875rem;
    }
    .work-with-me-hero-subtitle {
        font-size: 1rem;
    }
    .work-with-me-benefits-list li {
        font-size: 0.9375rem;
    }
    .work-with-me-cta-headline {
        font-size: 1.5rem;
    }
}

/* ============================================
   404 Error Page - Minimalista y centrado
   ============================================ */
.error-404-content {
    text-align: center;
    padding: 8rem 2rem;
    max-width: var(--max-content-width);
    margin: 0 auto;
    min-height: calc(100vh - 400px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-404-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
}

.error-404-content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
}

.error-404-cta {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .error-404-content {
        padding: 6rem 1.5rem;
        min-height: calc(100vh - 300px);
    }

    .error-404-content h1 {
        font-size: 2.5rem;
    }

    .error-404-content p {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

/* ============================================
   FREELANCE GUIDE WEB - Full-Screen Frames
   Interactive guide with smooth transitions
   ============================================ */

/* Page container - hide site header/footer */
.guide-web-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--color-bg);
}

/* Hide default site header and footer on guide page */
body.page-template-page-template-freelance-guide-web-php .site-header,
body.page-template-page-template-freelance-guide-web-php .site-footer {
    display: none;
}

/* Hide footer on video landing page */
body.page-template-page-template-video-landing-php .site-footer {
    display: none;
}

/* Progress Bar */
.guide-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.guide-progress-fill {
    height: 100%;
    background: var(--color-primary);
    width: 11.11%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation */
.guide-nav {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.guide-nav-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.guide-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.guide-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

.guide-nav-btn:disabled,
.guide-nav-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.guide-nav-text {
    display: inline;
}

.guide-frame-counter {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    min-width: 50px;
    text-align: center;
}

/* Frame Base Styles */
.guide-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.guide-frame-active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.guide-frame-exit {
    opacity: 0;
    visibility: visible;
    z-index: 5;
}

/* Frames without scroll - centered vertically */
.guide-frame-no-scroll {
    align-items: center;
}

.guide-frame-no-scroll .guide-frame-content {
    overflow: hidden;
}

/* Frame Backgrounds */
.guide-frame-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Minimalist border frame - only for cover and closing pages */
[data-bg="cover"] .guide-frame-bg::before,
[data-bg="closing"] .guide-frame-bg::before {
    content: '';
    position: fixed;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 100;
}

/* Progressive background themes - subtle gradients */
[data-bg="cover"] .guide-frame-bg {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #111111 100%);
}

[data-bg="project"] .guide-frame-bg {
    background: linear-gradient(135deg, #050505 0%, #0d0d0d 50%, #151515 100%);
}

[data-bg="stack"] .guide-frame-bg {
    background: linear-gradient(135deg, #080808 0%, #101010 50%, #181818 100%);
}

[data-bg="portfolio"] .guide-frame-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 50%, #1a1a1a 100%);
}

[data-bg="content"] .guide-frame-bg {
    background: linear-gradient(135deg, #0c0c0c 0%, #141414 50%, #1c1c1c 100%);
}

[data-bg="outreach"] .guide-frame-bg {
    background: linear-gradient(135deg, #0e0e0e 0%, #161616 50%, #1e1e1e 100%);
}

[data-bg="proposal"] .guide-frame-bg {
    background: linear-gradient(135deg, #101010 0%, #181818 50%, #202020 100%);
}

[data-bg="checklist"] .guide-frame-bg {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 50%, #222222 100%);
}

[data-bg="closing"] .guide-frame-bg {
    background: linear-gradient(135deg, #141414 0%, #1c1c1c 50%, #242424 100%);
}

/* Frame Content - Scrollable */
.guide-frame-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 4rem 2rem 6rem;
    text-align: left;
}

.guide-frame-scrollable {
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.guide-frame-scrollable::-webkit-scrollbar {
    width: 6px;
}

.guide-frame-scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.guide-frame-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.guide-frame-scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.guide-frame-inner {
    animation: fadeInUp 0.6s ease forwards;
    padding-bottom: 4rem;
}

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

/* Cover Frame */
.guide-frame-cover {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guide-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.guide-title-main {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.guide-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2rem;
    text-align: center;
}

.guide-intro-text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.guide-intro-text p {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.guide-intro-text p:last-child {
    margin-bottom: 0;
}

.guide-intro-text strong {
    color: var(--color-text);
}

.guide-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-primary);
    color: var(--color-bg);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.guide-cta-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    border-bottom: none;
}

.guide-start-btn {
    margin-bottom: 1.5rem;
}

.guide-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Section Frames */
.guide-frame-number {
    display: block;
    font-family: var(--font-headings);
    font-size: 0.875rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    text-align: center;
}

.guide-section-title {
    font-family: var(--font-headings);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
}

.guide-title-accent {
    color: var(--color-text-muted);
    font-weight: 600;
}

.guide-section-intro {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Section Blocks */
.guide-section-block {
    margin-bottom: 2rem;
}

.guide-section-block:last-child {
    margin-bottom: 0;
}

.guide-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.guide-text:last-child {
    margin-bottom: 0;
}

.guide-text strong {
    color: var(--color-text);
}

.guide-text-muted {
    font-size: 0.9375rem;
    opacity: 0.85;
}

/* Block Title */
.guide-block-title {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Lists */
.guide-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.guide-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.625rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.guide-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 50%;
}

.guide-list li:last-child {
    margin-bottom: 0;
}

.guide-list li strong {
    color: var(--color-text);
}

/* Tips List */
.guide-list-tips li {
    padding-left: 0;
    margin-bottom: 1rem;
}

.guide-list-tips li::before {
    display: none;
}

/* Quote Block */
.guide-quote-block {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.guide-quote-block svg {
    flex-shrink: 0;
    color: var(--color-primary);
    opacity: 0.6;
    margin-top: 0.125rem;
}

.guide-quote-block p {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Content Grid */
.guide-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.guide-content-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.25rem;
}

/* Pro Tip */
.guide-pro-tip {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-primary);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.guide-pro-tip-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.guide-pro-tip p {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
}

/* Stack Comparison */
.guide-stack-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.guide-stack-col {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.guide-stack-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guide-stack-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.guide-stack-item {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
}

/* Portfolio Structure */
.guide-portfolio-structure {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 2rem;
}

.guide-portfolio-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.guide-portfolio-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: var(--color-bg);
    font-family: var(--font-headings);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.guide-portfolio-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.guide-portfolio-text strong {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text);
}

.guide-portfolio-text span {
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Outreach Steps */
.guide-outreach-steps {
    display: grid;
    gap: 0.75rem;
    margin: 2rem 0;
}

.guide-outreach-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.guide-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--color-primary);
}

.guide-outreach-step p {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text);
    margin: 0;
}

/* Proposal Items */
.guide-proposal-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.guide-proposal-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.guide-proposal-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.375rem;
}

.guide-proposal-item p {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Checklist */
.guide-checklist {
    display: grid;
    gap: 0.625rem;
    margin: 0;
}

.guide-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.guide-checklist-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.guide-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 0.125rem;
}

.guide-checklist-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.guide-checklist-text strong {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.guide-checklist-text span {
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Closing Frame */
.guide-frame-closing {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guide-closing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.guide-closing-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.guide-closing-intro {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.guide-contact-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-text);
    margin-bottom: 2rem;
}

.guide-contact-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

.guide-closing-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.guide-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.guide-link:hover {
    color: var(--color-text);
    border-bottom: none;
}

.guide-link-separator {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.3);
}

.guide-signature {
    font-family: var(--font-headings);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* Responsive - Tablet */
@media (max-width: 900px) {
    .guide-title-main {
        font-size: 2.5rem;
    }
    
    .guide-section-title {
        font-size: 1.875rem;
    }
    
    .guide-content-grid,
    .guide-stack-comparison,
    .guide-proposal-items {
        grid-template-columns: 1fr;
    }
    
    .guide-closing-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    .guide-frame-content {
        padding: 3rem 1.25rem 5rem;
    }
    
    .guide-frame-no-scroll .guide-frame-content {
        padding: 2rem 1.25rem;
    }
    
    .guide-frame-inner {
        padding-bottom: 3rem;
    }
    
    .guide-frame-no-scroll .guide-frame-inner {
        padding-bottom: 0;
    }
    
    .guide-title-main {
        font-size: 2rem;
    }
    
    .guide-subtitle {
        font-size: 1rem;
    }
    
    .guide-intro-text p {
        font-size: 0.9375rem;
    }
    
    .guide-section-title {
        font-size: 1.625rem;
    }
    
    .guide-section-title br {
        display: none;
    }
    
    .guide-section-intro {
        font-size: 0.9375rem;
    }
    
    .guide-text {
        font-size: 0.9375rem;
    }
    
    .guide-nav {
        bottom: 1rem;
        padding: 0.5rem 1rem;
        gap: 1rem;
    }
    
    .guide-nav-text {
        display: none;
    }
    
    .guide-content-block {
        padding: 1rem;
    }
    
    .guide-quote-block {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .guide-quote-block svg {
        display: none;
    }
    
    .guide-closing-badge {
        width: 56px;
        height: 56px;
    }
    
    .guide-closing-badge svg {
        width: 28px;
        height: 28px;
    }
    
    .guide-closing-title {
        font-size: 2rem;
    }
    
    .guide-closing-intro {
        font-size: 1rem;
    }
    
    .guide-closing-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .guide-link-separator {
        display: none;
    }
    
    /* Adjust border frame for mobile - only cover and closing */
    [data-bg="cover"] .guide-frame-bg::before,
    [data-bg="closing"] .guide-frame-bg::before {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* Smooth scroll behavior disabled for frames */
.guide-web-page {
    scroll-behavior: auto;
}

/* Hide body scrollbar on guide page */
body.page-template-page-template-freelance-guide-web-php {
    overflow: hidden;
}

body.page-template-page-template-freelance-guide-web-php .guide-web-page {
    overflow: hidden;
}

/* ============================================
   VIDEO LANDING PAGE - How to Start (8 min)
   /start-freelance-career
   ============================================ */
.video-landing-page {
    min-height: 100vh;
}

.video-landing-context-bar {
    background: #1a1a1a;
    padding: 16px;
    text-align: center;
}

.video-landing-context-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 11px 14px;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #000;
    border-radius: 4px;
}

.video-landing-context-dot {
    width: 8px;
    height: 8px;
    background: #c00;
    border-radius: 50%;
    flex-shrink: 0;
}

.video-landing-page .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.video-landing-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.video-landing-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.video-landing-title {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.video-landing-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.video-landing-video-wrap {
    max-width: 660px;
    margin: 0 auto 0.25rem;
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background-color: #1a1a1a;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-landing-video-caption {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.8;
    margin: 0.25rem 0 1.25rem;
}

.video-landing-below-video {
    font-size: 24px;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* CTA reutilizable en toda la landing */
.video-landing-hero .video-landing-cta-btn {
    margin-top: 0.5rem;
}

.video-landing-cta-btn {
    display: inline-block;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
    padding: 22px 2rem;
    max-width: 440px;
    width: 100%;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.video-landing-cta-btn:hover {
    opacity: 0.9;
    color: #000;
}

/* Workshop Section – 3 cards + CTA */
.video-landing-workshop {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.video-landing-workshop-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.video-landing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-landing-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.video-landing-card:hover {
    border-color: #555;
}

.video-landing-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-landing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-landing-card-body {
    padding: 1.25rem;
}

.video-landing-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.video-landing-card-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.video-landing-workshop-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* FAQ Accordion */
.video-landing-faq {
    padding: 5rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.video-landing-faq .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.video-landing-faq-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.video-landing-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.video-landing-faq-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.video-landing-faq-item {
    border-radius: 8px;
    overflow: hidden;
}

.video-landing-faq-item:not(:last-child) {
    margin-bottom: 40px;
}

.video-landing-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 16px;
    background: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

.video-landing-faq-trigger:hover {
    background: #252525;
}

.video-landing-faq-question {
    flex: 1;
    text-align: center;
    padding-right: 40px;
}

.video-landing-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.video-landing-faq-icon::before,
.video-landing-faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

.video-landing-faq-icon::before {
    width: 14px;
    height: 2px;
}

.video-landing-faq-icon::after {
    width: 2px;
    height: 14px;
}

.video-landing-faq-item.is-open .video-landing-faq-icon::after {
    display: none;
}

.video-landing-faq-answer {
    padding: 0;
}

.video-landing-faq-answer-inner {
    padding: 24px 16px;
    background: transparent;
    border: none;
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.video-landing-faq-answer-inner,
.video-landing-faq-answer-inner p {
    font-size: 20px;
}

.video-landing-faq-answer-inner p {
    margin: 0 0 1rem 0;
}

.video-landing-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.video-landing-faq-item.is-open .video-landing-faq-trigger {
    border-radius: 8px 8px 0 0;
    border-bottom-color: transparent;
}

.video-landing-faq-item.is-open .video-landing-faq-answer-inner {
    border-radius: 0 0 8px 8px;
}

/* Video landing responsive */
@media (max-width: 768px) {
    .video-landing-context-bar {
        padding: 12px 1rem;
    }

    .video-landing-context-inner {
        font-size: 10px;
        padding: 8px 10px;
        gap: 6px;
    }

    .video-landing-context-dot {
        width: 6px;
        height: 6px;
    }

    .video-landing-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .video-landing-hero {
        min-height: auto;
        padding: 2.5rem 0 2rem;
    }

    .video-landing-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .video-landing-subtitle {
        font-size: 1.125rem;
    }

    .video-landing-below-video {
        font-size: 1.125rem;
    }

    .video-landing-hero .video-landing-cta-btn {
        font-size: 1.125rem;
        padding: 18px 1.5rem;
        max-width: 100%;
    }

    .video-landing-workshop {
        padding: 3rem 0;
    }

    .video-landing-workshop-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .video-landing-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .video-landing-card-title {
        font-size: 1.125rem;
    }

    .video-landing-card-subtitle {
        font-size: 0.9rem;
    }

    .video-landing-workshop-cta .video-landing-cta-btn {
        font-size: 1.125rem;
        padding: 18px 1.5rem;
    }

    .video-landing-faq {
        padding: 3rem 0;
    }

    .video-landing-faq-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .video-landing-faq-trigger {
        font-size: 1.125rem;
        padding: 18px 12px;
    }

    .video-landing-faq-question {
        padding-right: 32px;
    }

    .video-landing-faq-answer-inner,
    .video-landing-faq-answer-inner p {
        font-size: 1rem;
    }

    .video-landing-faq-answer-inner {
        padding: 18px 12px;
    }

    .video-landing-faq-item:not(:last-child) {
        margin-bottom: 24px;
    }

    .video-landing-faq-cta .video-landing-cta-btn {
        font-size: 1.125rem;
        padding: 18px 1.5rem;
    }

    .video-landing-clarity {
        padding: 3rem 0;
    }

    .video-landing-clarity-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .video-landing-clarity-title {
        font-size: 1.75rem;
    }

    .video-landing-clarity-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .video-landing-clarity-field label {
        font-size: 0.95rem;
    }

    .video-landing-clarity-field input,
    .video-landing-clarity-field select,
    .video-landing-clarity-field textarea {
        padding: 0.75rem 0.875rem;
        font-size: 16px;
    }

    .video-landing-clarity-submit {
        font-size: 1.125rem;
        padding: 18px 1.5rem;
    }

    .video-landing-phone-country {
        padding: 0 0.5rem;
    }

    .video-landing-phone-code {
        font-size: 0.875rem;
    }
}

/* Video Landing Clarity Form */
.video-landing-clarity {
    padding: 5rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.video-landing-clarity-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.video-landing-clarity-title {
    font-family: var(--font-headings);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.video-landing-clarity-intro {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-landing-clarity-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-landing-clarity-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0.5rem 0;
}

.video-landing-clarity-field-hint {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0.375rem 0 0;
    opacity: 0.9;
}

.video-landing-clarity-form-footer {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: center;
}

.video-landing-clarity-field label {
    display: block;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.video-landing-clarity-field input[type="text"],
.video-landing-clarity-field input[type="email"],
.video-landing-clarity-field input[type="tel"],
.video-landing-clarity-field select,
.video-landing-clarity-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    background: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.video-landing-clarity-field input[type="text"]:focus,
.video-landing-clarity-field input[type="email"]:focus,
.video-landing-clarity-field input[type="tel"]:focus,
.video-landing-clarity-field select:focus,
.video-landing-clarity-field textarea:focus {
    outline: none;
    border-color: #555;
}

.video-landing-clarity-field input::placeholder,
.video-landing-clarity-field textarea::placeholder {
    color: #666;
}

.video-landing-clarity-field.is-invalid input:not([type="radio"]),
.video-landing-clarity-field.is-invalid select,
.video-landing-clarity-field.is-invalid textarea {
    border-color: #a55;
}

.video-landing-clarity-field.is-invalid .video-landing-clarity-radios {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #a55;
    background: rgba(170, 85, 85, 0.05);
}

/* Phone with country selector */
.video-landing-phone-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #1a1a1a;
    position: relative;
}

.video-landing-clarity-field.is-invalid .video-landing-phone-wrap {
    border-color: #a55;
}

.video-landing-phone-country {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0 0.75rem;
    cursor: pointer;
    border-right: 1px solid var(--color-border);
    border-radius: 8px 0 0 8px;
    user-select: none;
    min-width: 0;
}

.video-landing-phone-country:hover {
    background: rgba(255, 255, 255, 0.04);
}

.video-landing-phone-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.video-landing-phone-code {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text);
}

.video-landing-phone-arrow {
    font-size: 0.6rem;
    color: var(--color-text-muted);
    transition: transform 0.2s ease;
}

.video-landing-phone-wrap.is-open .video-landing-phone-arrow {
    transform: rotate(180deg);
}

.video-landing-phone-wrap input[type="tel"] {
    flex: 1;
    min-width: 0;
    border: none;
    border-radius: 0 8px 8px 0;
    background: transparent;
}

.video-landing-phone-wrap input[type="tel"]:focus {
    box-shadow: none;
}

.video-landing-phone-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 10;
    max-height: 240px;
    overflow: hidden;
    display: none;
}

.video-landing-phone-wrap.is-open .video-landing-phone-dropdown {
    display: block;
}

.video-landing-phone-search {
    padding: 0.625rem 0.75rem;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: #252525;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.video-landing-phone-search:focus {
    outline: none;
}

.video-landing-phone-search::placeholder {
    color: #666;
}

.video-landing-phone-list {
    max-height: 180px;
    overflow-y: auto;
}

.video-landing-phone-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text);
}

.video-landing-phone-option:hover,
.video-landing-phone-option[aria-selected="true"] {
    background: rgba(255, 255, 255, 0.06);
}

.video-landing-phone-option-flag {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.video-landing-phone-option-name {
    flex: 1;
}

.video-landing-phone-option-dial {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.video-landing-clarity-field-error {
    display: block;
    font-size: 0.875rem;
    color: #c99;
    margin-top: 0.375rem;
}

.video-landing-clarity-field-error:empty {
    display: none;
}

.video-landing-clarity-form-error {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(170, 85, 85, 0.08);
    border: 1px solid rgba(170, 85, 85, 0.3);
    border-radius: 8px;
}

.video-landing-clarity-form-error p {
    margin: 0;
    font-size: 0.95rem;
    color: #c99;
}

.video-landing-clarity-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ccc' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.video-landing-clarity-field textarea {
    resize: vertical;
    min-height: 80px;
}

.video-landing-clarity-radios {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-landing-clarity-radio {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-muted);
}

.video-landing-clarity-radio input {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #fff;
}

.video-landing-clarity-disclaimer {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 0.5rem 0 0;
}

.video-landing-clarity-submit {
    align-self: center;
    margin-top: 0.5rem;
}

.video-landing-clarity-message {
    padding: 1.5rem;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.6;
}

.video-landing-clarity-success {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.video-landing-clarity-error {
    background: rgba(180, 60, 60, 0.1);
    border: 1px solid rgba(180, 60, 60, 0.4);
    color: #e0a0a0;
}

@media (max-width: 768px) {
    .video-landing-clarity {
        padding: 3rem 0;
    }

    .video-landing-clarity-title {
        font-size: 1.75rem;
    }

    .video-landing-clarity-intro {
        margin-bottom: 2rem;
    }
}
