/*
Theme Name: Augusto Sumac
Theme URI: http://augustosumac.com
Author: Augusto Sumac
Description: Tema customizado para desenvolvedor Full Stack e Arquiteto de Software
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, responsive, portfolio
*/

/* Reset & Basics */
:root {
    --primary: #6366f1;
    /* Indigo 500 */
    --primary-dark: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #0ea5e9;
    /* Sky 500 */
    --accent: #10b981;
    /* Emerald 500 */
    --dark-bg: #0f172a;
    /* Slate 900 */
    --darker-bg: #020617;
    /* Slate 950 */
    --card-bg: rgba(30, 41, 59, 0.7);
    /* Slate 800 with opacity */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(148, 163, 184, 0.1);
    --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* WP Core Classes Compatibility */
.aligncenter {
    text-align: center;
}

.alignright {
    text-align: right;
}

.alignleft {
    text-align: left;
}

img.aligncenter,
img.alignnone {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.wp-caption {
    border: 1px solid #ccc;
    text-align: center;
    background-color: #f3f3f3;
    padding-top: 4px;
    margin: 10px;
}

.wp-caption img {
    margin: 0;
    padding: 0;
    border: 0 none;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

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

.text-white {
    color: #ffffff !important;
}


.text-white {
    color: #ffffff !important;
}


.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
}

/* Glassmorphism */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

/* Header */
#masthead {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: 0.3s;
    background: rgba(15, 23, 42, 0.85);
    /* fallback */
}

#masthead.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.logo span {
    color: var(--primary);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.header-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    transition: transform 0.3s ease;
}

.logo-container:hover .header-avatar {
    transform: scale(1.05);
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    margin: 0;
}

.main-navigation a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.main-navigation a:hover {
    color: var(--primary);
}

/* Hero Section */
#hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background glow blobs */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
    filter: blur(50px);
}

.blob-1 {
    top: -200px;
    right: -200px;
}

.blob-2 {
    bottom: -200px;
    left: -200px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections General */
section {
    position: relative;
}

/* Credibility Section */
#credibility {
    padding: 4rem 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-mini-header {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 700;
}

.logos-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.client-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* Services Section */
#services {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-sub {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 1);
    border-color: var(--primary-dark);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(14, 165, 233, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Differentials Section */
#differentials {
    padding: 8rem 0;
    background: var(--darker-bg);
    position: relative;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    margin-top: 0.2rem;
}

.diff-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.diff-item p {
    color: var(--text-muted);
}

/* Credibility Box */
.credibility-box {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.credibility-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cred-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.cred-item strong {
    color: var(--secondary);
    font-size: 1.2rem;
}

.cred-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: right;
}

/* Contact Section */
#contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 4rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.8));
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
}

/* Header Logo Updates removed to allow left/right layout */
.main-navigation {
    margin-left: auto;
    margin-right: 2rem;
}

.header-avatar {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}



/* Portfolio Section */
#portfolio {
    padding: 8rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 2rem;
}

@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .main-navigation {
        margin-left: 0;
        margin-right: 0;
    }


    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Premium Portfolio System --- */
.premium-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent);
}

.section-branding {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.title-xl {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 2px;
}

.modern-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .modern-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.project-case {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-case:hover {
    transform: translateY(-12px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.project-visual {
    position: relative;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-img {
    width: 140px !important;
    height: 140px !important;
    object-fit: contain !important;
    background: white;
    border-radius: 50%;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-placeholder {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.project-case:hover .project-img {
    transform: scale(1.1);
}

.project-category {
    position: absolute;
    top: 10px;
    right: 20px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.project-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.project-tech-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.tech-micro-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    background: rgba(51, 65, 85, 0.4);
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-footer-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.spec-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-col label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 600;
}

.spec-col .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
    border: 2px dashed rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

/* Testimonials Section */
#testimonials {
    padding: 8rem 0;
    background: var(--card-bg);
    /* Use subtle contrast */
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.testimonial-content {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quote-icon-small {
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0.6;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.testimonial-author strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.1rem;
}

/* Contact Styles */

.contact-avatar {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}



.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.9);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Footer structure */
footer#colophon {
    padding: 4rem 0 2rem;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Blog/Content Styles */
.blog-post {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.blog-post h2 a {
    color: white;
}

.blog-post h2 a:hover {
    color: var(--primary);
}

.entry-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.entry-content {
    color: var(--text-muted);
}

.page-header {
    margin-top: calc(var(--header-height) + 2rem);
    margin-bottom: 3rem;
    text-align: center;
}

/* Post Content Typography & Elements (Single Post) */
.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.entry-content h2 {
    font-size: 2rem;
}

.entry-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.entry-content a:hover {
    color: var(--secondary);
}

.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #fff;
}

/* Syntax Highlighting Base */
.entry-content pre {
    background: #1e1e1e !important;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid #333;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    color: #d4d4d4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.entry-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9em;
    color: var(--secondary);
}

.entry-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    border-radius: 0;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Post Navigation */
.post-navigation .nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.post-navigation .nav-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

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

.pagination .page-numbers {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary);
    color: #fff;
}

/* Comments */
.comments-area {
    margin-top: 5rem;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.comment-list {
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.comment-body {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.comment-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
}

.comment-author cite {
    font-style: normal;
    font-weight: 700;
    color: #fff;
    margin-right: 0.5rem;
}

.reply a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: underline;
}

/* Form Styles for Comments */
.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    color: white;
    font-family: inherit;
    margin-bottom: 1.5rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.9);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-form-cookies-consent input {
    width: auto;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-container {
        position: relative;
    }

    .mobile-toggle {
        display: block !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        padding: 10px;
        /* Tap target size */
    }

    .header-cta {
        display: none;
        /* Hide CTA button on mobile to save space */
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .main-navigation.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .main-navigation a {
        font-size: 1.2rem;
        /* Larger text for mobile */
        padding: 10px;
        /* Larger tap target */
        display: block;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 2rem;
    }

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

    .credibility-box {
        position: static;
        margin-top: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .logos-track {
        flex-direction: column;
        gap: 1rem;
    }
}