/*
Theme Name: AEO.com.do
Theme URI: https://aeo.com.do
Author: AEO.com.do
Author URI: https://aeo.com.do
Description: Tema WordPress para AEO.com.do - El recurso definitivo sobre Answer Engine Optimisation en espanol. Directorio de herramientas, recursos y guias de AEO.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aeo-es
*/

/* ================================ */
/* AEO.COM.DO - THEME STYLES */
/* ================================ */

:root {
    --dark: #0f172a;
    --dark-surface: #1e293b;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --accent-glow: rgba(6, 182, 212, 0.15);
    --white: #ffffff;
    --light-gray: #f1f5f9;
    --gray: #64748b;
    --text: #334155;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* General content spacing inside sections */
.aeo-section .container > h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.aeo-section .container > h2:first-child {
    margin-top: 0;
}
.aeo-section .container > p + h2,
.aeo-section .container > div + h2,
.aeo-section .container > ul + h2,
.aeo-section .container > ol + h2 {
    margin-top: 3rem;
}

/* ================================ */
/* HEADER */
/* ================================ */

.site-header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

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

.site-logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-logo .accent {
    color: var(--accent);
}

.site-logo .tld {
    color: var(--gray);
    font-weight: 400;
    font-size: 1rem;
}

.custom-logo-link {
    display: inline-block;
    max-width: 180px;
}

.custom-logo {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: white;
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--accent) !important;
    color: var(--dark) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}

.header-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
}

.header-cta::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* ================================ */
/* HERO SECTION */
/* ================================ */

.aeo-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0c1929 50%, #0e2a3d 100%);
    padding: 100px 2rem 80px;
    position: relative;
    overflow: hidden;
}

.aeo-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(-30px, 30px); opacity: 1; }
}

.aeo-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.aeo-hero-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.aeo-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.aeo-hero h1 .accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aeo-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.aeo-hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--dark) !important;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.aeo-hero-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
    color: var(--dark) !important;
}

/* ================================ */
/* SECTION DEFAULTS */
/* ================================ */

.aeo-section {
    padding: 80px 2rem;
}

.aeo-section-dark {
    background: var(--dark);
    color: white;
}

.aeo-section-gray {
    background: var(--light-gray);
}

.aeo-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.aeo-section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.aeo-section-dark .aeo-section-header h2 {
    color: white;
}

.aeo-section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.aeo-section-dark .aeo-section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* ================================ */
/* DIRECTORY LAYOUT (SIDEBAR + GRID) */
/* ================================ */

.aeo-directory-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Sidebar */
.aeo-sidebar {
    position: sticky;
    top: 80px;
}

.aeo-sidebar-inner {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}

.aeo-filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.aeo-filter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.aeo-filter-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 1rem;
}

.aeo-filter-search input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--light-gray);
    transition: border-color 0.2s ease;
}

.aeo-filter-search input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.aeo-filter-search input::placeholder {
    color: var(--gray);
}

.aeo-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aeo-filter-list li {
    margin-bottom: 0.25rem;
}

.aeo-filter-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
    transition: background 0.15s ease;
}

.aeo-filter-label:hover {
    background: var(--light-gray);
}

.aeo-filter-label input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.aeo-filter-label span:first-of-type {
    flex: 1;
}

.aeo-filter-count {
    background: var(--light-gray);
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
}

.aeo-filter-reset {
    width: 100%;
    padding: 0.6rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aeo-filter-reset:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Top bar */
.aeo-directory-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.aeo-results-count {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

.aeo-mobile-filter-toggle {
    display: none;
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
}

/* No results */
.aeo-no-results {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    padding: 3rem 1rem;
    grid-column: 1 / -1;
}

/* ================================ */
/* TOOL CARDS */
/* ================================ */

.aeo-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.aeo-tool-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.aeo-tool-card.hidden {
    display: none;
}

.aeo-tool-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.1);
    transform: translateY(-3px);
}

.aeo-tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.aeo-tool-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.aeo-tool-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.aeo-tool-category {
    display: inline-block;
    background: var(--light-gray);
    color: var(--gray);
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.aeo-tool-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.aeo-tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.aeo-tool-tag {
    background: rgba(6, 182, 212, 0.08);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.aeo-tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.aeo-tool-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aeo-price-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aeo-price-free {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.aeo-price-freemium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.aeo-price-paid {
    background: rgba(100, 116, 139, 0.1);
    color: var(--gray);
}

.aeo-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.aeo-tool-link:hover {
    gap: 0.75rem;
}

/* ================================ */
/* CTA COMPONENTS */
/* ================================ */

.aeo-cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #0e2a3d 100%);
    padding: 60px 2rem;
    text-align: center;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.aeo-cta-banner h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.aeo-cta-banner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.aeo-inline-cta {
    background: linear-gradient(135deg, var(--dark), #0e2a3d);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.aeo-inline-cta h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.aeo-inline-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.aeo-sidebar-cta {
    background: linear-gradient(135deg, var(--dark), #0e2a3d);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.aeo-sidebar-cta h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.aeo-sidebar-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-cta {
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-cta a {
    color: var(--accent);
    font-weight: 600;
}

/* ================================ */
/* SERVICES PAGE */
/* ================================ */

.aeo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aeo-service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.aeo-service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.1);
    transform: translateY(-3px);
}

.aeo-service-featured {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
}

.aeo-service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.aeo-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.aeo-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.aeo-service-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.aeo-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.aeo-service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.aeo-service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.aeo-service-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--dark) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.aeo-service-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    color: var(--dark) !important;
}

/* Why / Stats Grid */
.aeo-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.aeo-why-item {
    text-align: center;
}

.aeo-why-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.aeo-why-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Process Grid */
.aeo-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.aeo-process-step {
    text-align: center;
}

.aeo-process-num {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.aeo-process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.aeo-process-step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ================================ */
/* WHATSAPP */
/* ================================ */

.aeo-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 997;
    transition: all 0.3s ease;
}

.aeo-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.aeo-whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.aeo-whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-1px);
    color: white !important;
}

.aeo-contact-primary {
    border: 2px solid #25D366;
    background: rgba(37, 211, 102, 0.03);
}

/* ================================ */
/* ARTICLE LAYOUT (GUIDES) */
/* ================================ */

.aeo-article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.aeo-article-content {
    max-width: 720px;
}

.aeo-article-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.aeo-article-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
}

.aeo-article-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.aeo-article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.aeo-article-content ol,
.aeo-article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.aeo-article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.aeo-article-sidebar {
    position: sticky;
    top: 80px;
}

.aeo-article-toc {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.aeo-article-toc h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--dark);
}

.aeo-article-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aeo-article-toc li {
    margin-bottom: 0.4rem;
}

.aeo-article-toc a {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    padding: 0.25rem 0;
}

.aeo-article-toc a:hover {
    color: var(--accent);
}

.aeo-article-cta {
    background: linear-gradient(135deg, var(--dark), #0e2a3d);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.aeo-article-cta h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.aeo-article-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

/* Info Cards Grid */
.aeo-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.aeo-info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
}

.aeo-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.aeo-info-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Comparison Table */
.aeo-comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.aeo-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.aeo-comparison-table th {
    background: var(--dark);
    color: white;
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
}

.aeo-comparison-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    line-height: 1.5;
}

.aeo-comparison-table tr:last-child td {
    border-bottom: none;
}

.aeo-comparison-table tr:nth-child(even) td {
    background: var(--light-gray);
}

/* ================================ */
/* FAQ PAGE */
/* ================================ */

.aeo-faq-section {
    margin-bottom: 3rem;
}

.aeo-faq-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.aeo-faq-item {
    margin-bottom: 2rem;
}

.aeo-faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.aeo-faq-item p {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ================================ */
/* GLOSSARY */
/* ================================ */

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

.aeo-glossary-item {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.aeo-glossary-item:hover {
    border-color: var(--accent);
}

.aeo-glossary-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.aeo-glossary-item p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ================================ */
/* CONTACT */
/* ================================ */

.aeo-contact-options {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ================================ */
/* RESOURCE / GUIDE CARDS */
/* ================================ */

.aeo-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aeo-guide-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.aeo-guide-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.aeo-guide-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dark), var(--dark-surface));
    display: flex;
    align-items: center;
    justify-content: center;
}

.aeo-guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aeo-guide-body {
    padding: 1.5rem;
}

.aeo-guide-type {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.aeo-guide-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.aeo-guide-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================================ */
/* NEWSLETTER SIGNUP */
/* ================================ */

.aeo-newsletter {
    background: linear-gradient(135deg, var(--dark) 0%, #0e2a3d 100%);
    padding: 60px 2rem;
    text-align: center;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.aeo-newsletter h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.aeo-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.aeo-newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.aeo-newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.95rem;
}

.aeo-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.aeo-newsletter-form button {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.aeo-newsletter-form button:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* ================================ */
/* STATS BAR */
/* ================================ */

.aeo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

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

.aeo-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.aeo-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ================================ */
/* BLOG INDEX */
/* ================================ */

/* Featured post */
.aeo-blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.aeo-blog-featured:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.1);
    transform: translateY(-3px);
    color: inherit;
}

.aeo-blog-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.aeo-blog-featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark);
}

.aeo-blog-featured-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.aeo-blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.85rem;
}

.aeo-blog-featured-visual {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), #0e2a3d);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aeo-blog-featured-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aeo-blog-featured-icon {
    font-size: 4rem;
    opacity: 0.4;
}

/* Blog layout with sidebar */
.aeo-blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

/* Blog grid */
.aeo-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.aeo-blog-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog card */
.aeo-blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.aeo-blog-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.1);
    transform: translateY(-3px);
    color: inherit;
}

.aeo-blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--dark-surface));
}

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

.aeo-blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aeo-blog-card-placeholder span {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(6, 182, 212, 0.25);
    letter-spacing: 2px;
}

.aeo-blog-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aeo-blog-card-body time {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.aeo-blog-card-body h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.aeo-blog-card-body p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aeo-blog-card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: auto;
}

.aeo-blog-card:hover .aeo-blog-card-link {
    color: var(--accent-light);
}

/* Blog sidebar */
.aeo-blog-sidebar {
    position: sticky;
    top: 80px;
}

.aeo-blog-sidebar-links {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.aeo-blog-sidebar-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--dark);
}

.aeo-blog-sidebar-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aeo-blog-sidebar-links li {
    margin-bottom: 0.5rem;
}

.aeo-blog-sidebar-links a {
    color: var(--gray);
    font-size: 0.9rem;
    display: block;
    padding: 0.3rem 0;
}

.aeo-blog-sidebar-links a:hover {
    color: var(--accent);
}

/* Blog pagination */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.nav-links .current {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

/* ================================ */
/* SINGLE POST */
/* ================================ */

.aeo-post-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

/* Visible Breadcrumbs [FIX H6] */
.aeo-breadcrumb {
    background: var(--light-gray);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--border);
}

.aeo-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
}

.aeo-breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--gray);
}

.aeo-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--border);
}

.aeo-breadcrumb a {
    color: var(--gray);
    text-decoration: none;
}

.aeo-breadcrumb a:hover {
    color: var(--accent);
}

.aeo-breadcrumb li[aria-current="page"] {
    color: var(--text);
    font-weight: 500;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aeo-post-back {
    color: var(--accent) !important;
    font-weight: 600;
    text-decoration: none;
}

.aeo-post-hero-sep {
    color: rgba(255, 255, 255, 0.3);
}

.aeo-post-hero-meta time,
.aeo-post-hero-meta span {
    color: rgba(255, 255, 255, 0.6);
}

.aeo-blog-read-time {
    font-size: 0.85rem;
}

.aeo-post-featured-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.aeo-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.aeo-post-content .entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.aeo-post-content .entry-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    scroll-margin-top: 90px;
}

.aeo-post-content .entry-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.aeo-post-content .entry-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.aeo-post-content .entry-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.aeo-post-content .entry-content a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(6, 182, 212, 0.3);
    text-underline-offset: 2px;
}

.aeo-post-content .entry-content a:hover {
    text-decoration-color: var(--accent);
}

.aeo-post-content .entry-content strong {
    color: var(--dark);
    font-weight: 700;
}

/* Post category link in hero */
.aeo-post-cat-link {
    color: var(--accent) !important;
    font-weight: 600;
    text-decoration: none;
}

/* Post tags */
.aeo-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.aeo-post-tag {
    display: inline-block;
    background: rgba(6, 182, 212, 0.08);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.aeo-post-tag:hover {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-light);
}

/* Blog card category pill */
.aeo-blog-card-cat {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Blog card footer (date + link) */
.aeo-blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.aeo-blog-card-footer time {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0;
}

/* Sidebar category count */
.aeo-cat-count {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 400;
}

/* ================================ */
/* FOOTER */
/* ================================ */

.site-footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(6, 182, 212, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ================================ */
/* RESPONSIVE */
/* ================================ */

@media (max-width: 968px) {
    .aeo-blog-featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .aeo-blog-featured-visual {
        order: -1;
    }

    .aeo-blog-layout {
        grid-template-columns: 1fr;
    }

    .aeo-blog-grid {
        grid-template-columns: 1fr;
    }

    .aeo-blog-grid-3 {
        grid-template-columns: 1fr;
    }

    .aeo-blog-sidebar {
        position: static;
    }

    .aeo-directory-layout {
        grid-template-columns: 1fr;
    }

    .aeo-article-layout {
        grid-template-columns: 1fr;
    }

    .aeo-article-sidebar {
        position: static;
        order: -1;
    }

    .aeo-why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .aeo-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .aeo-services-grid {
        grid-template-columns: 1fr;
    }

    .aeo-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        z-index: 999;
        background: white;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 1.5rem;
    }

    .aeo-sidebar.active {
        left: 0;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    }

    .aeo-sidebar-inner {
        border: none;
        padding: 0;
    }

    .aeo-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }

    .aeo-sidebar-overlay.active {
        display: block;
    }

    .aeo-mobile-filter-toggle {
        display: inline-block;
    }

    .aeo-tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .main-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(6, 182, 212, 0.2);
    }

    .main-navigation.active ul {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .aeo-hero {
        padding: 60px 1.5rem;
    }

    .aeo-guides-grid {
        grid-template-columns: 1fr;
    }

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

    .aeo-newsletter-form {
        flex-direction: column;
    }

    .aeo-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================ */
/* BRAND + ACCESSIBILITY PASS (v1.2.0) */
/* ================================ */

:root {
    --accent-text: #0e7490; /* WCAG AA cyan for text on light backgrounds */
}

/* Links on light backgrounds need 4.5:1. #06b6d4 on white is 2.4:1, #0e7490 is 5.4:1 */
body a {
    color: var(--accent-text);
}
.site-header a, .site-footer a, .aeo-hero a, .aeo-section-dark a, .aeo-newsletter a {
    color: inherit;
}
body a:hover {
    color: var(--accent);
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--accent);
    color: var(--dark) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 10px 0;
    font-weight: 700;
}
.skip-link:focus {
    left: 0;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* SVG logo sizing */
.site-logo-img {
    display: block;
    height: 42px;
    width: auto;
}
@media (max-width: 768px) {
    .site-logo-img { height: 34px; }
}

/* Form feedback messages */
.aeo-form-msg {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.aeo-form-msg.success { color: var(--success); }
.aeo-form-msg.error { color: #fca5a5; }
.aeo-section .aeo-form-msg.error { color: #b91c1c; }

/* ================================ */
/* INTERACTIVE TOOL PAGES */
/* ================================ */

.aeo-app {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    margin: 2rem 0;
}

.aeo-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .aeo-app-grid { grid-template-columns: 1fr; }
}

.aeo-app label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin: 1rem 0 0.35rem;
    font-size: 0.92rem;
}

.aeo-app input[type="text"],
.aeo-app input[type="url"],
.aeo-app input[type="email"],
.aeo-app select,
.aeo-app textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--light-gray);
}
.aeo-app textarea {
    min-height: 140px;
    resize: vertical;
}
.aeo-app input:focus, .aeo-app select:focus, .aeo-app textarea:focus {
    outline: 3px solid var(--accent);
    outline-offset: 1px;
    background: white;
}

.aeo-app-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 1.25rem;
    transition: all 0.2s ease;
}
.aeo-app-btn:hover { background: var(--accent-light); }
.aeo-app-btn.secondary {
    background: transparent;
    border: 2px solid var(--accent-text);
    color: var(--accent-text);
}

.aeo-app-output {
    background: var(--dark);
    color: #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.82rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 480px;
    overflow: auto;
    margin-top: 1rem;
}

.aeo-app-output:empty { display: none; }

/* SERP preview */
.aeo-serp-preview {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
    background: white;
    font-family: Arial, sans-serif;
}
.aeo-serp-url { color: #202124; font-size: 0.8rem; }
.aeo-serp-title { color: #1a0dab; font-size: 1.25rem; margin: 0.2rem 0; line-height: 1.3; }
.aeo-serp-desc { color: #4d5156; font-size: 0.88rem; line-height: 1.55; }

.aeo-char-count {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 0.3rem;
}
.aeo-char-count.over { color: #b91c1c; font-weight: 700; }
.aeo-char-count.good { color: var(--success); }

/* Checker results */
.aeo-check-list { list-style: none; margin-top: 1rem; }
.aeo-check-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}
.aeo-check-icon { flex-shrink: 0; font-weight: 800; }
.aeo-check-pass .aeo-check-icon { color: var(--success); }
.aeo-check-fail .aeo-check-icon { color: #b91c1c; }
.aeo-check-warn .aeo-check-icon { color: var(--warning); }

.aeo-score-badge {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--dark);
    background: var(--accent-glow);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
}

/* Free tools hub cards */
.aeo-free-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.aeo-free-tool-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.25s ease;
    display: block;
    text-decoration: none;
}
.aeo-free-tool-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.12);
}
.aeo-free-tool-card h3 { margin: 0.75rem 0 0.5rem; font-size: 1.1rem; }
.aeo-free-tool-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }
.aeo-free-tool-emoji { font-size: 2rem; }
.aeo-free-tool-badge {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent-text);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-top: 0.75rem;
}

/* ================================ */
/* FOOTER LAYOUT v2 (4 balanced columns) */
/* ================================ */

.footer-content {
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-brand p {
    max-width: 260px;
}

.footer-bottom nav a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}
.footer-bottom nav a:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom nav a {
        display: block;
        margin: 0.4rem 0;
    }
}
