/* Oxford Modern Style - Auto-themed */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Palette */
    --cagh-navy: #0e191e;
    --cagh-navy-light: #484d58;
    --cagh-navy-dark: #0d1129;
    --cagh-copper: #be7230;
    --cagh-copper-light: #cf8f53;
    --cagh-copper-dark: #945b30;
    --cagh-teal: #138170;
    --cagh-teal-light: #279c90;
    --cagh-teal-dark: #0b544e;
    --cagh-cream: #f5f0eb;
    --cagh-cream-dark: #dfe0d1;
    --cagh-white: #ffffff;
    --cagh-black: #050a10;
    --cagh-gray-100: #f7f8fa;
    --cagh-gray-200: #e9ecf0;
    --cagh-gray-300: #d0d7d2;
    --cagh-gray-400: #a3abb5;
    --cagh-gray-500: #696c81;
    --cagh-gray-600: #514b60;
    --cagh-gray-700: #333d49;
    --cagh-gray-800: #242b3f;
    --cagh-text: #0c202a;
    --cagh-text-light: #6e6c7e;
    --cagh-text-muted: #65687a;
    --cagh-success: #1c7676;
    --cagh-danger: #b93b26;
    --cagh-warning: #d59c50;

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

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

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

    /* Shadows — copper-tinted */
    --cagh-shadow-sm: 0 2px 8px rgba(191,108,43,0.08);
    --cagh-shadow-md: 0 4px 16px rgba(188,118,52,0.12);
    --cagh-shadow-lg: 0 8px 32px rgba(189,112,44,0.16);
    --cagh-shadow-xl: 0 16px 48px rgba(186,121,53,0.2);
    --cagh-shadow-copper: 0 4px 20px rgba(187,115,45,0.25);
    --cagh-shadow-navy: 0 4px 20px rgba(15,21,48,0.3);
    --cagh-shadow-inner: inset 0 2px 8px rgba(185,118,46,0.1);

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

    /* Layout */
    --cagh-container-max: 1200px;
    --cagh-container-narrow: 900px;
    --cagh-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(--cagh-font-body);
    font-size: var(--cagh-fs-base);
    line-height: var(--cagh-lh-normal);
    color: var(--cagh-text);
    background-color: var(--cagh-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

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

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

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

/* ==========================================================================
   4. HEADER — Glass Morphism Style
   ========================================================================== */
.cagh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--cagh-header-height);
    z-index: 1000;
    background: rgba(13,24,49,0.65);
    backdrop-filter: blur(23px) saturate(180%);
    -webkit-backdrop-filter: blur(19px) saturate(180%);
    border-bottom: 1px solid rgba(183,122,47,0.15);
    transition: background var(--cagh-duration) var(--cagh-ease),
                box-shadow var(--cagh-duration) var(--cagh-ease);
}

.cagh-header.scrolled {
    background: rgba(11,27,50,0.92);
    box-shadow: 0 4px 30px rgba(12,21,42,0.4);
}

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

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

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

.cagh-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: cagh-logo-shine 3s infinite;
}

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

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

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

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

.cagh-nav-link {
    font-family: var(--cagh-font-body);
    font-size: var(--cagh-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(--cagh-space-xs) 0;
    transition: color var(--cagh-duration) var(--cagh-ease);
}

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

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

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

/* Burger Menu */
.cagh-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;
}

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

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

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

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

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

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

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

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

/* Mobile nav overlay */
.cagh-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(--cagh-duration-slow) var(--cagh-ease);
    z-index: -1;
}

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

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

/* Geometric pattern overlay — CSS only */
.cagh-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(189,107,52,0.04) 40px,
            rgba(186,116,45,0.04) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(187,110,54,0.04) 40px,
            rgba(184,120,46,0.04) 41px
        ),
        /* Hexagonal-ish dots pattern */
        radial-gradient(circle 2px at 30px 30px, rgba(27,120,113,0.12) 2px, transparent 2px),
        radial-gradient(circle 2px at 90px 60px, rgba(182,107,47,0.1) 2px, transparent 2px),
        radial-gradient(circle 1.5px at 60px 90px, rgba(25,124,114,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 */
.cagh-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(180,110,48,0.06) 0%, rgba(181,120,57,0.02) 40%, transparent 60%),
        /* Teal glow bottom-left */
        radial-gradient(circle 300px at 10% 80%, rgba(20,121,107,0.08) 0%, transparent 50%),
        /* Subtle vignette */
        radial-gradient(ellipse at center, transparent 50%, rgba(10,11,39,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

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

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

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

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

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

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

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.cagh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--cagh-space-sm);
    font-family: var(--cagh-font-body);
    font-size: var(--cagh-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(--cagh-radius-sharp);
    cursor: pointer;
    transition: all var(--cagh-duration) var(--cagh-ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cagh-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(--cagh-duration-slow) var(--cagh-ease);
}

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

.cagh-btn-primary {
    background: linear-gradient(135deg, var(--cagh-copper), var(--cagh-copper-dark));
    color: var(--cagh-white);
    border-color: var(--cagh-copper);
    box-shadow: 0 4px 16px rgba(189,118,45,0.35);
}

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

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

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

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

.cagh-btn-dark:hover {
    background: var(--cagh-navy-light);
    box-shadow: 0 6px 24px rgba(16,20,41,0.4);
    transform: translateY(-2px);
    color: var(--cagh-white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cagh-companies-table tr:hover td {
    background: rgba(180,122,57,0.03);
}

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

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

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

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

.cagh-star {
    width: 18px;
    height: 13px;
    background: var(--cagh-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(--cagh-duration) var(--cagh-ease);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cagh-comparison-table tr:hover td {
    background: rgba(186,122,46,0.03);
}

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


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


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

.cagh-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 300px at 20% 50%, rgba(187,116,54,0.08), transparent),
        radial-gradient(circle 200px at 80% 50%, rgba(26,117,105,0.06), transparent);
    pointer-events: none;
}

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

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

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

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

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

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

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

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

.cagh-newsletter-btn:hover {
    background: linear-gradient(135deg, var(--cagh-copper-light), var(--cagh-copper));
    box-shadow: 0 4px 16px rgba(178,120,50,0.4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cagh-fee-table tr:hover td {
    background: rgba(176,107,51,0.03);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cagh-form-input:focus,
.cagh-form-select:focus,
.cagh-form-textarea:focus {
    border-color: var(--cagh-copper);
    box-shadow: 0 0 0 3px rgba(187,111,47,0.12);
}

.cagh-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;
}

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

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

.cagh-form-submit:hover {
    background: linear-gradient(135deg, var(--cagh-copper-light), var(--cagh-copper));
    box-shadow: 0 6px 24px rgba(185,115,48,0.4);
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cagh-share-twitter:hover {
    background: #1d98f2;
}

.cagh-share-facebook:hover {
    background: #0e73ee;
}

.cagh-share-linkedin:hover {
    background: #0a69b9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cagh-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(--cagh-white);
    margin-left: 3px;
}

.cagh-video-placeholder:hover .cagh-video-play {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(183,118,49,0.6);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .cagh-burger {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /* Comparison */
    .cagh-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: #5b585d !important;
    }

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

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

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

    .cagh-hero-desc {
        color: #383831 !important;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   24. UTILITY CLASSES
   ========================================================================== */
.cagh-text-center { text-align: center; }
.cagh-text-left { text-align: left; }
.cagh-text-right { text-align: right; }
.cagh-text-copper { color: var(--cagh-copper); }
.cagh-text-navy { color: var(--cagh-navy); }
.cagh-text-teal { color: var(--cagh-teal); }
.cagh-text-white { color: var(--cagh-white); }
.cagh-bg-cream { background-color: var(--cagh-cream); }
.cagh-bg-white { background-color: var(--cagh-white); }
.cagh-bg-navy { background-color: var(--cagh-navy); }
.cagh-mt-0 { margin-top: 0; }
.cagh-mb-0 { margin-bottom: 0; }
.cagh-mt-sm { margin-top: var(--cagh-space-sm); }
.cagh-mb-sm { margin-bottom: var(--cagh-space-sm); }
.cagh-mt-md { margin-top: var(--cagh-space-md); }
.cagh-mb-md { margin-bottom: var(--cagh-space-md); }
.cagh-mt-lg { margin-top: var(--cagh-space-lg); }
.cagh-mb-lg { margin-bottom: var(--cagh-space-lg); }
.cagh-mt-xl { margin-top: var(--cagh-space-xl); }
.cagh-mb-xl { margin-bottom: var(--cagh-space-xl); }
.cagh-mt-2xl { margin-top: var(--cagh-space-2xl); }
.cagh-mb-2xl { margin-bottom: var(--cagh-space-2xl); }
.cagh-hidden { display: none; }
.cagh-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
   ========================================================================== */

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

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

.cagh-company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(181,121,50,0.2);
}

.cagh-company-featured {
    border-color: var(--cagh-copper);
    background: linear-gradient(145deg, var(--cagh-navy-light), rgba(178,115,58,0.1));
    box-shadow: 0 4px 24px rgba(179,109,51,0.15);
}

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

.cagh-company-logo {
    max-width: 180px;
    max-height: 60px;
    height: auto;
    margin: 16px auto 23px;
    display: block;
    object-fit: contain;
}

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

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

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

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

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

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

.cagh-company-rating .cagh-rating-num {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
}

.cagh-company-btn {
    display: block;
    width: 100%;
    padding: 12px 23px;
    border-radius: 3px;
    font-family: 'Inter', 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;
}

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

.cagh-btn-visit:hover {
    background: linear-gradient(135deg, var(--cagh-copper-light), var(--cagh-copper));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(190,122,44,0.4);
}

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

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

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

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

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

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

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

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

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