/**
 * Axcera Design CSS — propfirmprovider.net
 * Dark violet/purple B2B SaaS theme inspired by axcera.io
 */

/* ============================================================
   BASE / RESET OVERRIDES
   ============================================================ */
body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: 0.01em;
}

a { color: var(--color-primary-light); }
a:hover { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: rgba(10, 6, 18, 0.92);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #a370ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    background: rgba(136, 77, 255, 0.12);
}

.nav-dropdown {
    background: #1a1525;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.nav-dropdown-link {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.875rem;
}

.nav-dropdown-link:hover {
    background: rgba(136, 77, 255, 0.12);
    color: #fff;
}

.header-cta {
    background: linear-gradient(135deg, #884dff, #2d62ff);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(136, 77, 255, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(136, 77, 255, 0.6);
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #884dff 0%, #2d62ff 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(136, 77, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(136, 77, 255, 0.7);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #ebebeb;
    border: 1px solid rgba(235, 235, 235, 0.2);
}

.btn-secondary:hover {
    background: rgba(235, 235, 235, 0.08);
    border-color: rgba(235, 235, 235, 0.4);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-primary-light);
    border: 1px solid rgba(136, 77, 255, 0.5);
}

.btn-outline-primary:hover {
    background: rgba(136, 77, 255, 0.1);
    border-color: var(--color-primary);
    color: #fff;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ax-hero {
    position: relative;
    min-height: min(calc(100vh - var(--header-height)), 820px);
    display: flex;
    align-items: center;
    background: var(--color-bg);
    overflow: hidden;
}

.ax-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(136, 77, 255, 0.2) 0%, rgba(45, 98, 255, 0.1) 40%, transparent 70%);
    pointer-events: none;
}

.ax-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0 4rem;
}

.ax-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(136, 77, 255, 0.12);
    border: 1px solid rgba(136, 77, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    color: #a370ff;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.ax-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.ax-hero-title span {
    background: linear-gradient(135deg, #884dff 0%, #2d62ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ax-hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(235, 235, 235, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.ax-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.ax-hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ax-hero-trust-stat {
    text-align: center;
}

.ax-hero-trust-stat .stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.ax-hero-trust-stat .stat-lbl {
    font-size: 0.75rem;
    color: rgba(235, 235, 235, 0.5);
    display: block;
}

.ax-hero-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.ax-hero-image {
    position: relative;
}

.ax-hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(136, 77, 255, 0.2);
}

.ax-hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(136, 77, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* ============================================================
   AWARDS / SOCIAL PROOF SECTION
   ============================================================ */
.ax-awards {
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(26, 21, 37, 0.5);
}

.ax-awards-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ax-awards-label {
    font-size: 0.8125rem;
    color: rgba(235, 235, 235, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.ax-awards-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ax-awards-logos img {
    height: 28px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}

.ax-awards-logos img:hover { opacity: 1; }

/* ============================================================
   FEATURES SECTION ("Scale Your Firm")
   ============================================================ */
.ax-features {
    padding: 5rem 0;
    background: var(--color-bg);
}

.ax-section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
    margin-bottom: 1rem;
}

.ax-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.ax-section-subtitle {
    font-size: 1rem;
    color: rgba(235, 235, 235, 0.6);
    line-height: 1.7;
    max-width: 600px;
}

.ax-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ax-feature-card {
    background: #1a1525;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ax-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(136, 77, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.ax-feature-card:hover {
    border-color: rgba(136, 77, 255, 0.3);
    box-shadow: 0 8px 30px rgba(136, 77, 255, 0.15);
    transform: translateY(-4px);
}

.ax-feature-card:hover::before { opacity: 1; }

.ax-feature-screenshot {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(235, 235, 235, 0.08);
}

.ax-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(136, 77, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-primary-light);
}

.ax-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.ax-feature-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.ax-feature-desc {
    font-size: 0.875rem;
    color: rgba(235, 235, 235, 0.55);
    line-height: 1.65;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.ax-stats {
    padding: 5rem 0;
    background: #f8f8fa;
    position: relative;
}

.ax-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ax-stats-text .ax-section-title { color: #110d1a; }
.ax-stats-text .ax-section-subtitle { color: #555; }

.ax-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ax-stat-item {
    text-align: left;
}

.ax-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #110d1a;
    line-height: 1;
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.ax-stat-label {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

/* ============================================================
   EVERYTHING YOU NEED ("How it works" / Features list)
   ============================================================ */
.ax-howto {
    padding: 5rem 0;
    background: #110d1a;
}

.ax-howto-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ax-howto-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    counter-reset: howto-counter;
}

.ax-howto-item {
    counter-increment: howto-counter;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(235, 235, 235, 0.08);
    cursor: pointer;
    transition: all 0.2s;
}

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

.ax-howto-item.active .ax-howto-item-text { color: #fff; }

.ax-howto-num {
    width: 28px;
    height: 28px;
    background: rgba(136, 77, 255, 0.15);
    border: 1px solid rgba(136, 77, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary-light);
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.ax-howto-item-text {
    font-size: 0.9375rem;
    color: rgba(235, 235, 235, 0.6);
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s;
}

.ax-howto-item:hover .ax-howto-item-text { color: #ebebeb; }

.ax-howto-image {
    position: relative;
}

.ax-howto-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(235, 235, 235, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   INTEGRATIONS SECTION
   ============================================================ */
.ax-integrations {
    padding: 5rem 0;
    background: var(--color-bg);
    text-align: center;
    overflow: hidden;
}

.ax-int-track {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    overflow: hidden;
}

.ax-int-scroll {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
    animation: intScroll 30s linear infinite;
}

.ax-int-scroll.reverse {
    animation-direction: reverse;
    animation-duration: 35s;
}

@keyframes intScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ax-int-logo {
    height: 48px;
    width: auto;
    border-radius: var(--radius-md);
    background: #1a1525;
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.ax-int-logo img {
    height: 30px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

/* ============================================================
   CATEGORIES / TOPICS SECTION
   ============================================================ */
.ax-topics {
    padding: 5rem 0;
    background: #110d1a;
}

.ax-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ax-topic-card {
    background: #1a1525;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ax-topic-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ax-topic-card:hover {
    border-color: rgba(136, 77, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(136, 77, 255, 0.15);
}

.ax-topic-card:hover::after { transform: scaleX(1); }

.ax-topic-icon {
    width: 48px;
    height: 48px;
    background: rgba(136, 77, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-primary-light);
}

.ax-topic-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.ax-topic-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.ax-topic-count {
    font-size: 0.8125rem;
    color: rgba(235, 235, 235, 0.45);
}

/* ============================================================
   TAGS SECTION
   ============================================================ */
.ax-tags {
    padding: 4rem 0;
    background: var(--color-bg);
}

.ax-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.ax-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(136, 77, 255, 0.08);
    border: 1px solid rgba(136, 77, 255, 0.2);
    border-radius: var(--radius-full);
    text-decoration: none;
    color: rgba(235, 235, 235, 0.75);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.ax-tag-pill:hover {
    background: rgba(136, 77, 255, 0.18);
    border-color: rgba(136, 77, 255, 0.5);
    color: #fff;
}

.ax-tag-pill .count {
    font-size: 0.75rem;
    color: rgba(235, 235, 235, 0.4);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.ax-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0612 0%, #1a1525 50%, #0a0612 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ax-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(136, 77, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.ax-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.ax-cta-subtitle {
    font-size: 1rem;
    color: rgba(235, 235, 235, 0.6);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.ax-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================================
   PAGE HERO (Internal Pages)
   ============================================================ */
.ax-page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #110d1a 0%, #0a0612 100%);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.ax-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(136, 77, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.ax-page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: rgba(235, 235, 235, 0.45);
}

.ax-page-hero-breadcrumb a {
    color: rgba(235, 235, 235, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.ax-page-hero-breadcrumb a:hover { color: var(--color-primary-light); }

.ax-page-hero-breadcrumb .sep { color: rgba(235, 235, 235, 0.25); }

.ax-page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.ax-page-hero-sub {
    font-size: 0.9375rem;
    color: rgba(235, 235, 235, 0.6);
    line-height: 1.6;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.ax-article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    padding: 3rem 0;
}

.ax-article-body {
    background: #110d1a;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.ax-article-body h1, .ax-article-body h2,
.ax-article-body h3, .ax-article-body h4 {
    color: #fff;
}

.ax-article-body p, .ax-article-body li,
.ax-article-body td, .ax-article-body th {
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.75;
}

.ax-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ax-sidebar-widget {
    background: #1a1525;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.ax-sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.ax-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.ax-article-tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background: rgba(136, 77, 255, 0.1);
    border: 1px solid rgba(136, 77, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: rgba(235, 235, 235, 0.7);
    text-decoration: none;
    transition: all 0.2s;
}

.ax-article-tag:hover {
    background: rgba(136, 77, 255, 0.2);
    color: #fff;
}

/* Related Articles */
.ax-related-card {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    align-items: flex-start;
    transition: all 0.2s;
}

.ax-related-card:last-child { border-bottom: none; }

.ax-related-card:hover .ax-related-title { color: var(--color-primary-light); }

.ax-related-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.ax-related-title {
    font-size: 0.8125rem;
    color: rgba(235, 235, 235, 0.75);
    line-height: 1.45;
    font-weight: 500;
    transition: color 0.2s;
}

/* ============================================================
   CATEGORY / SUBCATEGORY PAGES
   ============================================================ */
.ax-cat-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    padding: 3rem 0;
}

.ax-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.ax-article-card {
    background: #1a1525;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ax-article-card:hover {
    border-color: rgba(136, 77, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ax-article-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.ax-article-card-body {
    padding: 1.125rem;
    flex: 1;
}

.ax-article-card-cat {
    font-size: 0.75rem;
    color: var(--color-primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.ax-article-card-title {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   CAROUSEL / KEYWORDS
   ============================================================ */
.ax-carousel-section {
    padding: 3rem 0;
    background: #13101e;
    overflow: hidden;
}

.ax-carousel-row {
    display: flex;
    gap: 0.75rem;
    animation: carouselScroll var(--carousel-speed-row1) linear infinite;
    width: max-content;
    margin-bottom: 0.75rem;
}

.ax-carousel-row.reverse {
    animation-direction: reverse;
    animation-duration: var(--carousel-speed-row2);
}

.ax-carousel-row.slow {
    animation-duration: var(--carousel-speed-row3);
}

@keyframes carouselScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.kw-pill {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0.5rem 1.125rem;
    background: rgba(136, 77, 255, 0.08);
    border: 1px solid rgba(136, 77, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(235, 235, 235, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.kw-pill:hover {
    background: rgba(136, 77, 255, 0.18);
    border-color: rgba(136, 77, 255, 0.5);
    color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #06030d;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 2.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(235, 235, 235, 0.45);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(235, 235, 235, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(235, 235, 235, 0.35);
    margin: 0;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(235, 235, 235, 0.25) !important;
    max-width: 700px;
    line-height: 1.5;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.mobile-nav {
    background: #0f0c1a;
    border-left: 1px solid var(--color-border);
}

.mobile-nav-link {
    color: rgba(235, 235, 235, 0.8);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--color-primary-light);
}

/* ============================================================
   FORMS
   ============================================================ */
.ax-form-field {
    margin-bottom: 1.25rem;
}

.ax-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(235, 235, 235, 0.7);
    margin-bottom: 0.5rem;
}

.ax-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(26, 21, 37, 0.8);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.9375rem;
    font-family: var(--font-main);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ax-form-input:focus {
    outline: none;
    border-color: rgba(136, 77, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(136, 77, 255, 0.1);
}

.ax-form-input::placeholder { color: rgba(235, 235, 235, 0.3); }

/* ============================================================
   PAGINATION
   ============================================================ */
.ax-pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.ax-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: #1a1525;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: rgba(235, 235, 235, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.ax-page-btn:hover, .ax-page-btn.active {
    background: rgba(136, 77, 255, 0.15);
    border-color: rgba(136, 77, 255, 0.4);
    color: #fff;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
    background: #1a1525;
    border: 1px solid var(--color-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.modal-header {
    border-bottom: 1px solid var(--color-border);
    background: #13101e;
}

.modal-title { color: #fff; }

.modal-close {
    color: rgba(235, 235, 235, 0.5);
    background: transparent;
    border: none;
    cursor: pointer;
}

.modal-close:hover { color: #fff; }

.modal-overlay { background: rgba(6, 3, 13, 0.8); }

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.ax-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ax-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 0 3rem;
    }

    .ax-hero-subtitle { max-width: none; }

    .ax-hero-buttons { justify-content: center; }

    .ax-hero-trust { justify-content: center; }

    .ax-hero-image { max-width: 600px; margin: 0 auto; }

    .ax-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ax-stats-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ax-howto-inner {
        grid-template-columns: 1fr;
    }

    .ax-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .ax-cat-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

    .ax-topics-grid {
        grid-template-columns: 1fr;
    }

    .ax-articles-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .ax-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .ax-cta-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .ax-stats-grid {
        grid-template-columns: 1fr;
    }

    .ax-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
