/* Oxford Modern Style - Auto-themed */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400..800&family=Source+Sans+3:wght@400..700&display=swap");

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Palette */
    --abke-navy: #191428;
    --abke-navy-light: #413c4d;
    --abke-navy-dark: #0a201d;
    --abke-copper: #38c1f5;
    --abke-copper-light: #73d1f5;
    --abke-copper-dark: #0a80c6;
    --abke-teal: #8e99b2;
    --abke-teal-light: #cddde9;
    --abke-teal-dark: #5d768e;
    --abke-cream: #f1f5f9;
    --abke-cream-dark: #dee4e8;
    --abke-white: #ffffff;
    --abke-black: #050a10;
    --abke-gray-100: #f7f8fa;
    --abke-gray-200: #e9ecf0;
    --abke-gray-300: #d8d0dc;
    --abke-gray-400: #9a99aa;
    --abke-gray-500: #627b76;
    --abke-gray-600: #4c5868;
    --abke-gray-700: #2d4251;
    --abke-gray-800: #1f2436;
    --abke-text: #0a1121;
    --abke-text-light: #6f7b88;
    --abke-text-muted: #637583;
    --abke-success: #1d7b6b;
    --abke-danger: #bc3424;
    --abke-warning: #da8d61;

    /* Typography */
    --abke-font-body: 'Inter', sans-serif;
    --abke-font-heading: 'Playfair Display', serif;
    --abke-fs-xs: 0.75rem;
    --abke-fs-sm: 0.875rem;
    --abke-fs-base: 1rem;
    --abke-fs-md: 1.125rem;
    --abke-fs-lg: 1.25rem;
    --abke-fs-xl: 1.5rem;
    --abke-fs-2xl: 1.875rem;
    --abke-fs-3xl: 2.25rem;
    --abke-fs-4xl: 3rem;
    --abke-fs-5xl: 3.75rem;
    --abke-lh-tight: 1.2;
    --abke-lh-snug: 1.35;
    --abke-lh-normal: 1.6;
    --abke-lh-relaxed: 1.75;

    /* Spacing */
    --abke-space-xs: 0.25rem;
    --abke-space-sm: 0.5rem;
    --abke-space-md: 1rem;
    --abke-space-lg: 1.5rem;
    --abke-space-xl: 2rem;
    --abke-space-2xl: 3rem;
    --abke-space-3xl: 4rem;
    --abke-space-4xl: 6rem;

    /* Borders — sharp for buttons, soft for cards */
    --abke-radius-sharp: 3px;
    --abke-radius-sm: 3px;
    --abke-radius-md: 11px;
    --abke-radius-card: 11px;
    --abke-radius-pill: 22px;
    --abke-radius-full: 50%;

    /* Shadows — copper-tinted */
    --abke-shadow-sm: 0 2px 8px rgba(179,118,46,0.08);
    --abke-shadow-md: 0 4px 16px rgba(176,108,53,0.12);
    --abke-shadow-lg: 0 8px 32px rgba(177,122,45,0.16);
    --abke-shadow-xl: 0 16px 48px rgba(182,111,52,0.2);
    --abke-shadow-copper: 0 4px 20px rgba(183,109,44,0.25);
    --abke-shadow-navy: 0 4px 20px rgba(11,27,45,0.3);
    --abke-shadow-inner: inset 0 2px 8px rgba(181,108,43,0.1);

    /* Transitions */
    --abke-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --abke-duration: 0.3s;
    --abke-duration-slow: 0.5s;

    /* Layout */
    --abke-container-max: 1200px;
    --abke-container-narrow: 900px;
    --abke-header-height: 80px;
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-base);
    line-height: var(--abke-lh-normal);
    color: var(--abke-text);
    background-color: var(--abke-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--abke-copper);
    text-decoration: none;
    transition: color var(--abke-duration) var(--abke-ease);
}

a:hover {
    color: var(--abke-copper-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--abke-font-heading);
    font-weight: 700;
    line-height: var(--abke-lh-tight);
    color: var(--abke-navy);
}

::selection {
    background: var(--abke-copper);
    color: var(--abke-white);
}

/* ==========================================================================
   2. READING PROGRESS BAR
   ========================================================================== */
.abke-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--abke-copper), var(--abke-teal));
    z-index: 10000;
    transition: width 0.15s linear;
    border-radius: 0 3px 1px 0;
}

/* ==========================================================================
   3. LAYOUT — CONTAINER
   ========================================================================== */
.abke-container {
    width: 100%;
    max-width: var(--abke-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--abke-space-lg);
    padding-right: var(--abke-space-lg);
}

/* ==========================================================================
   4. HEADER — Glass Morphism Style
   ========================================================================== */
.abke-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--abke-header-height);
    z-index: 1000;
    background: rgba(17,34,52,0.65);
    backdrop-filter: blur(23px) saturate(180%);
    -webkit-backdrop-filter: blur(19px) saturate(180%);
    border-bottom: 1px solid rgba(187,112,50,0.15);
    transition: background var(--abke-duration) var(--abke-ease),
                box-shadow var(--abke-duration) var(--abke-ease);
}

.abke-header.scrolled {
    background: rgba(15,21,51,0.92);
    box-shadow: 0 4px 30px rgba(16,27,43,0.4);
}

.abke-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: 0 var(--abke-space-lg);
}

/* Logo */
.abke-logo {
    display: flex;
    align-items: center;
    gap: var(--abke-space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.abke-logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-light));
    border-radius: var(--abke-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--abke-font-heading);
    font-weight: 800;
    font-size: var(--abke-fs-lg);
    color: var(--abke-white);
    box-shadow: 0 2px 12px rgba(190,113,56,0.35);
    position: relative;
    overflow: hidden;
}

.abke-logo-mark::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 60%
    );
    animation: abke-logo-shine 3s infinite;
}

@keyframes abke-logo-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.abke-logo-text {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-lg);
    font-weight: 700;
    color: var(--abke-white);
    letter-spacing: 0.02em;
}

.abke-logo-text span {
    color: var(--abke-copper-light);
}

/* Navigation */
.abke-nav {
    display: flex;
    align-items: center;
    gap: var(--abke-space-xl);
}

.abke-nav-link {
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    padding: var(--abke-space-xs) 0;
    transition: color var(--abke-duration) var(--abke-ease);
}

.abke-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--abke-copper);
    transition: width var(--abke-duration) var(--abke-ease);
}

.abke-nav-link:hover,
.abke-nav-link.active {
    color: var(--abke-white);
}

.abke-nav-link:hover::after,
.abke-nav-link.active::after {
    width: 100%;
}

/* Burger Menu */
.abke-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 35px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1100;
}

.abke-burger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--abke-white);
    border-radius: 3px;
    transition: transform var(--abke-duration) var(--abke-ease),
                opacity var(--abke-duration) var(--abke-ease);
}

.abke-burger.active .abke-burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.abke-burger.active .abke-burger-bar:nth-child(2) {
    opacity: 0;
}

.abke-burger.active .abke-burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.abke-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--abke-navy);
    padding: calc(var(--abke-header-height) + var(--abke-space-xl)) var(--abke-space-xl) var(--abke-space-xl);
    flex-direction: column;
    gap: var(--abke-space-sm);
    transition: right var(--abke-duration-slow) var(--abke-ease);
    z-index: 1050;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.abke-mobile-nav.open {
    right: 0;
}

.abke-mobile-link {
    display: block;
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-md);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: var(--abke-space-md) 0;
    border-bottom: 2px solid rgba(179,113,54,0.15);
    transition: color var(--abke-duration) var(--abke-ease),
                padding-left var(--abke-duration) var(--abke-ease);
}

.abke-mobile-link:hover {
    color: var(--abke-copper-light);
    padding-left: var(--abke-space-sm);
}

/* Mobile nav overlay */
.abke-mobile-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--abke-duration-slow) var(--abke-ease);
    z-index: -1;
}

.abke-mobile-nav.open::before {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   5. HERO — Navy-to-Teal Gradient with Geometric Pattern Overlay
   ========================================================================== */
.abke-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--abke-header-height) + var(--abke-space-4xl)) var(--abke-space-lg) var(--abke-space-4xl);
    background: linear-gradient(135deg, #0a1e26 0%, #234056 50%, #0a4b74 100%);
    overflow: hidden;
}

/* Geometric pattern overlay — CSS only */
.abke-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Diagonal thin lines */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(177,117,53,0.04) 40px,
            rgba(182,110,44,0.04) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(183,116,51,0.04) 40px,
            rgba(180,114,43,0.04) 41px
        ),
        /* Hexagonal-ish dots pattern */
        radial-gradient(circle 2px at 30px 30px, rgba(23,126,116,0.12) 2px, transparent 2px),
        radial-gradient(circle 2px at 90px 60px, rgba(186,117,50,0.1) 2px, transparent 2px),
        radial-gradient(circle 1.5px at 60px 90px, rgba(29,114,115,0.08) 1.5px, transparent 1.5px);
    background-size: 56px 56px, 56px 56px, 120px 120px, 120px 120px, 120px 120px;
    pointer-events: none;
    z-index: 1;
}

/* Secondary geometric overlay — larger shapes */
.abke-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Large translucent copper ring top-right */
        radial-gradient(circle 200px at 85% 15%, rgba(184,116,49,0.06) 0%, rgba(185,114,56,0.02) 40%, transparent 60%),
        /* Teal glow bottom-left */
        radial-gradient(circle 300px at 10% 80%, rgba(32,127,106,0.08) 0%, transparent 50%),
        /* Subtle vignette */
        radial-gradient(ellipse at center, transparent 50%, rgba(17,21,36,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.abke-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    text-align: center;
}

.abke-hero-content h1 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-5xl);
    font-weight: 800;
    color: var(--abke-white);
    line-height: var(--abke-lh-tight);
    margin-bottom: var(--abke-space-lg);
    text-shadow: 0 1px 21px rgba(0, 0, 0, 0.3);
}

.abke-hero-content h1 span {
    color: var(--abke-copper-light);
}

.abke-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--abke-space-sm);
    background: rgba(189,121,46,0.15);
    border: 1px solid rgba(178,111,54,0.3);
    color: var(--abke-copper-light);
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--abke-space-sm) var(--abke-space-lg);
    border-radius: var(--abke-radius-pill);
    margin-bottom: var(--abke-space-xl);
    backdrop-filter: blur(11px);
}

.abke-hero-desc {
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--abke-lh-relaxed);
    margin-bottom: var(--abke-space-2xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.abke-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--abke-space-md);
    flex-wrap: wrap;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.abke-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--abke-space-sm);
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 35px;
    border: 1px solid transparent;
    border-radius: var(--abke-radius-sharp);
    cursor: pointer;
    transition: all var(--abke-duration) var(--abke-ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.abke-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--abke-duration-slow) var(--abke-ease);
}

.abke-btn:hover::before {
    left: 100%;
}

.abke-btn-primary {
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    color: var(--abke-white);
    border-color: var(--abke-copper);
    box-shadow: 0 4px 16px rgba(177,108,44,0.35);
}

.abke-btn-primary:hover {
    background: linear-gradient(135deg, var(--abke-copper-light), var(--abke-copper));
    box-shadow: 0 6px 24px rgba(182,121,52,0.45);
    transform: translateY(-2px);
    color: var(--abke-white);
}

.abke-btn-outline {
    background: transparent;
    color: var(--abke-white);
    border-color: rgba(255, 255, 255, 0.35);
}

.abke-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--abke-white);
    color: var(--abke-white);
    transform: translateY(-2px);
}

.abke-btn-dark {
    background: var(--abke-navy);
    color: var(--abke-white);
    border-color: var(--abke-navy);
    box-shadow: var(--abke-shadow-navy);
}

.abke-btn-dark:hover {
    background: var(--abke-navy-light);
    box-shadow: 0 6px 24px rgba(12,30,44,0.4);
    transform: translateY(-2px);
    color: var(--abke-white);
}

/* ==========================================================================
   7. AUTHOR BOX
   ========================================================================== */
.abke-author-box {
    display: flex;
    align-items: flex-start;
    gap: var(--abke-space-lg);
    padding: var(--abke-space-xl);
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    box-shadow: var(--abke-shadow-md);
    margin: var(--abke-space-2xl) 0;
    border: 2px solid var(--abke-gray-200);
}

.abke-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--abke-radius-full);
    object-fit: cover;
    border: 4px solid var(--abke-copper);
    box-shadow: 0 4px 12px rgba(186,108,58,0.2);
    flex-shrink: 0;
}

.abke-author-info {
    flex: 1;
    min-width: 0;
}

.abke-author-label {
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--abke-copper);
    margin-bottom: var(--abke-space-xs);
}

.abke-author-name {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-xl);
    font-weight: 700;
    color: var(--abke-navy);
    margin-bottom: 1px;
}

.abke-author-title {
    font-size: var(--abke-fs-sm);
    color: var(--abke-text-light);
    margin-bottom: var(--abke-space-sm);
}

.abke-author-bio {
    font-size: var(--abke-fs-sm);
    color: var(--abke-text);
    line-height: var(--abke-lh-relaxed);
}

/* ==========================================================================
   8. CONTENT & ARTICLE
   ========================================================================== */
.abke-content {
    padding: var(--abke-space-3xl) 0;
}

.abke-article {
    max-width: var(--abke-container-narrow);
    margin: 0 auto;
    font-size: var(--abke-fs-md);
    line-height: var(--abke-lh-relaxed);
    color: var(--abke-text);
}

.abke-article h2 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-3xl);
    font-weight: 700;
    color: var(--abke-navy);
    margin-top: var(--abke-space-3xl);
    margin-bottom: var(--abke-space-lg);
    padding-bottom: var(--abke-space-sm);
    border-bottom: 2px solid var(--abke-copper);
    display: inline-block;
}

.abke-article h3 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-xl);
    font-weight: 600;
    color: var(--abke-navy);
    margin-top: var(--abke-space-2xl);
    margin-bottom: var(--abke-space-md);
}

.abke-article p {
    margin-bottom: var(--abke-space-lg);
}

/* Copper horizontal line bullets */
.abke-article ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--abke-space-lg);
}

.abke-article ul li {
    position: relative;
    padding-left: 29px;
    margin-bottom: var(--abke-space-sm);
    line-height: var(--abke-lh-relaxed);
}

.abke-article ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 16px;
    height: 2px;
    background: var(--abke-copper);
    border-radius: 2px;
}

.abke-article ol {
    padding-left: var(--abke-space-xl);
    margin-bottom: var(--abke-space-lg);
}

.abke-article ol li {
    margin-bottom: var(--abke-space-sm);
    padding-left: var(--abke-space-sm);
}

.abke-article ol li::marker {
    color: var(--abke-copper);
    font-weight: 700;
}

.abke-article-image {
    width: 100%;
    border-radius: var(--abke-radius-card);
    box-shadow: var(--abke-shadow-lg);
    margin: var(--abke-space-2xl) 0;
}

.abke-article blockquote {
    border-left: 4px solid var(--abke-copper);
    background: var(--abke-white);
    margin: var(--abke-space-xl) 0;
    padding: var(--abke-space-lg) var(--abke-space-xl);
    border-radius: 0 var(--abke-radius-card) var(--abke-radius-card) 0;
    font-style: italic;
    color: var(--abke-text-light);
    box-shadow: var(--abke-shadow-sm);
}

/* ==========================================================================
   9. COMPANIES / COMPARISON TABLE
   ========================================================================== */
.abke-companies-section {
    padding: var(--abke-space-4xl) 0;
    background: var(--abke-navy);
}

.abke-companies-wrapper {
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: 0 var(--abke-space-lg);
}

.abke-companies-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    overflow: hidden;
    box-shadow: var(--abke-shadow-lg);
}

.abke-companies-table thead {
    background: linear-gradient(135deg, var(--abke-navy), var(--abke-navy-light));
}

.abke-companies-table th {
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    padding: var(--abke-space-lg) var(--abke-space-md);
    text-align: left;
    border-bottom: 2px solid var(--abke-copper);
}

.abke-companies-table td {
    padding: var(--abke-space-md) var(--abke-space-md);
    vertical-align: middle;
    border-bottom: 1px solid var(--abke-gray-200);
    font-size: var(--abke-fs-sm);
    color: var(--abke-text);
}

.abke-companies-table tr:last-child td {
    border-bottom: none;
}

.abke-companies-table tr:hover td {
    background: rgba(184,112,56,0.03);
}

.abke-rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    color: var(--abke-white);
    font-weight: 700;
    font-size: var(--abke-fs-sm);
    border-radius: var(--abke-radius-sm);
}

.abke-company-name {
    font-family: var(--abke-font-heading);
    font-weight: 700;
    font-size: var(--abke-fs-base);
    color: var(--abke-navy);
}

.abke-company-highlight {
    font-size: var(--abke-fs-xs);
    color: var(--abke-teal);
    font-weight: 500;
    margin-top: 2px;
}

/* Stars */
.abke-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.abke-star {
    width: 18px;
    height: 13px;
    background: var(--abke-gray-300);
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%,
        79% 91%, 50% 70%, 21% 91%, 32% 57%,
        2% 35%, 39% 35%
    );
    transition: background var(--abke-duration) var(--abke-ease);
}

.abke-star.filled {
    background: var(--abke-copper);
}

.abke-rating-num {
    font-weight: 700;
    font-size: var(--abke-fs-sm);
    color: var(--abke-navy);
    margin-left: var(--abke-space-xs);
}

.abke-bbb-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    font-size: var(--abke-fs-xs);
    font-weight: 700;
    color: var(--abke-white);
    background: var(--abke-teal);
    border-radius: var(--abke-radius-sharp);
    letter-spacing: 0.04em;
}

.abke-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.abke-features-list li {
    position: relative;
    padding-left: 18px;
    font-size: var(--abke-fs-xs);
    color: var(--abke-text-light);
    margin-bottom: 5px;
    line-height: 1.4;
}

.abke-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 2px;
    background: var(--abke-copper);
    border-radius: 2px;
}

.abke-table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 25px;
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--abke-white);
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    border: none;
    border-radius: var(--abke-radius-sharp);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--abke-duration) var(--abke-ease);
    box-shadow: 0 2px 8px rgba(185,109,48,0.3);
    white-space: nowrap;
}

.abke-table-btn:hover {
    background: linear-gradient(135deg, var(--abke-copper-light), var(--abke-copper));
    box-shadow: 0 4px 16px rgba(190,115,55,0.4);
    transform: translateY(-1px);
    color: var(--abke-white);
}

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */
.abke-testimonials {
    padding: var(--abke-space-4xl) 0;
    background: var(--abke-cream);
    overflow: hidden;
}

.abke-section-header {
    text-align: center;
    margin-bottom: var(--abke-space-3xl);
}

.abke-section-label {
    display: inline-block;
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--abke-copper);
    margin-bottom: var(--abke-space-sm);
    position: relative;
    padding: 0 var(--abke-space-xl);
}

.abke-section-label::before,
.abke-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--abke-copper);
}

.abke-section-label::before {
    left: 0;
}

.abke-section-label::after {
    right: 0;
}

.abke-section-title {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-3xl);
    font-weight: 700;
    color: var(--abke-navy);
}

/* Slider */
.abke-testimonial-slider {
    position: relative;
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: 0 var(--abke-space-lg);
}

.abke-testimonial-track {
    display: flex;
    gap: var(--abke-space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: var(--abke-space-md) 0;
}

.abke-testimonial-track::-webkit-scrollbar {
    display: none;
}

.abke-testimonial-slide {
    flex: 0 0 calc(33.333% - var(--abke-space-lg));
    scroll-snap-align: start;
    min-width: 300px;
}

.abke-testimonial-card {
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    padding: var(--abke-space-xl);
    box-shadow: var(--abke-shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--abke-gray-200);
    transition: box-shadow var(--abke-duration) var(--abke-ease),
                transform var(--abke-duration) var(--abke-ease);
}

.abke-testimonial-card:hover {
    box-shadow: var(--abke-shadow-xl);
    transform: translateY(-4px);
}

.abke-testimonial-quote {
    color: var(--abke-copper);
    font-size: 48px;
    font-family: var(--abke-font-heading);
    line-height: 1;
    margin-bottom: var(--abke-space-sm);
    opacity: 0.6;
}

.abke-testimonial-text {
    font-size: var(--abke-fs-sm);
    color: var(--abke-text);
    line-height: var(--abke-lh-relaxed);
    flex: 1;
    margin-bottom: var(--abke-space-lg);
}

.abke-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--abke-space-md);
    border-top: 1px solid var(--abke-gray-200);
    padding-top: var(--abke-space-md);
}

.abke-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--abke-radius-full);
    object-fit: cover;
    border: 1px solid var(--abke-copper-light);
    flex-shrink: 0;
}

.abke-testimonial-meta {
    min-width: 0;
}

.abke-testimonial-name {
    font-weight: 700;
    font-size: var(--abke-fs-sm);
    color: var(--abke-navy);
}

.abke-testimonial-role {
    font-size: var(--abke-fs-xs);
    color: var(--abke-text-muted);
}

/* Dots */
.abke-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--abke-space-sm);
    margin-top: var(--abke-space-2xl);
}

.abke-testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--abke-radius-full);
    background: var(--abke-gray-300);
    border: none;
    cursor: pointer;
    transition: all var(--abke-duration) var(--abke-ease);
    padding: 0;
}

.abke-testimonial-dot.active {
    background: var(--abke-copper);
    width: 28px;
    border-radius: var(--abke-radius-pill);
}

/* ==========================================================================
   11. FAQ — Bordered left with copper line, no circle icons
   ========================================================================== */
.abke-faq {
    padding: var(--abke-space-4xl) 0;
    background: var(--abke-white);
}

.abke-faq-list {
    max-width: var(--abke-container-narrow);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--abke-space-md);
}

.abke-faq-item {
    background: var(--abke-cream);
    border-left: 4px solid var(--abke-copper);
    border-radius: 0 var(--abke-radius-md) var(--abke-radius-md) 0;
    overflow: hidden;
    transition: box-shadow var(--abke-duration) var(--abke-ease);
}

.abke-faq-item:hover {
    box-shadow: var(--abke-shadow-sm);
}

.abke-faq-item.active {
    border-left-color: var(--abke-teal);
    box-shadow: var(--abke-shadow-md);
}

.abke-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--abke-space-lg) var(--abke-space-xl);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-base);
    font-weight: 600;
    color: var(--abke-navy);
    text-align: left;
    line-height: var(--abke-lh-snug);
    transition: color var(--abke-duration) var(--abke-ease);
    gap: var(--abke-space-md);
}

.abke-faq-question:hover {
    color: var(--abke-copper);
}

.abke-faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform var(--abke-duration) var(--abke-ease);
}

/* Plus/minus lines (no circle) */
.abke-faq-icon::before,
.abke-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--abke-copper);
    transition: transform var(--abke-duration) var(--abke-ease),
                opacity var(--abke-duration) var(--abke-ease);
}

.abke-faq-icon::before {
    top: 50%;
    left: 2px;
    right: 2px;
    height: 2px;
    transform: translateY(-50%);
}

.abke-faq-icon::after {
    left: 50%;
    top: 2px;
    bottom: 2px;
    width: 2px;
    transform: translateX(-50%);
}

.abke-faq-item.active .abke-faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.abke-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--abke-duration-slow) var(--abke-ease);
}

.abke-faq-item.active .abke-faq-answer {
    max-height: 600px;
}

.abke-faq-answer-content {
    padding: 0 var(--abke-space-xl) var(--abke-space-lg);
    font-size: var(--abke-fs-sm);
    color: var(--abke-text-light);
    line-height: var(--abke-lh-relaxed);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.abke-footer {
    background: var(--abke-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--abke-space-4xl) 0 0;
}

.abke-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--abke-space-2xl);
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: 0 var(--abke-space-lg) var(--abke-space-3xl);
}

.abke-footer-brand {
    max-width: 300px;
}

.abke-footer-brand p {
    font-size: var(--abke-fs-sm);
    line-height: var(--abke-lh-relaxed);
    margin-top: var(--abke-space-md);
}

.abke-footer-col h4 {
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--abke-copper-light);
    margin-bottom: var(--abke-space-lg);
}

.abke-footer-col a {
    display: block;
    font-size: var(--abke-fs-sm);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: var(--abke-space-xs) 0;
    transition: color var(--abke-duration) var(--abke-ease),
                padding-left var(--abke-duration) var(--abke-ease);
}

.abke-footer-col a:hover {
    color: var(--abke-copper-light);
    padding-left: var(--abke-space-sm);
}

.abke-footer-disclaimer {
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: var(--abke-space-xl) var(--abke-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--abke-fs-xs);
    color: rgba(255, 255, 255, 0.4);
    line-height: var(--abke-lh-relaxed);
}

.abke-footer-bottom {
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: var(--abke-space-lg) var(--abke-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--abke-fs-xs);
    color: rgba(255, 255, 255, 0.4);
}

.abke-footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.abke-footer-bottom a:hover {
    color: var(--abke-copper-light);
}

/* ==========================================================================
   13. COMPARISON SECTION
   ========================================================================== */
.abke-comparison-section {
    padding: var(--abke-space-4xl) 0;
    background: var(--abke-cream);
}

.abke-comparison-wrapper {
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: 0 var(--abke-space-lg);
    overflow-x: auto;
}

.abke-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    overflow: hidden;
    box-shadow: var(--abke-shadow-lg);
    min-width: 600px;
}

.abke-comparison-table th {
    background: var(--abke-navy);
    color: var(--abke-white);
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-sm);
    font-weight: 700;
    padding: var(--abke-space-lg) var(--abke-space-md);
    text-align: center;
    border-bottom: 2px solid var(--abke-copper);
}

.abke-comparison-table th:first-child {
    text-align: left;
}

.abke-comparison-table td {
    padding: var(--abke-space-md);
    border-bottom: 1px solid var(--abke-gray-200);
    text-align: center;
    font-size: var(--abke-fs-sm);
    color: var(--abke-text);
}

.abke-comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--abke-navy);
}

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

.abke-comparison-table tr:hover td {
    background: rgba(182,112,43,0.03);
}

.abke-check {
    color: var(--abke-teal);
    font-size: var(--abke-fs-lg);
    font-weight: 700;
}

.abke-check::before {
    content: '\2713';
}

.abke-cross {
    color: var(--abke-danger);
    font-size: var(--abke-fs-lg);
    font-weight: 700;
}

.abke-cross::before {
    content: '\2717';
}

/* ==========================================================================
   14. NEWSLETTER
   ========================================================================== */
.abke-newsletter {
    padding: var(--abke-space-4xl) 0;
    background: linear-gradient(135deg, var(--abke-navy), var(--abke-navy-dark));
    position: relative;
    overflow: hidden;
}

.abke-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 300px at 20% 50%, rgba(183,110,51,0.08), transparent),
        radial-gradient(circle 200px at 80% 50%, rgba(22,123,108,0.06), transparent);
    pointer-events: none;
}

.abke-newsletter-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--abke-space-lg);
}

.abke-newsletter-inner h2 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-3xl);
    color: var(--abke-white);
    margin-bottom: var(--abke-space-md);
}

.abke-newsletter-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--abke-fs-base);
    margin-bottom: var(--abke-space-xl);
}

.abke-newsletter-form {
    display: flex;
    gap: var(--abke-space-sm);
    max-width: 480px;
    margin: 0 auto var(--abke-space-md);
}

.abke-newsletter-input {
    flex: 1;
    padding: 11px 23px;
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-sm);
    color: var(--abke-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--abke-radius-sharp);
    outline: none;
    transition: border-color var(--abke-duration) var(--abke-ease),
                background var(--abke-duration) var(--abke-ease);
}

.abke-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.abke-newsletter-input:focus {
    border-color: var(--abke-copper);
    background: rgba(255, 255, 255, 0.12);
}

.abke-newsletter-btn {
    padding: 12px 29px;
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--abke-white);
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    border: none;
    border-radius: var(--abke-radius-sharp);
    cursor: pointer;
    transition: all var(--abke-duration) var(--abke-ease);
    white-space: nowrap;
}

.abke-newsletter-btn:hover {
    background: linear-gradient(135deg, var(--abke-copper-light), var(--abke-copper));
    box-shadow: 0 4px 16px rgba(190,114,47,0.4);
}

.abke-newsletter-note {
    font-size: var(--abke-fs-xs);
    color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   15. REVIEW PAGE
   ========================================================================== */
.abke-review-meta {
    display: flex;
    align-items: center;
    gap: var(--abke-space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--abke-space-xl);
    padding-bottom: var(--abke-space-lg);
    border-bottom: 2px solid var(--abke-gray-200);
}

.abke-review-rating-hero {
    display: flex;
    align-items: center;
    gap: var(--abke-space-md);
    background: var(--abke-cream);
    padding: var(--abke-space-lg) var(--abke-space-xl);
    border-radius: var(--abke-radius-card);
    box-shadow: var(--abke-shadow-sm);
}

.abke-rating-score {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-4xl);
    font-weight: 800;
    color: var(--abke-copper);
    line-height: 1;
}

.abke-review-badge-hero {
    display: inline-flex;
    align-items: center;
    padding: var(--abke-space-sm) var(--abke-space-md);
    background: var(--abke-teal);
    color: var(--abke-white);
    font-size: var(--abke-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--abke-radius-sharp);
}

.abke-review-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--abke-space-2xl);
    align-items: flex-start;
}

.abke-review-main {
    min-width: 0;
}

.abke-review-intro {
    font-size: var(--abke-fs-md);
    color: var(--abke-text);
    line-height: var(--abke-lh-relaxed);
    margin-bottom: var(--abke-space-2xl);
    padding: var(--abke-space-xl);
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    border-left: 5px solid var(--abke-copper);
    box-shadow: var(--abke-shadow-sm);
}

/* Quick Facts */
.abke-quick-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--abke-space-md);
    margin-bottom: var(--abke-space-2xl);
}

.abke-quick-fact {
    background: var(--abke-white);
    padding: var(--abke-space-lg);
    border-radius: var(--abke-radius-card);
    box-shadow: var(--abke-shadow-sm);
    border: 1px solid var(--abke-gray-200);
}

.abke-quick-label {
    font-size: var(--abke-fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--abke-text-muted);
    font-weight: 600;
    margin-bottom: var(--abke-space-xs);
}

.abke-quick-value {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-lg);
    font-weight: 700;
    color: var(--abke-navy);
}

/* Pros & Cons */
.abke-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--abke-space-lg);
    margin-bottom: var(--abke-space-2xl);
}

.abke-pros,
.abke-cons {
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    padding: var(--abke-space-xl);
    box-shadow: var(--abke-shadow-sm);
}

.abke-pros {
    border-top: 4px solid var(--abke-teal);
}

.abke-cons {
    border-top: 4px solid var(--abke-danger);
}

.abke-pros h3,
.abke-cons h3 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-lg);
    margin-bottom: var(--abke-space-md);
}

.abke-pros h3 {
    color: var(--abke-teal);
}

.abke-cons h3 {
    color: var(--abke-danger);
}

.abke-pros ul,
.abke-cons ul {
    list-style: none;
    padding: 0;
}

.abke-pros li,
.abke-cons li {
    position: relative;
    padding-left: 24px;
    margin-bottom: var(--abke-space-sm);
    font-size: var(--abke-fs-sm);
    color: var(--abke-text);
    line-height: var(--abke-lh-normal);
}

.abke-pros li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 14px;
    height: 2px;
    background: var(--abke-teal);
}

.abke-cons li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 14px;
    height: 2px;
    background: var(--abke-danger);
}

/* Review Sections */
.abke-review-section {
    margin-bottom: var(--abke-space-2xl);
}

.abke-review-section h2 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-2xl);
    color: var(--abke-navy);
    margin-bottom: var(--abke-space-lg);
    padding-bottom: var(--abke-space-sm);
    border-bottom: 2px solid var(--abke-copper);
    display: inline-block;
}

.abke-review-section p {
    font-size: var(--abke-fs-base);
    line-height: var(--abke-lh-relaxed);
    margin-bottom: var(--abke-space-md);
}

/* Fee Table */
.abke-fee-table-wrapper {
    overflow-x: auto;
    margin: var(--abke-space-xl) 0;
    border-radius: var(--abke-radius-card);
    box-shadow: var(--abke-shadow-md);
}

.abke-fee-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--abke-white);
    min-width: 400px;
}

.abke-fee-table th {
    background: var(--abke-navy);
    color: var(--abke-white);
    font-size: var(--abke-fs-sm);
    font-weight: 700;
    padding: var(--abke-space-md) var(--abke-space-lg);
    text-align: left;
    border-bottom: 2px solid var(--abke-copper);
}

.abke-fee-table td {
    padding: var(--abke-space-md) var(--abke-space-lg);
    border-bottom: 1px solid var(--abke-gray-200);
    font-size: var(--abke-fs-sm);
    color: var(--abke-text);
}

.abke-fee-table tr:last-child td {
    border-bottom: none;
}

.abke-fee-table tr:hover td {
    background: rgba(188,117,54,0.03);
}

/* Verdict */
.abke-verdict {
    background: linear-gradient(135deg, var(--abke-navy), var(--abke-navy-light));
    color: var(--abke-white);
    padding: var(--abke-space-2xl);
    border-radius: var(--abke-radius-card);
    margin: var(--abke-space-2xl) 0;
    box-shadow: var(--abke-shadow-navy);
}

.abke-verdict h2 {
    font-family: var(--abke-font-heading);
    color: var(--abke-copper-light);
    font-size: var(--abke-fs-2xl);
    margin-bottom: var(--abke-space-md);
    border-bottom: none;
}

.abke-verdict p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--abke-fs-base);
    line-height: var(--abke-lh-relaxed);
}

/* Review FAQ */
.abke-review-faq {
    margin: var(--abke-space-2xl) 0;
}

/* Review Sidebar */
.abke-review-sidebar {
    position: sticky;
    top: calc(var(--abke-header-height) + var(--abke-space-lg));
    display: flex;
    flex-direction: column;
    gap: var(--abke-space-lg);
}

.abke-sidebar-cta {
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    color: var(--abke-white);
    padding: var(--abke-space-xl);
    border-radius: var(--abke-radius-card);
    text-align: center;
    box-shadow: var(--abke-shadow-copper);
}

.abke-sidebar-cta h3 {
    font-family: var(--abke-font-heading);
    color: var(--abke-white);
    font-size: var(--abke-fs-xl);
    margin-bottom: var(--abke-space-sm);
}

.abke-sidebar-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--abke-fs-sm);
    margin-bottom: var(--abke-space-lg);
}

.abke-sidebar-compare {
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    padding: var(--abke-space-xl);
    box-shadow: var(--abke-shadow-md);
    border: 1px solid var(--abke-gray-200);
}

.abke-sidebar-compare h4 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-lg);
    color: var(--abke-navy);
    margin-bottom: var(--abke-space-lg);
}

.abke-compare-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--abke-space-sm) 0;
    border-bottom: 2px solid var(--abke-gray-200);
}

.abke-compare-item:last-child {
    border-bottom: none;
}

.abke-compare-name {
    font-weight: 600;
    font-size: var(--abke-fs-sm);
    color: var(--abke-navy);
}

.abke-compare-rating {
    font-weight: 700;
    font-size: var(--abke-fs-sm);
    color: var(--abke-copper);
}

/* ==========================================================================
   16. PAGE HEADER & STATIC PAGES
   ========================================================================== */
.abke-page-header {
    padding: calc(var(--abke-header-height) + var(--abke-space-3xl)) var(--abke-space-lg) var(--abke-space-3xl);
    background: linear-gradient(165deg, var(--abke-navy), var(--abke-navy-dark));
    text-align: center;
    position: relative;
}

.abke-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--abke-cream));
}

.abke-page-title {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-4xl);
    color: var(--abke-white);
    margin-bottom: var(--abke-space-md);
}

.abke-page-subtitle {
    font-size: var(--abke-fs-md);
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

.abke-static-page {
    max-width: var(--abke-container-narrow);
    margin: 0 auto;
    padding: var(--abke-space-3xl) var(--abke-space-lg);
}

.abke-static-page h2 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-2xl);
    color: var(--abke-navy);
    margin-top: var(--abke-space-2xl);
    margin-bottom: var(--abke-space-md);
}

.abke-static-page p {
    margin-bottom: var(--abke-space-md);
    line-height: var(--abke-lh-relaxed);
}

/* Breadcrumb */
.abke-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--abke-space-sm);
    font-size: var(--abke-fs-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--abke-space-lg);
    justify-content: center;
}

.abke-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--abke-duration) var(--abke-ease);
}

.abke-breadcrumb a:hover {
    color: var(--abke-copper-light);
}

.abke-breadcrumb span {
    color: var(--abke-copper-light);
}

/* ==========================================================================
   17. CONTACT PAGE
   ========================================================================== */
.abke-contact-section {
    padding: var(--abke-space-3xl) 0;
}

.abke-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--abke-space-3xl);
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: 0 var(--abke-space-lg);
}

.abke-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--abke-space-xl);
}

.abke-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--abke-space-md);
}

.abke-contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    border-radius: var(--abke-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--abke-white);
    font-size: var(--abke-fs-lg);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(182,108,51,0.25);
}

.abke-contact-details h4 {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-base);
    color: var(--abke-navy);
    margin-bottom: var(--abke-space-xs);
}

.abke-contact-details p,
.abke-contact-details a {
    font-size: var(--abke-fs-sm);
    color: var(--abke-text-light);
}

/* Contact Form */
.abke-contact-form {
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    padding: var(--abke-space-2xl);
    box-shadow: var(--abke-shadow-lg);
    border: 1px solid var(--abke-gray-200);
}

.abke-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--abke-space-md);
}

.abke-form-group {
    margin-bottom: var(--abke-space-lg);
}

.abke-form-label {
    display: block;
    font-size: var(--abke-fs-sm);
    font-weight: 600;
    color: var(--abke-navy);
    margin-bottom: var(--abke-space-sm);
}

.abke-form-input,
.abke-form-select,
.abke-form-textarea {
    width: 100%;
    padding: 14px 13px;
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-sm);
    color: var(--abke-text);
    background: var(--abke-cream);
    border: 1px solid var(--abke-gray-300);
    border-radius: var(--abke-radius-sm);
    outline: none;
    transition: border-color var(--abke-duration) var(--abke-ease),
                box-shadow var(--abke-duration) var(--abke-ease);
}

.abke-form-input:focus,
.abke-form-select:focus,
.abke-form-textarea:focus {
    border-color: var(--abke-copper);
    box-shadow: 0 0 0 3px rgba(183,121,50,0.12);
}

.abke-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b87333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 41px;
}

.abke-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.abke-form-submit {
    width: 100%;
    padding: 19px;
    font-family: var(--abke-font-body);
    font-size: var(--abke-fs-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--abke-white);
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    border: none;
    border-radius: var(--abke-radius-sharp);
    cursor: pointer;
    transition: all var(--abke-duration) var(--abke-ease);
    box-shadow: 0 4px 16px rgba(180,111,58,0.3);
}

.abke-form-submit:hover {
    background: linear-gradient(135deg, var(--abke-copper-light), var(--abke-copper));
    box-shadow: 0 6px 24px rgba(181,109,49,0.4);
    transform: translateY(-2px);
}

.abke-form-success {
    display: none;
    text-align: center;
    padding: var(--abke-space-2xl);
}

.abke-form-success.show {
    display: block;
}

.abke-form-success p {
    font-size: var(--abke-fs-lg);
    color: var(--abke-teal);
    font-weight: 600;
}

/* ==========================================================================
   18. ENHANCED COMPONENTS
   ========================================================================== */

/* Scroll-to-top */
.abke-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--abke-copper);
    color: var(--abke-white);
    border: none;
    border-radius: var(--abke-radius-sm);
    cursor: pointer;
    font-size: var(--abke-fs-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--abke-shadow-copper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--abke-duration) var(--abke-ease);
    z-index: 900;
}

.abke-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.abke-scroll-top:hover {
    background: var(--abke-copper-light);
    transform: translateY(-3px);
}

/* Table of Contents */
.abke-toc {
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    padding: var(--abke-space-xl);
    margin: var(--abke-space-2xl) 0;
    box-shadow: var(--abke-shadow-sm);
    border: 1px solid var(--abke-gray-200);
    border-left: 4px solid var(--abke-copper);
}

.abke-toc-title {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-lg);
    font-weight: 700;
    color: var(--abke-navy);
    margin-bottom: var(--abke-space-md);
}

.abke-toc-list {
    list-style: none;
    padding: 0;
}

.abke-toc-list li {
    margin-bottom: var(--abke-space-sm);
}

.abke-toc-list a {
    font-size: var(--abke-fs-sm);
    color: var(--abke-text-light);
    text-decoration: none;
    padding-left: var(--abke-space-md);
    display: block;
    position: relative;
    transition: color var(--abke-duration) var(--abke-ease),
                padding-left var(--abke-duration) var(--abke-ease);
}

.abke-toc-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 2px;
    background: var(--abke-copper);
    transform: translateY(-50%);
    transition: width var(--abke-duration) var(--abke-ease);
}

.abke-toc-list a:hover {
    color: var(--abke-copper);
    padding-left: calc(var(--abke-space-md) + 5px);
}

.abke-toc-list a:hover::before {
    width: 12px;
}

/* Social Share */
.abke-share {
    display: flex;
    align-items: center;
    gap: var(--abke-space-md);
    margin: var(--abke-space-xl) 0;
    padding: var(--abke-space-lg) 0;
    border-top: 1px solid var(--abke-gray-200);
    border-bottom: 1px solid var(--abke-gray-200);
}

.abke-share-label {
    font-size: var(--abke-fs-sm);
    font-weight: 600;
    color: var(--abke-navy);
    white-space: nowrap;
}

.abke-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--abke-radius-sm);
    border: 2px solid var(--abke-gray-300);
    background: var(--abke-white);
    color: var(--abke-text-light);
    font-size: var(--abke-fs-base);
    cursor: pointer;
    transition: all var(--abke-duration) var(--abke-ease);
    text-decoration: none;
}

.abke-share-btn:hover {
    border-color: transparent;
    color: var(--abke-white);
    transform: translateY(-2px);
    box-shadow: var(--abke-shadow-sm);
}

.abke-share-twitter:hover {
    background: #269cf3;
}

.abke-share-facebook:hover {
    background: #1571ed;
}

.abke-share-linkedin:hover {
    background: #126db8;
}

.abke-share-copy:hover {
    background: var(--abke-copper);
}

/* Related Articles */
.abke-related {
    padding: var(--abke-space-4xl) 0;
    background: var(--abke-cream);
}

.abke-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--abke-space-xl);
    max-width: var(--abke-container-max);
    margin: 0 auto;
    padding: 0 var(--abke-space-lg);
}

.abke-related-card {
    background: var(--abke-white);
    border-radius: var(--abke-radius-card);
    overflow: hidden;
    box-shadow: var(--abke-shadow-md);
    transition: transform var(--abke-duration) var(--abke-ease),
                box-shadow var(--abke-duration) var(--abke-ease);
    text-decoration: none;
    display: block;
    border: 1px solid var(--abke-gray-200);
}

.abke-related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--abke-shadow-xl);
}

.abke-related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.abke-related-content {
    padding: var(--abke-space-lg);
}

.abke-related-tag {
    display: inline-block;
    font-size: var(--abke-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--abke-copper);
    margin-bottom: var(--abke-space-sm);
}

.abke-related-title {
    font-family: var(--abke-font-heading);
    font-size: var(--abke-fs-lg);
    font-weight: 700;
    color: var(--abke-navy);
    line-height: var(--abke-lh-snug);
    transition: color var(--abke-duration) var(--abke-ease);
}

.abke-related-card:hover .abke-related-title {
    color: var(--abke-copper);
}

/* Video Wrapper */
.abke-video-wrapper {
    margin: var(--abke-space-2xl) 0;
}

.abke-video-container {
    position: relative;
    width: 100%;
    border-radius: var(--abke-radius-card);
    overflow: hidden;
    box-shadow: var(--abke-shadow-lg);
    background: var(--abke-navy);
}

.abke-video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

.abke-video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--abke-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.abke-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity var(--abke-duration) var(--abke-ease);
}

.abke-video-placeholder:hover img {
    opacity: 0.4;
}

.abke-video-play {
    position: absolute;
    width: 72px;
    height: 72px;
    background: var(--abke-copper);
    border-radius: var(--abke-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(186,118,57,0.5);
    transition: transform var(--abke-duration) var(--abke-ease),
                box-shadow var(--abke-duration) var(--abke-ease);
}

.abke-video-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 15px 24px;
    border-color: transparent transparent transparent var(--abke-white);
    margin-left: 3px;
}

.abke-video-placeholder:hover .abke-video-play {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(187,108,48,0.6);
}

.abke-video-caption {
    text-align: center;
    font-size: var(--abke-fs-sm);
    color: var(--abke-text-muted);
    margin-top: var(--abke-space-sm);
    font-style: italic;
}

/* ==========================================================================
   19. ANIMATIONS
   ========================================================================== */
@keyframes abke-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes abke-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes abke-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Utility animation classes */
.abke-animate-in {
    animation: abke-fadeInUp 0.6s var(--abke-ease) forwards;
}

.abke-animate-fade {
    animation: abke-fadeIn 0.5s var(--abke-ease) forwards;
}

/* ==========================================================================
   20. RESPONSIVE — 1024px (Tablets landscape)
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --abke-fs-5xl: 3rem;
        --abke-fs-4xl: 2.5rem;
        --abke-fs-3xl: 2rem;
    }

    .abke-hero {
        min-height: 520px;
    }

    .abke-review-layout {
        grid-template-columns: 1fr 280px;
        gap: var(--abke-space-xl);
    }

    .abke-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--abke-space-xl);
    }

    .abke-footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

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

    .abke-testimonial-slide {
        flex: 0 0 calc(50% - var(--abke-space-md));
    }

    .abke-contact-grid {
        gap: var(--abke-space-2xl);
    }

    .abke-quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   21. RESPONSIVE — 768px (Tablets portrait)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --abke-fs-5xl: 2.5rem;
        --abke-fs-4xl: 2rem;
        --abke-fs-3xl: 1.75rem;
        --abke-fs-2xl: 1.5rem;
        --abke-header-height: 70px;
    }

    /* Header / Navigation */
    .abke-nav {
        display: none;
    }

    .abke-burger {
        display: flex;
    }

    .abke-mobile-nav {
        display: flex;
    }

    /* Hero */
    .abke-hero {
        min-height: 480px;
        padding-top: calc(var(--abke-header-height) + var(--abke-space-3xl));
        padding-bottom: var(--abke-space-3xl);
    }

    .abke-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .abke-hero-actions .abke-btn {
        text-align: center;
    }

    /* Author Box */
    .abke-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Companies Table — horizontal scroll */
    .abke-companies-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .abke-companies-table {
        min-width: 700px;
    }

    /* Review Layout */
    .abke-review-layout {
        grid-template-columns: 1fr;
    }

    .abke-review-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--abke-space-md);
    }

    .abke-pros-cons {
        grid-template-columns: 1fr;
    }

    .abke-quick-facts {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .abke-contact-grid {
        grid-template-columns: 1fr;
    }

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

    /* Footer */
    .abke-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--abke-space-xl);
    }

    .abke-footer-bottom {
        flex-direction: column;
        gap: var(--abke-space-sm);
        text-align: center;
    }

    /* Testimonials */
    .abke-testimonial-slide {
        flex: 0 0 calc(100% - var(--abke-space-lg));
    }

    /* Related */
    .abke-related-grid {
        grid-template-columns: 1fr;
    }

    /* Newsletter */
    .abke-newsletter-form {
        flex-direction: column;
    }

    /* Share */
    .abke-share {
        flex-wrap: wrap;
    }

    /* Video */
    .abke-video-play {
        width: 56px;
        height: 56px;
    }

    .abke-video-play::after {
        border-width: 7px 0 13px 17px;
    }
}

/* ==========================================================================
   22. RESPONSIVE — 480px (Mobile)
   ========================================================================== */
@media (max-width: 480px) {
    :root {
        --abke-fs-5xl: 2rem;
        --abke-fs-4xl: 1.75rem;
        --abke-fs-3xl: 1.5rem;
        --abke-fs-2xl: 1.25rem;
        --abke-fs-xl: 1.125rem;
        --abke-header-height: 60px;
        --abke-space-4xl: 4rem;
        --abke-space-3xl: 3rem;
    }

    .abke-container {
        padding-left: var(--abke-space-md);
        padding-right: var(--abke-space-md);
    }

    /* Header */
    .abke-logo-text {
        font-size: var(--abke-fs-base);
    }

    .abke-logo-mark {
        width: 36px;
        height: 36px;
        font-size: var(--abke-fs-base);
    }

    /* Hero */
    .abke-hero {
        min-height: 420px;
        padding-top: calc(var(--abke-header-height) + var(--abke-space-2xl));
        padding-bottom: var(--abke-space-2xl);
    }

    .abke-hero-badge {
        font-size: var(--abke-fs-xs);
        padding: var(--abke-space-xs) var(--abke-space-md);
    }

    .abke-hero-desc {
        font-size: var(--abke-fs-base);
    }

    .abke-btn {
        padding: 15px 23px;
        font-size: var(--abke-fs-xs);
        width: 100%;
    }

    /* Article */
    .abke-article {
        font-size: var(--abke-fs-base);
    }

    .abke-article h2 {
        font-size: var(--abke-fs-2xl);
    }

    /* Review */
    .abke-review-sidebar {
        grid-template-columns: 1fr;
    }

    .abke-review-rating-hero {
        flex-direction: column;
        text-align: center;
    }

    .abke-quick-facts {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .abke-faq-question {
        padding: var(--abke-space-md) var(--abke-space-lg);
        font-size: var(--abke-fs-sm);
    }

    .abke-faq-answer-content {
        padding: 0 var(--abke-space-lg) var(--abke-space-md);
        font-size: var(--abke-fs-xs);
    }

    /* Testimonial */
    .abke-testimonial-card {
        padding: var(--abke-space-lg);
    }

    /* Companies Table */
    .abke-companies-table {
        min-width: 600px;
    }

    .abke-companies-table th,
    .abke-companies-table td {
        padding: var(--abke-space-sm) var(--abke-space-sm);
        font-size: var(--abke-fs-xs);
    }

    /* Contact Form */
    .abke-contact-form {
        padding: var(--abke-space-lg);
    }

    /* Footer */
    .abke-footer {
        padding-top: var(--abke-space-3xl);
    }

    .abke-footer-grid {
        gap: var(--abke-space-lg);
    }

    /* Scroll Top */
    .abke-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: var(--abke-fs-base);
    }

    /* Page Header */
    .abke-page-title {
        font-size: var(--abke-fs-2xl);
    }

    .abke-page-subtitle {
        font-size: var(--abke-fs-sm);
    }

    /* Breadcrumb */
    .abke-breadcrumb {
        font-size: var(--abke-fs-xs);
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Newsletter */
    .abke-newsletter-inner h2 {
        font-size: var(--abke-fs-2xl);
    }

    /* Share */
    .abke-share {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Related */
    .abke-related-card img {
        height: 160px;
    }

    /* Video */
    .abke-video-play {
        width: 48px;
        height: 48px;
    }

    .abke-video-play::after {
        border-width: 6px 0 9px 14px;
    }

    /* TOC */
    .abke-toc {
        padding: var(--abke-space-lg);
    }

    /* Comparison */
    .abke-comparison-table {
        min-width: 500px;
    }
}

/* ==========================================================================
   23. PRINT STYLES
   ========================================================================== */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    a,
    a:visited {
        text-decoration: underline;
        color: #000 !important;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #565454 !important;
    }

    .abke-header,
    .abke-burger,
    .abke-mobile-nav,
    .abke-reading-progress,
    .abke-scroll-top,
    .abke-newsletter,
    .abke-share,
    .abke-testimonial-dots,
    .abke-hero-actions,
    .abke-table-btn,
    .abke-sidebar-cta,
    .abke-form-submit,
    .abke-footer,
    .abke-video-play,
    .abke-btn {
        display: none !important;
    }

    .abke-hero {
        min-height: auto !important;
        padding: 20pt 0 !important;
    }

    .abke-hero-content h1 {
        font-size: 24pt !important;
        color: #000 !important;
    }

    .abke-hero-desc {
        color: #332a3b !important;
    }

    .abke-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .abke-article,
    .abke-static-page {
        max-width: 100% !important;
    }

    .abke-article h2,
    .abke-review-section h2 {
        border-bottom: 2pt solid #000 !important;
        font-size: 18pt !important;
        page-break-after: avoid;
    }

    .abke-article h3 {
        font-size: 14pt !important;
        page-break-after: avoid;
    }

    .abke-article ul li::before {
        background: #000 !important;
    }

    .abke-companies-table,
    .abke-comparison-table,
    .abke-fee-table {
        border: 1pt solid #c4cbc5;
    }

    .abke-companies-table th,
    .abke-comparison-table th,
    .abke-fee-table th {
        background: #eee !important;
        color: #000 !important;
        border-bottom: 2pt solid #000 !important;
    }

    .abke-companies-table td,
    .abke-comparison-table td,
    .abke-fee-table td {
        border-bottom: 0.5pt solid #c7cfd2 !important;
    }

    .abke-faq-answer {
        max-height: none !important;
        overflow: visible !important;
    }

    .abke-faq-icon {
        display: none !important;
    }

    .abke-author-avatar,
    .abke-testimonial-avatar {
        border: 1pt solid #d1c9cd !important;
    }

    .abke-review-layout {
        grid-template-columns: 1fr !important;
    }

    .abke-review-sidebar {
        position: static !important;
    }

    .abke-testimonial-track {
        flex-wrap: wrap;
        overflow: visible;
    }

    .abke-testimonial-slide {
        flex: 0 0 100%;
        page-break-inside: avoid;
    }

    .abke-testimonial-card,
    .abke-author-box,
    .abke-toc,
    .abke-quick-fact,
    .abke-pros,
    .abke-cons,
    .abke-verdict {
        border: 1pt solid #cac5c8 !important;
        page-break-inside: avoid;
    }

    .abke-verdict {
        background: #f5f5f5 !important;
    }

    .abke-verdict h2 {
        color: #000 !important;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    .abke-article-image {
        border-radius: 0 !important;
    }

    .abke-page-header {
        padding: 10pt 0 !important;
    }

    .abke-page-title {
        font-size: 22pt !important;
    }

    h2, h3, h4 {
        page-break-after: avoid;
    }

    p, li, blockquote {
        orphans: 3;
        widows: 3;
    }

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

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

    .abke-comparison-wrapper,
    .abke-companies-wrapper,
    .abke-fee-table-wrapper {
        overflow: visible !important;
    }

    .abke-comparison-table,
    .abke-companies-table {
        min-width: auto !important;
    }
}

/* ==========================================================================
   24. UTILITY CLASSES
   ========================================================================== */
.abke-text-center { text-align: center; }
.abke-text-left { text-align: left; }
.abke-text-right { text-align: right; }
.abke-text-copper { color: var(--abke-copper); }
.abke-text-navy { color: var(--abke-navy); }
.abke-text-teal { color: var(--abke-teal); }
.abke-text-white { color: var(--abke-white); }
.abke-bg-cream { background-color: var(--abke-cream); }
.abke-bg-white { background-color: var(--abke-white); }
.abke-bg-navy { background-color: var(--abke-navy); }
.abke-mt-0 { margin-top: 0; }
.abke-mb-0 { margin-bottom: 0; }
.abke-mt-sm { margin-top: var(--abke-space-sm); }
.abke-mb-sm { margin-bottom: var(--abke-space-sm); }
.abke-mt-md { margin-top: var(--abke-space-md); }
.abke-mb-md { margin-bottom: var(--abke-space-md); }
.abke-mt-lg { margin-top: var(--abke-space-lg); }
.abke-mb-lg { margin-bottom: var(--abke-space-lg); }
.abke-mt-xl { margin-top: var(--abke-space-xl); }
.abke-mb-xl { margin-bottom: var(--abke-space-xl); }
.abke-mt-2xl { margin-top: var(--abke-space-2xl); }
.abke-mb-2xl { margin-bottom: var(--abke-space-2xl); }
.abke-hidden { display: none; }
.abke-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -2px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   COMPANY CARDS GRID
   ========================================================================== */

.abke-companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
    max-width: 1200px;
    margin: 0 auto;
}

.abke-company-card {
    background: var(--abke-navy-light);
    border: 1px solid rgba(184,122,56,0.2);
    border-radius: 20px;
    padding: 35px 26px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abke-company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(185,111,47,0.2);
}

.abke-company-featured {
    border-color: var(--abke-copper);
    background: linear-gradient(145deg, var(--abke-navy-light), rgba(190,109,55,0.1));
    box-shadow: 0 4px 24px rgba(191,115,54,0.15);
}

.abke-company-rank {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', serif;
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(188,108,46,0.4);
}

.abke-company-logo {
    max-width: 180px;
    max-height: 60px;
    height: auto;
    margin: 16px auto 23px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.abke-company-card .abke-company-name {
    font-family: 'Raleway', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 9px;
    border: none;
    padding: 0;
}

.abke-company-badge {
    display: inline-block;
    padding: 7px 15px;
    border: 1px solid var(--abke-teal);
    border-radius: 51px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--abke-teal);
    margin-bottom: 19px;
    letter-spacing: 0.4px;
}

.abke-company-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 23px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.abke-company-rating .abke-stars {
    display: inline-flex;
    gap: 1px;
}

.abke-company-rating .abke-star.filled {
    color: var(--abke-copper);
}

.abke-company-rating .abke-star {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
}

.abke-company-rating .abke-rating-num {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    color: #fff;
}

.abke-company-btn {
    display: block;
    width: 100%;
    padding: 12px 23px;
    border-radius: 3px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.abke-btn-visit {
    background: linear-gradient(135deg, var(--abke-copper), var(--abke-copper-dark));
    color: #fff;
}

.abke-btn-visit:hover {
    background: linear-gradient(135deg, var(--abke-copper-light), var(--abke-copper));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(178,112,45,0.4);
}

.abke-btn-review {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.abke-btn-review:hover {
    border-color: var(--abke-copper);
    color: var(--abke-copper);
}

/* Companies section override for card layout */
.abke-companies-section {
    padding: 82px 0;
    background: var(--abke-navy);
}

.abke-companies-section .abke-section-header {
    margin-bottom: 53px;
}

.abke-companies-section .abke-section-title {
    color: #fff;
}

.abke-companies-section .abke-section-label {
    color: var(--abke-copper);
}

/* Responsive cards */
@media (max-width: 1024px) {
    .abke-companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .abke-companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .abke-company-card {
        padding: 29px 20px;
    }
    .abke-company-logo {
        max-width: 140px;
        max-height: 48px;
    }
}

@media (max-width: 480px) {
    .abke-companies-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}

/* === SilverVault Custom Overrides === */

/* Hero: frosted glass effect, no diagonal lines pattern */
.abke-hero::before {
    background-image: 
        radial-gradient(circle 3px at 50px 50px, rgba(48,189,240,0.08) 3px, transparent 3px),
        radial-gradient(circle 2px at 120px 80px, rgba(141,161,184,0.06) 2px, transparent 2px);
    background-size: 150px 150px;
}

.abke-hero::after {
    background:
        radial-gradient(circle 350px at 80% 20%, rgba(54,193,245,0.1) 0%, transparent 50%),
        radial-gradient(circle 250px at 15% 75%, rgba(147,160,191,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at center, transparent 40%, rgba(2, 6, 23, 0.5) 100%);
}

/* Buttons: pill shape with gradient border */
.abke-btn-primary {
    border-radius: 47px !important;
    background: linear-gradient(135deg, #2fbdf5, #0a7fc6) !important;
    box-shadow: 0 4px 15px rgba(53,190,245,0.3) !important;
    letter-spacing: 0.05em;
}

.abke-btn-primary:hover {
    box-shadow: 0 6px 25px rgba(58,187,245,0.45) !important;
    transform: translateY(-2px);
}

.abke-btn-outline {
    border-radius: 53px !important;
    border: 3px solid rgba(59,193,245,0.5) !important;
}

/* Sections: subtle blue left border */
.abke-article h2 {
    border-left: 4px solid #2eb7f2;
    padding-left: 19px;
    margin-top: 3rem;
}

/* Author box: frosted look */
.abke-author-box {
    background: rgba(241, 245, 249, 0.8) !important;
    backdrop-filter: blur(9px);
    border: 1px solid rgba(57,184,245,0.2) !important;
}

/* Footer: darker slate */
.abke-footer {
    background: #020617 !important;
}

/* Newsletter: blue glow */
.abke-newsletter-inner {
    border: 2px solid rgba(62,190,245,0.3) !important;
    box-shadow: 0 0 40px rgba(63,188,243,0.08) !important;
}

/* Testimonials: ice cards */
.abke-testimonial-card {
    border: 1px solid rgba(60,193,245,0.15) !important;
    background: linear-gradient(145deg, #0a1d2d, #202939) !important;
}

.abke-testimonial-quote {
    color: #31bbf1 !important;
}

/* Reading progress: blue */
.abke-reading-progress {
    background: linear-gradient(90deg, #0a7cce, #34c5f5) !important;
}

/* Selection */
::selection {
    background: #3dc3ef;
    color: #0a1730;
}

/* Comparison table header */
.abke-comparison-table thead {
    background: #17152b !important;
}

.abke-comparison-table th {
    color: #37b5f4 !important;
}

