@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/**
 * Enterprise Ag - Premium Magazine Design
 * Rich editorial aesthetic with varied backgrounds and sophisticated color palette
 * Version 6.0 - Magazine Quality with Visual Richness
 */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body.enterprise-ag-template {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Inter', sans-serif;
    background: #0a0f1a;
    color: #1a1a1a;
    overflow-x: hidden;
}

:root {
    /* Fixed-element heights */
    --publisher-bar-height: 37px;
    --nav-height: 80px;

    /* Rich Color Palette */
    --color-deere-green: #2D6E1F;
    --color-sage: #367C2B;
    --color-lime: #4FA635;
    --color-mint: #76B82A;

    --color-gold: #D4A574;
    --color-gold-light: #E8BAAD;
    --color-gold-dark: #A68567;

    --color-navy: #0a1628;
    --color-slate: #1e293b;
    --color-charcoal: #2d3748;

    --color-cream: #f8f7f3;
    --color-sand: #e8e5df;
    --color-stone: #d4cfc7;

    --color-text-dark: #1a1a1a;
    --color-text-light: #ffffff;
    --color-text-muted: #6b7280;
}

.enterprise-ag {
    position: relative;
}

.enterprise-ag__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.enterprise-ag__section {
    padding: 128px 0;
    position: relative;
}

/* ==========================================================================
   NAVIGATION - Dark Premium
   ========================================================================== */

.enterprise-ag__nav {
    position: fixed;
    top: var(--publisher-bar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(111, 191, 60, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.enterprise-ag__nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.enterprise-ag__logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff 0%, #2D6E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.enterprise-ag__menu {
    display: flex;
    gap: 48px;
    list-style: none;
}

.enterprise-ag__menu-link {
    font-size: 14px;
    font-weight: 600;
    color: #c0c8d0;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all 250ms ease;
}

.enterprise-ag__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #367C2B, #6FBF3C);
    transform: scaleX(0);
    transition: transform 300ms ease;
}

.enterprise-ag__menu-link:hover {
    color: #ffffff;
}

.enterprise-ag__menu-link:hover::after {
    transform: scaleX(1);
}

.enterprise-ag__cta-button {
    background: linear-gradient(to right, #367C2B, #76B82A);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(54, 124, 43, 0.4);
    transition: all 300ms ease;
}

.enterprise-ag__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(54, 124, 43, 0.6);
}

/* ==========================================================================
   HERO - Dark Dramatic with Pattern
   ========================================================================== */

.enterprise-ag__hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: calc(var(--publisher-bar-height) + var(--nav-height));
    background: #050912;
    overflow: hidden;
}

/* ---------- HERO VIDEO (compressed California drone footage) ---------- */
.enterprise-ag__hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.enterprise-ag__hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.enterprise-ag__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 9, 18, 0.55);
    z-index: 2;
    pointer-events: none;
}

.enterprise-ag__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 800px 600px at 20% -10%, rgba(111, 191, 60, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse 600px 500px at 85% 105%, rgba(201, 162, 39, 0.14) 0%, transparent 55%);
}

.enterprise-ag__hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.88  0 0 0 0 0.7  0 0 0 .6 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
}

.enterprise-ag__hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 85% 65% at 50% 45%, transparent 50%, rgba(5, 9, 18, 0.55) 100%);
}

/* Subscriber-name marquee (bottom of hero) */
.enterprise-ag__hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 14px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 9, 18, 0.75) 40%, rgba(5, 9, 18, 0.95) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.28);
    overflow: hidden;
    pointer-events: none;
}

.enterprise-ag__hero-marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: marqueeScroll 70s linear infinite;
    will-change: transform;
}

.enterprise-ag__hero-marquee-content {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.8px;
    color: #D4B561;
    padding-right: 8px;
}

.enterprise-ag__hero-marquee-label {
    display: inline-block;
    margin-right: 16px;
    padding: 4px 12px;
    border: 1px solid rgba(201, 162, 39, 0.6);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 3px;
    color: #F2D589;
    text-transform: uppercase;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .enterprise-ag__hero-marquee-track {
        animation: none !important;
    }
}

.enterprise-ag__hero-background {
    display: none;
}

.enterprise-ag__hero-content {
    position: relative;
    z-index: 10;
    max-width: 950px;
    text-align: center;
    padding: clamp(96px, 14vh, 180px) 32px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - var(--publisher-bar-height) - var(--nav-height));
}

.enterprise-ag__hero-headline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -2px;
    background: linear-gradient(to right, #ffffff 0%, #8FD14F 65%, #2D6E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

.enterprise-ag__hero-subhead {
    /* Legacy — no longer used in markup. Kept to avoid breaking anything that imports this CSS. */
    display: none;
}

.enterprise-ag__hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(10px, 1.1vw, 13px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 20px;
    animation: slideDown 1s ease-out;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.enterprise-ag__hero-eyebrow::before,
.enterprise-ag__hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: clamp(24px, 3vw, 48px);
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A227);
    vertical-align: middle;
    margin: 0 16px;
}

.enterprise-ag__hero-eyebrow::after {
    background: linear-gradient(90deg, #C9A227, transparent);
}

.enterprise-ag__hero-dek {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 30px);
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.3px;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.enterprise-ag__hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: auto;
    margin-bottom: 48px;
    animation: slideUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 10;
}

.enterprise-ag__badge {
    background: rgba(45, 110, 31, 0.15);
    border: 2px solid #2D6E1F;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 350ms ease;
    backdrop-filter: blur(10px);
}

.enterprise-ag__badge:hover {
    background: rgba(45, 110, 31, 0.25);
    color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(45, 110, 31, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Hero CTA buttons + scroll cue — restored (previously force-hidden) */
.enterprise-ag__hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: slideUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 10;
}

.enterprise-ag__hero-download {
    display: inline-block;
    color: #B8BFC8;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 300ms ease;
    animation: slideUp 1s ease-out 0.6s both;
    position: relative;
    z-index: 10;
}

.enterprise-ag__hero-download:hover {
    color: #ffffff;
    transform: translateY(2px);
}

.enterprise-ag__button {
    font-size: 16px;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 300ms ease;
    border: none;
    cursor: pointer;
}

.enterprise-ag__button--primary {
    background: linear-gradient(135deg, #6FBF3C 0%, #8FD14F 100%);
    color: #0a1628;
    box-shadow: 0 10px 30px rgba(111, 191, 60, 0.4);
}

.enterprise-ag__button--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(111, 191, 60, 0.6);
}

.enterprise-ag__button--secondary {
    background: transparent;
    color: #C9A227;
    border: 2px solid #C9A227;
}

.enterprise-ag__button--secondary:hover {
    background: rgba(201, 162, 39, 0.08);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25);
    transform: translateY(-4px);
}

/* ==========================================================================
   WHY SECTION - Light Cream Background with Texture
   ========================================================================== */

.enterprise-ag__why {
    background: 
        linear-gradient(180deg, rgba(248, 247, 243, 0.5) 0%, #f8f7f3 20%, #f8f7f3 80%, rgba(248, 247, 243, 0.5) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(111, 191, 60, 0.02) 20px, rgba(111, 191, 60, 0.02) 40px);
    color: var(--color-text-dark);
    position: relative;
}

.enterprise-ag__why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #0a1628 0%, transparent 100%);
    pointer-events: none;
}

.enterprise-ag__why::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==========================================================================
   DISTRIBUTION SECTION - Rich Olive/Forest Background
   ========================================================================== */

.enterprise-ag__distribution {
    background:
        radial-gradient(ellipse at 20% 25%, rgba(111, 191, 60, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 75%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #0a1628 0%, #0f1f36 50%, #0a1628 100%);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.enterprise-ag__distribution::before {
    /* subtle stipple texture for depth — now tuned for navy backdrop */
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(201,162,39,0.14)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.enterprise-ag__distribution::after {
    /* soft ambient gold glow bottom-left */
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.10) 0%, transparent 60%);
    filter: blur(70px);
    pointer-events: none;
}

/* ==========================================================================
   REASONS SECTION - Warm Gradient Background
   ========================================================================== */

.enterprise-ag__reasons {
    background: 
        linear-gradient(135deg, #1e293b 0%, #2d3748 50%, #1e293b 100%);
    color: var(--color-text-light);
    position: relative;
}

.enterprise-ag__reasons::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
    filter: blur(80px);
}

/* ==========================================================================
   RATES SECTION - Light Stone Background
   ========================================================================== */

.enterprise-ag__rates {
    background: 
        linear-gradient(180deg, #e8e5df 0%, #f8f7f3 50%, #e8e5df 100%);
    color: var(--color-text-dark);
    position: relative;
}

.enterprise-ag__rates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, #1e293b 0%, transparent 100%);
}

/* ==========================================================================
   SECTION TITLES - Magazine Style
   ========================================================================== */

.enterprise-ag__section-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    position: relative;
}

/* Dark sections get gradient text */
.enterprise-ag__distribution .enterprise-ag__section-title,
.enterprise-ag__reasons .enterprise-ag__section-title,
.enterprise-ag__magazine .enterprise-ag__section-title {
    background: linear-gradient(135deg, #ffffff 0%, #8FD14F 70%, #367C2B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Rates section - make it POP */
.enterprise-ag__rates .enterprise-ag__section-title {
    color: #f8f7f3;
    font-size: 72px;
    text-shadow: 0 4px 20px rgba(248, 247, 243, 0.3);
}

/* Light sections get solid dark with accent */
.enterprise-ag__why .enterprise-ag__section-title,
.enterprise-ag__rates .enterprise-ag__section-title {
    color: #1a1a1a;
}

.enterprise-ag__section-title::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C9A227, transparent);
}

.enterprise-ag__section-title::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #367C2B, #C9A227, transparent);
}

.enterprise-ag__section-subhead {
    font-size: 20px;
    text-align: center;
    line-height: 1.8;
    margin-top: 64px;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-ag__section-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-top: 64px;
    margin-bottom: 80px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   CARDS - Premium Magazine Style
   ========================================================================== */

.enterprise-ag__audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.enterprise-ag__audience-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 400ms ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.enterprise-ag__audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.16), transparent);
    transition: left 600ms ease;
}

.enterprise-ag__audience-card:hover::before {
    left: 100%;
}

.enterprise-ag__audience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #C9A227, #367C2B, #6FBF3C);
    transform: scaleX(0);
    transition: transform 400ms ease;
}

.enterprise-ag__audience-card:hover::after {
    transform: scaleX(1);
}

.enterprise-ag__audience-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, rgba(248, 247, 243, 1) 100%);
    border-color: rgba(201, 162, 39, 0.45);
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(111, 191, 60, 0.15), 0 0 60px rgba(201, 162, 39, 0.18);
}

.enterprise-ag__card-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.04) 0%, rgba(201, 162, 39, 0.06) 100%);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.enterprise-ag__card-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.enterprise-ag__card-icon svg [data-accent="gold"] {
    transition: fill 400ms ease;
}

.enterprise-ag__audience-card:hover .enterprise-ag__card-icon {
    transform: translateY(-2px);
}

.enterprise-ag__audience-card:hover .enterprise-ag__card-icon svg [data-accent="gold"] {
    fill: #367C2B;
}

.enterprise-ag__audience-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.enterprise-ag__audience-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.enterprise-ag__distribution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.enterprise-ag__distribution-card {
    background: linear-gradient(135deg, rgba(45, 110, 31, 0.9) 0%, rgba(45, 110, 31, 0.8) 100%);
    border: 2px solid rgba(248, 247, 243, 0.3);
    border-left: 6px solid #f8f7f3;
    border-top: 5px solid #FFD700;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 400ms ease;
}

.enterprise-ag__distribution-card:nth-child(2) {
    border-top-color: #f8f7f3;
}

.enterprise-ag__distribution-card:nth-child(3) {
    border-top-color: #0a1628;
}

.enterprise-ag__distribution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 247, 243, 0.15) 0%, transparent 70%);
    animation: orbit 8s linear infinite;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translate(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translate(20px) rotate(-360deg); }
}

.enterprise-ag__distribution-card:hover {
    background: linear-gradient(135deg, rgba(45, 110, 31, 1) 0%, rgba(45, 110, 31, 0.95) 100%);
    border-color: rgba(248, 247, 243, 0.5);
    border-left-color: #f8f7f3;
    transform: translateY(-10px) translateX(8px);
    box-shadow: 0 24px 48px rgba(111, 191, 60, 0.3), -8px 0 30px rgba(248, 247, 243, 0.2);
}

.enterprise-ag__distribution-card h3 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(to right, #f8f7f3 0%, #2D6E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.2;
}

.enterprise-ag__crops {
    font-size: 14px;
    color: #e8e5df;
    font-style: italic;
    margin-bottom: 20px;
}

.enterprise-ag__distribution-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: #f8f7f3;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.enterprise-ag__distribution-card ul {
    list-style: none;
}

.enterprise-ag__distribution-card li {
    font-size: 14px;
    color: #f8f7f3;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.enterprise-ag__distribution-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f8f7f3;
    font-weight: 700;
}

/* ==========================================================================
   REASONS - Bold Gradient Cards
   ========================================================================== */

.enterprise-ag__reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.enterprise-ag__reason-item {
    background: linear-gradient(135deg, rgba(45, 52, 72, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 36px;
    display: flex;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: all 400ms ease;
}

.enterprise-ag__reason-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #C9A227 0%, #367C2B 100%);
    transform: scaleY(0);
    transition: transform 400ms ease;
}

.enterprise-ag__reason-item:hover::before {
    transform: scaleY(1);
}

.enterprise-ag__reason-item:hover {
    background: linear-gradient(135deg, rgba(50, 60, 85, 0.9) 0%, rgba(35, 48, 68, 0.7) 100%);
    border-color: rgba(201, 162, 39, 0.45);
    transform: translateX(12px);
    box-shadow: 0 16px 40px rgba(201, 162, 39, 0.2), -8px 0 20px rgba(111, 191, 60, 0.2);
}

.enterprise-ag__reason-check {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.5px;
    color: #C9A227;
    transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: inset 0 0 0 4px rgba(10, 22, 40, 0.4), 0 6px 18px rgba(0, 0, 0, 0.25);
}

.enterprise-ag__reason-item:hover .enterprise-ag__reason-check {
    background: rgba(10, 22, 40, 0.9);
    border-color: #8FD14F;
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: inset 0 0 0 4px rgba(10, 22, 40, 0.3), 0 10px 28px rgba(111, 191, 60, 0.35), 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.enterprise-ag__reason-content {
    flex: 1;
}

.enterprise-ag__reason-header {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(to right, #f8f7f3 0%, #2D6E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.3;
}

.enterprise-ag__reason-item p {
    font-size: 16px;
    color: #d0d8e0;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   TABLES - Premium Styling
   ========================================================================== */

.enterprise-ag__rates-subtitle {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff 0%, #2D6E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.enterprise-ag__rates-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    overflow: hidden;
    box-shadow: none;
}

.enterprise-ag__rates-table thead {
    background: linear-gradient(135deg, #367C2B 0%, #6FBF3C 60%, #1e293b 100%);
}

.enterprise-ag__rates-table th {
    padding: 24px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    color: #0a1628;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enterprise-ag__rates-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(248, 247, 243, 0.2);
    font-size: 15px;
    color: #2d3748;
}

.enterprise-ag__rates-table tbody tr:nth-child(odd) {
    background: rgba(248, 247, 243, 0.3);
}

.enterprise-ag__rates-table tbody tr:hover {
    background: rgba(45, 110, 31, 0.1);
    transition: background 250ms ease;
}

.enterprise-ag__table-wrapper {
    border: 3px solid #2D6E1F;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 32px;
}

.enterprise-ag__list-rental-card {
    background: #f8f7f3;
    border: 3px solid #2D6E1F;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(45, 110, 31, 0.2);
}

.enterprise-ag__list-rental-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 247, 243, 0.3) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.enterprise-ag__list-rental-card p {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.enterprise-ag__list-rental-card ul {
    list-style: none;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    padding: 24px 32px;
    border-radius: 8px;
    margin-top: 16px;
}

.enterprise-ag__list-rental-card li {
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.enterprise-ag__list-rental-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2D6E1F;
    font-weight: 900;
    font-size: 18px;
}

.enterprise-ag__rates-footer {
    text-align: center;
    padding: 56px;
    background: #f8f7f3;
    border: 3px solid #2D6E1F;
    border-radius: 16px;
    margin-top: 48px;
    box-shadow: 0 20px 50px rgba(45, 110, 31, 0.2);
}

.enterprise-ag__rates-footer h3 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(to right, #2D6E1F 0%, #76B82A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.enterprise-ag__rates-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.enterprise-ag__rates-footer .enterprise-ag__button {
    font-size: 16px;
    font-weight: 700;
    padding: 18px 44px;
    min-width: 240px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.enterprise-ag__footer {
    background: #0a1628;
    padding: 48px 0 32px;
    text-align: center;
    border-top: 3px solid #2D6E1F;
}

.enterprise-ag__footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    color: #c0c8d0;
}

.enterprise-ag__footer-logo {
    margin: 0 auto 24px;
    max-width: 260px;
    width: 100%;
}

.enterprise-ag__footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.enterprise-ag__footer-contact {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #c0c8d0;
}

.enterprise-ag__footer-contact p {
    margin-bottom: 12px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #c0c8d0;
}

.enterprise-ag__footer-contact strong {
    color: #ffffff;
}

.enterprise-ag__footer-contact a {
    color: #76B82A;
    text-decoration: none;
    transition: color 250ms ease;
}

.enterprise-ag__footer-contact a:hover {
    color: #ffffff;
}

.enterprise-ag__footer-copyright {
    font-size: 14px;
    color: #6b7280;
    padding-top: 24px;
    border-top: 1px solid rgba(111, 191, 60, 0.2);
    margin-top: 24px;
}

/* ==========================================================================
   DONUT CHART - Multi-Color
   ========================================================================== */

.enterprise-ag__distribution-chart-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    margin-bottom: 96px;
    flex-wrap: wrap;
    padding: 80px 64px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(111, 191, 60, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
        linear-gradient(135deg, rgba(20, 40, 68, 0.92) 0%, rgba(10, 22, 40, 0.96) 100%);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 24px;
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(201, 162, 39, 0.08),
        inset 0 1px 0 rgba(201, 162, 39, 0.15);
    position: relative;
    overflow: hidden;
}

/* Top shimmer bar matching the magazine showcase */
.enterprise-ag__distribution-chart-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A227, #6FBF3C, #C9A227, transparent);
    background-size: 200% 100%;
    animation: shimmerGold 5s linear infinite;
    pointer-events: none;
}

.enterprise-ag__donut-chart {
    position: relative;
    width: 380px;
    height: 380px;
    flex-shrink: 0;
}

.enterprise-ag__donut-chart::before {
    /* premium halo: gold inner glow + green outer glow, no rotation */
    content: '';
    position: absolute;
    inset: -60px;
    background:
        radial-gradient(circle, rgba(201, 162, 39, 0.22) 0%, transparent 55%),
        radial-gradient(circle, rgba(111, 191, 60, 0.18) 40%, transparent 75%);
    border-radius: 50%;
    animation: chartGlow 5s ease-in-out infinite;
    filter: blur(4px);
    z-index: 1;
}

.enterprise-ag__donut-chart::after {
    /* Outer decorative ring — gold hairline */
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 0 24px rgba(201, 162, 39, 0.2);
    pointer-events: none;
    z-index: 2;
}

@keyframes chartGlow {
    0%, 100% { opacity: 0.65; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.04); }
}

.enterprise-ag__donut-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 16px 48px rgba(201, 162, 39, 0.25));
    position: relative;
    z-index: 3;
}

.enterprise-ag__chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background:
        radial-gradient(circle at 50% 30%, rgba(201, 162, 39, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, #0a1628 0%, #14355a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, 0.5),
        inset 0 0 0 4px rgba(10, 22, 40, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(201, 162, 39, 0.2);
    z-index: 4;
}

.enterprise-ag__chart-center::before {
    /* Stylized big number above the label */
    content: '10,000';
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #8FD14F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.enterprise-ag__chart-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #C9A227;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.enterprise-ag__donut-legend {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.enterprise-ag__legend-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #ffffff;
    padding: 12px 0;
    border-radius: 8px;
    transition: all 300ms ease;
    cursor: pointer;
}

.enterprise-ag__legend-item:hover {
    transform: translateX(8px);
    gap: 20px;
}

.enterprise-ag__legend-color {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   MAGAZINE SECTION
   ========================================================================== */

.enterprise-ag__magazine {
    background:
        linear-gradient(135deg, #0a1628 0%, #0f1f36 50%, #0a1628 100%),
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(111, 191, 60, 0.015) 30px, rgba(111, 191, 60, 0.015) 60px);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.enterprise-ag__magazine::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(111, 191, 60, 0.06) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.enterprise-ag__magazine::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

/* --- Issue Showcase --- */

.enterprise-ag__magazine-showcase {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 31, 54, 0.5) 100%);
    border: 1px solid rgba(111, 191, 60, 0.2);
    border-radius: 20px;
    padding: 56px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.enterprise-ag__magazine-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9A227, #367C2B, #6FBF3C, #C9A227);
    background-size: 200% 100%;
    animation: shimmerGold 4s linear infinite;
}

@keyframes shimmerGold {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.enterprise-ag__magazine-cover-wrap {
    position: relative;
    flex-shrink: 0;
    perspective: 1400px;
    perspective-origin: 50% 50%;
}

.enterprise-ag__magazine-cover-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transform: rotateY(-6deg) rotateX(1deg);
    transform-style: preserve-3d;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.enterprise-ag__magazine-cover-link::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 4px;
    bottom: 4px;
    width: 12px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.05));
    border-radius: 10px 0 0 10px;
    filter: blur(4px);
    z-index: 1;
}

.enterprise-ag__magazine-cover-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
    transform: translateX(-105%);
    transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 10px;
    pointer-events: none;
    z-index: 4;
    mix-blend-mode: screen;
}

.enterprise-ag__magazine-cover-link:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.04);
}

.enterprise-ag__magazine-cover-link:hover::after {
    transform: translateX(105%);
}

.enterprise-ag__magazine-cover-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(111, 191, 60, 0.25);
    transition: box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 2;
}

.enterprise-ag__magazine-cover-link:hover .enterprise-ag__magazine-cover-img {
    box-shadow:
        0 60px 110px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(111, 191, 60, 0.45),
        0 0 50px rgba(201, 162, 39, 0.18);
}

.enterprise-ag__cover-corner {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #F2D589 0%, #C9A227 50%, #8B6F1C 100%);
    transform: rotate(45deg);
    box-shadow:
        0 4px 14px rgba(201, 162, 39, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 5;
    pointer-events: none;
}

.enterprise-ag__magazine-cover-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #1e293b, #2d3748);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(111, 191, 60, 0.3);
}

.enterprise-ag__magazine-cover-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(to right, #ffffff, #2D6E1F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-ag__magazine-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enterprise-ag__magazine-label {
    font-size: 11px;
    font-weight: 700;
    color: #C9A227;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.enterprise-ag__magazine-issue-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #8FD14F 70%, #367C2B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.enterprise-ag__magazine-issue-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #b0bcc8;
}

.enterprise-ag__magazine-issue-desc p {
    margin: 0;
}

.enterprise-ag__magazine-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.enterprise-ag__magazine-actions .enterprise-ag__button--secondary {
    background: #C9A227;
    color: #0a1628;
    border-color: #C9A227;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.28);
}

.enterprise-ag__magazine-actions .enterprise-ag__button--secondary:hover {
    background: #d8b443;
    color: #0a1628;
    border-color: #d8b443;
    box-shadow: 0 14px 36px rgba(201, 162, 39, 0.38);
}

/* --- Issue Selector --- */

.enterprise-ag__issue-selector {
    margin-bottom: 80px;
}

.enterprise-ag__issue-selector-label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.enterprise-ag__issue-selector-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(111, 191, 60, 0.4) rgba(255,255,255,0.05);
}

.enterprise-ag__issue-selector-track::-webkit-scrollbar {
    height: 4px;
}

.enterprise-ag__issue-selector-track::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

.enterprise-ag__issue-selector-track::-webkit-scrollbar-thumb {
    background: rgba(111, 191, 60, 0.4);
    border-radius: 2px;
}

.enterprise-ag__issue-thumb {
    flex-shrink: 0;
    width: 100px;
    background: none;
    border: 2px solid rgba(111, 191, 60, 0.2);
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    transition: all 300ms ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.enterprise-ag__issue-thumb img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.enterprise-ag__issue-thumb-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #1e293b, #2d3748);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #6b7280;
    padding: 4px;
    text-align: center;
}

.enterprise-ag__issue-thumb-title {
    font-size: 9px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: block;
}

.enterprise-ag__issue-thumb:hover {
    border-color: rgba(111, 191, 60, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(111, 191, 60, 0.2);
}

.enterprise-ag__issue-thumb--active {
    border-color: #6FBF3C;
    box-shadow: 0 0 0 2px rgba(111, 191, 60, 0.3), 0 8px 24px rgba(111, 191, 60, 0.25);
    transform: translateY(-4px);
}

.enterprise-ag__issue-thumb--active .enterprise-ag__issue-thumb-title {
    color: #76B82A;
}

/* --- Articles Section --- */

.enterprise-ag__magazine-articles {
    position: relative;
}

.enterprise-ag__articles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(111, 191, 60, 0.15);
}

.enterprise-ag__articles-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    background: linear-gradient(to right, #ffffff 0%, #6FBF3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Category filter pills */

.enterprise-ag__article-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.enterprise-ag__filter-pill {
    background: transparent;
    border: 1px solid rgba(111, 191, 60, 0.3);
    color: #b0bcc8;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 250ms ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.enterprise-ag__filter-pill:hover {
    border-color: rgba(111, 191, 60, 0.7);
    color: #ffffff;
    background: rgba(111, 191, 60, 0.08);
}

.enterprise-ag__filter-pill--active {
    background: linear-gradient(135deg, #2D6E1F 0%, #367C2B 100%);
    border-color: #2D6E1F;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(45, 110, 31, 0.4);
}

/* Articles grid */

.enterprise-ag__articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Featured article spans full row */
.enterprise-ag__article-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
}

.enterprise-ag__article-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 31, 54, 0.6) 100%);
    border: 1px solid rgba(111, 191, 60, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 400ms ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.enterprise-ag__article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A227, #367C2B, #6FBF3C);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms ease;
}

.enterprise-ag__article-card:hover::before {
    transform: scaleX(1);
}

.enterprise-ag__article-card:hover {
    border-color: rgba(111, 191, 60, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(111, 191, 60, 0.2);
}

.enterprise-ag__article-card--featured:hover {
    transform: translateY(-4px);
}

.enterprise-ag__article-img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.enterprise-ag__article-card:not(.enterprise-ag__article-card--featured) .enterprise-ag__article-img-wrap {
    aspect-ratio: 16 / 9;
}

.enterprise-ag__article-card--featured .enterprise-ag__article-img-wrap {
    height: 100%;
    min-height: 360px;
}

.enterprise-ag__article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms ease;
}

.enterprise-ag__article-card:hover .enterprise-ag__article-img {
    transform: scale(1.04);
}

.enterprise-ag__article-body {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.enterprise-ag__article-card--featured .enterprise-ag__article-body {
    padding: 40px 40px 40px;
    justify-content: center;
}

.enterprise-ag__article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.enterprise-ag__article-category {
    font-size: 10px;
    font-weight: 700;
    color: #0a1628;
    background: linear-gradient(135deg, #6FBF3C, #8FD14F);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enterprise-ag__article-issue {
    font-size: 10px;
    font-weight: 600;
    color: #C9A227;
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.enterprise-ag__article-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.enterprise-ag__article-card--featured .enterprise-ag__article-title {
    font-size: clamp(22px, 2.5vw, 32px);
}

.enterprise-ag__article-title a {
    background: linear-gradient(to right, #ffffff 0%, #c0ccd8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 300ms ease;
}

.enterprise-ag__article-card:hover .enterprise-ag__article-title a {
    background: linear-gradient(to right, #ffffff 0%, #6FBF3C 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.enterprise-ag__article-excerpt {
    font-size: 15px;
    line-height: 1.75;
    color: #8ca0b4;
    margin: 0;
    flex: 1;
}

.enterprise-ag__article-link {
    font-size: 13px;
    font-weight: 700;
    color: #6FBF3C;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 250ms ease;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.enterprise-ag__article-link:hover {
    color: #8FD14F;
    gap: 10px;
}

/* Cards hidden by filter */
.enterprise-ag__article-card--hidden {
    display: none;
}

/* --- Flipbook Modal --- */

.enterprise-ag__flipbook-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 15, 28, 0.97);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.enterprise-ag__flipbook-modal--open {
    display: flex;
}

.enterprise-ag__flipbook-modal-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.enterprise-ag__flipbook-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.enterprise-ag__flipbook-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #6FBF3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.enterprise-ag__flipbook-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 250ms ease;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.enterprise-ag__flipbook-close:hover {
    background: rgba(111, 191, 60, 0.2);
    border-color: rgba(111, 191, 60, 0.5);
}

.enterprise-ag__flipbook-frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(111, 191, 60, 0.2);
}

.enterprise-ag__flipbook-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.enterprise-ag__flipbook-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    cursor: pointer;
}

/* --- Article Single page styles --- */

.enterprise-ag__article-single {
    background: #0a1628;
    min-height: 100vh;
    color: #ffffff;
}

.enterprise-ag__article-single-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.enterprise-ag__article-single-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enterprise-ag__article-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.4) 60%, transparent 100%);
}

.enterprise-ag__article-single-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 56px;
}

.enterprise-ag__article-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.enterprise-ag__article-single-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #d0e8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 900px;
}

.enterprise-ag__article-single-body {
    max-width: 840px;
    margin: 0 auto;
    padding: 72px 32px 96px;
}

.enterprise-ag__article-single-body p {
    font-size: 18px;
    line-height: 1.9;
    color: #c0ccd8;
    margin-bottom: 28px;
}

.enterprise-ag__article-single-body h2,
.enterprise-ag__article-single-body h3,
.enterprise-ag__article-single-body h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff 0%, #8FD14F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 48px 0 20px;
    line-height: 1.25;
}

.enterprise-ag__article-single-body h2 { font-size: clamp(24px, 3vw, 36px); }
.enterprise-ag__article-single-body h3 { font-size: clamp(20px, 2.5vw, 28px); }
.enterprise-ag__article-single-body h4 { font-size: clamp(17px, 2vw, 22px); }

.enterprise-ag__article-single-body img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.enterprise-ag__article-single-body a {
    color: #6FBF3C;
    text-decoration: underline;
    text-decoration-color: rgba(111, 191, 60, 0.4);
    transition: color 200ms ease;
}

.enterprise-ag__article-single-body a:hover {
    color: #8FD14F;
}

.enterprise-ag__article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #6FBF3C;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 56px;
    transition: gap 250ms ease, color 250ms ease;
}

.enterprise-ag__article-back:hover {
    gap: 14px;
    color: #8FD14F;
}

/* Related articles footer */
.enterprise-ag__article-related {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f36 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(111, 191, 60, 0.1);
}

.enterprise-ag__article-related-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    background: linear-gradient(to right, #ffffff, #6FBF3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.enterprise-ag__article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    body.enterprise-ag-template {
        overflow-x: hidden !important;
    }

    .enterprise-ag {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    .enterprise-ag__nav {
        width: 100%;
        overflow-x: hidden;
    }

    .enterprise-ag__nav-inner {
        height: auto;
        padding: 12px 12px;
        flex-wrap: nowrap;
        gap: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .enterprise-ag__logo {
        font-size: 16px;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .enterprise-ag__menu {
        display: none !important;
    }

    .enterprise-ag__cta-button {
        display: inline-block !important;
        padding: 8px 12px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .enterprise-ag__container {
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .enterprise-ag__section {
        padding: 80px 0;
    }
    
    .enterprise-ag__audience-cards,
    .enterprise-ag__distribution-cards,
    .enterprise-ag__reasons-grid {
        grid-template-columns: 1fr;
    }

    /* Magazine responsive */
    .enterprise-ag__magazine-showcase {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .enterprise-ag__magazine-cover-wrap {
        max-width: 220px;
        margin: 0 auto;
    }

    .enterprise-ag__article-card--featured {
        grid-template-columns: 1fr;
    }

    .enterprise-ag__article-card--featured .enterprise-ag__article-img-wrap {
        height: 240px;
        min-height: unset;
    }

    .enterprise-ag__articles-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-ag__articles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .enterprise-ag__article-related-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-ag__article-single-hero {
        height: 340px;
    }

    .enterprise-ag__article-single-hero-content {
        padding: 0 16px 40px;
    }

    .enterprise-ag__article-single-body {
        padding: 48px 16px 64px;
    }

    .enterprise-ag__flipbook-embed {
        aspect-ratio: 4 / 5;
        border-radius: 10px;
    }
    
    .enterprise-ag__distribution-chart-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .enterprise-ag__donut-chart {
        width: 300px;
        height: 300px;
    }

    .enterprise-ag__nav-inner {
        height: auto;
        padding: 12px 16px;
        flex-wrap: nowrap;
        gap: 12px;
        max-width: 100%;
    }

    .enterprise-ag__logo {
        font-size: 18px;
        flex: 1;
    }

    .enterprise-ag__menu {
        display: none;
    }

    .enterprise-ag__cta-button {
        display: none;
    }

    .enterprise-ag__hero {
        min-height: auto;
        padding-top: 96px;
    }

    .enterprise-ag__hero-content {
        height: auto;
        padding: 0 16px 40px;
    }

    .enterprise-ag__hero-headline {
        font-size: clamp(40px, 12vw, 64px);
        letter-spacing: -1px;
    }

    .enterprise-ag__hero-subhead {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .enterprise-ag__badge {
        padding: 10px 18px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .enterprise-ag__section-title {
        font-size: clamp(28px, 8vw, 44px);
    }

    .enterprise-ag__section-intro,
    .enterprise-ag__section-subhead {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .enterprise-ag__audience-card,
    .enterprise-ag__distribution-card {
        padding: 32px;
    }

    .enterprise-ag__distribution-chart-wrapper {
        padding: 32px;
    }

    .enterprise-ag__donut-chart {
        width: 260px;
        height: 260px;
    }

    .enterprise-ag__chart-center {
        width: 140px;
        height: 140px;
    }

    .enterprise-ag__table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .enterprise-ag__rates-table {
        min-width: 700px;
    }

    .enterprise-ag__list-rental-card {
        padding: 32px;
    }

    .enterprise-ag__list-rental-card ul {
        padding: 20px;
    }

    .enterprise-ag__rates-footer {
        padding: 32px 20px;
    }

    .enterprise-ag__rates-footer h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .enterprise-ag__rates-cta-buttons {
        width: 100%;
        gap: 12px;
    }

    .enterprise-ag__rates-footer .enterprise-ag__button {
        display: inline-block;
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .enterprise-ag__footer {
        padding: 32px 0 20px;
    }

    .enterprise-ag__footer-contact {
        font-size: 14px;
    }

    .enterprise-ag__footer-contact p {
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .enterprise-ag__footer-contact a {
        word-break: break-word;
    }
}

@media (min-width: 481px) and (max-width: 900px) {
    .enterprise-ag__articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enterprise-ag__article-card--featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .enterprise-ag__article-card--featured .enterprise-ag__article-img-wrap {
        height: 280px;
        min-height: unset;
    }

    .enterprise-ag__article-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .enterprise-ag__nav-inner {
        padding: 10px 12px;
    }

    .enterprise-ag__menu {
        gap: 12px;
    }

    .enterprise-ag__menu-link {
        font-size: 11px;
    }

    .enterprise-ag__hero-headline {
        font-size: clamp(34px, 12vw, 52px);
    }

    .enterprise-ag__section {
        padding: 64px 0;
    }

    .enterprise-ag__rates-table {
        min-width: 620px;
    }

    .enterprise-ag__magazine-showcase {
        padding: 24px;
    }

    .enterprise-ag__magazine-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   PHASE 2A ADDITIONS — Editorial Craft
   ========================================================================== */

/* Distribution legend — gold italic percentages with count-up */
.enterprise-ag__legend-percent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: #C9A227;
    font-size: 1.2em;
    margin-left: 4px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
    display: inline-block;
    min-width: 2.5em;
    text-align: left;
}

/* Editorial pull-quote section — the biggest "this is a magazine" signal */
.enterprise-ag__pullquote {
    position: relative;
    padding: 140px 32px;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(111, 191, 60, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #0a1628 0%, #0f1f36 50%, #0a1628 100%);
    overflow: hidden;
    isolation: isolate;
}

.enterprise-ag__pullquote::before,
.enterprise-ag__pullquote::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, 40%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.6), transparent);
}

.enterprise-ag__pullquote::before {
    top: 56px;
}

.enterprise-ag__pullquote::after {
    bottom: 56px;
}

.enterprise-ag__pullquote-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.enterprise-ag__pullquote-mark {
    position: absolute;
    top: -0.4em;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 900;
    font-size: clamp(180px, 22vw, 300px);
    line-height: 1;
    color: #C9A227;
    opacity: 0.09;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.enterprise-ag__pullquote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 4.5vw, 56px);
    line-height: 1.35;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.enterprise-ag__pullquote-attr {
    display: block;
    margin-top: 28px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C9A227;
    position: relative;
    z-index: 2;
}

.enterprise-ag__pullquote-rule {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A227, transparent);
    margin: 40px auto 0;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .enterprise-ag__pullquote {
        padding: 96px 24px;
    }

    .enterprise-ag__pullquote::before {
        top: 36px;
    }

    .enterprise-ag__pullquote::after {
        bottom: 36px;
    }

    .enterprise-ag__magazine-cover-link {
        transform: rotateY(-3deg) rotateX(0.5deg);
    }
}

/* ==========================================================================
   PHASE 2B ADDITIONS — Premium Pricing Cards (Rates)
   ========================================================================== */

.enterprise-ag__pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 96px;
    margin-top: 48px;
}

.enterprise-ag__pricing-card {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 40, 68, 0.85) 0%, rgba(10, 22, 40, 0.92) 100%);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 24px;
    padding: 56px 48px 48px;
    overflow: hidden;
    transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.enterprise-ag__pricing-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, #C9A227 0%, rgba(201, 162, 39, 0.3) 100%);
    transition: background 400ms ease, width 400ms ease;
    z-index: 2;
}

.enterprise-ag__pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.07) 50%, transparent 70%);
    transform: translateX(-105%);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.enterprise-ag__pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(143, 209, 79, 0.42);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.48),
        0 0 60px rgba(111, 191, 60, 0.12);
}

.enterprise-ag__pricing-card:hover::before {
    background: linear-gradient(180deg, #8FD14F 0%, #367C2B 100%);
    width: 4px;
}

.enterprise-ag__pricing-card:hover::after {
    transform: translateX(105%);
}

.enterprise-ag__pricing-card--featured {
    background: linear-gradient(135deg, rgba(26, 48, 78, 0.92) 0%, rgba(12, 24, 42, 0.96) 100%);
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 162, 39, 0.15);
}

.enterprise-ag__pricing-card--featured::before {
    background: linear-gradient(180deg, #F2D589 0%, #C9A227 50%, #8B6F1C 100%);
    width: 4px;
}

.enterprise-ag__pricing-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: linear-gradient(135deg, #F2D589 0%, #C9A227 100%);
    color: #0a1628;
    padding: 6px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.45);
    z-index: 3;
}

.enterprise-ag__pricing-category {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 28px;
    display: block;
    position: relative;
    z-index: 2;
}

.enterprise-ag__pricing-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.enterprise-ag__pricing-prefix {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    color: #B8BFC8;
    line-height: 1;
}

.enterprise-ag__pricing-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1;
}

.enterprise-ag__pricing-note {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8B92A0;
    margin-bottom: 32px;
    display: block;
    position: relative;
    z-index: 2;
}

.enterprise-ag__pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.enterprise-ag__pricing-features li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #d0d8e0;
    line-height: 1.55;
    padding-left: 22px;
    position: relative;
}

.enterprise-ag__pricing-features li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9A227;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.45);
}

.enterprise-ag__pricing-details {
    margin-bottom: 28px;
    border-top: 1px solid rgba(201, 162, 39, 0.18);
    padding-top: 22px;
    position: relative;
    z-index: 2;
}

.enterprise-ag__pricing-details[open] {
    border-bottom: 1px solid rgba(201, 162, 39, 0.18);
    padding-bottom: 22px;
}

.enterprise-ag__pricing-details summary {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C9A227;
    list-style: none;
    padding: 4px 0;
    transition: color 300ms ease;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.enterprise-ag__pricing-details summary::-webkit-details-marker {
    display: none;
}

.enterprise-ag__pricing-details summary::after {
    content: '›';
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform 300ms ease;
    color: #C9A227;
}

.enterprise-ag__pricing-details[open] summary::after {
    transform: rotate(90deg);
}

.enterprise-ag__pricing-details summary:hover {
    color: #8FD14F;
}

.enterprise-ag__pricing-details summary:hover::after {
    color: #8FD14F;
}

.enterprise-ag__pricing-details .enterprise-ag__table-wrapper {
    margin-top: 20px;
    overflow-x: auto;
}

.enterprise-ag__pricing-details .enterprise-ag__rates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #d0d8e0;
    min-width: 480px;
}

.enterprise-ag__pricing-details .enterprise-ag__rates-table thead tr {
    background: rgba(201, 162, 39, 0.08);
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.enterprise-ag__pricing-details .enterprise-ag__rates-table th {
    padding: 10px 12px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C9A227;
}

.enterprise-ag__pricing-details .enterprise-ag__rates-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.enterprise-ag__pricing-details .enterprise-ag__rates-table tbody tr:last-child td {
    border-bottom: none;
}

.enterprise-ag__pricing-details .enterprise-ag__rates-table tbody tr:hover {
    background: rgba(111, 191, 60, 0.05);
}

.enterprise-ag__pricing-footnote {
    font-size: 12px;
    color: #8B92A0;
    font-style: italic;
    margin-top: 16px;
    line-height: 1.6;
}

.enterprise-ag__pricing-cta {
    margin-top: auto;
    background: linear-gradient(135deg, #367C2B 0%, #4FA635 50%, #6FBF3C 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 18px 28px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 350ms cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 24px rgba(54, 124, 43, 0.32);
    position: relative;
    z-index: 2;
}

.enterprise-ag__pricing-cta:hover {
    background: linear-gradient(135deg, #4FA635 0%, #6FBF3C 50%, #8FD14F 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(111, 191, 60, 0.48);
}

.enterprise-ag__pricing-cta-arrow {
    display: inline-block;
    transition: transform 300ms ease;
}

.enterprise-ag__pricing-cta:hover .enterprise-ag__pricing-cta-arrow {
    transform: translateX(5px);
}

/* Featured card uses gold CTA instead of green, matches the "premium" signal */
.enterprise-ag__pricing-card--featured .enterprise-ag__pricing-cta {
    background: linear-gradient(135deg, #C9A227 0%, #E8C77E 50%, #C9A227 100%);
    color: #0a1628;
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.42);
}

.enterprise-ag__pricing-card--featured .enterprise-ag__pricing-cta:hover {
    background: linear-gradient(135deg, #E8C77E 0%, #F2D589 50%, #E8C77E 100%);
    box-shadow: 0 14px 34px rgba(201, 162, 39, 0.55);
}

/* Rates footer CTA upgrade */
.enterprise-ag__rates-footer {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(20, 40, 68, 0.85) 0%, rgba(10, 22, 40, 0.92) 100%);
    border-radius: 24px;
    border: 1px solid rgba(201, 162, 39, 0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.enterprise-ag__rates-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(111, 191, 60, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.enterprise-ag__rates-footer h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -1px;
}

.enterprise-ag__rates-footer-sub {
    font-size: 17px;
    color: #B8BFC8;
    margin-bottom: 40px;
    position: relative;
}

.enterprise-ag__rates-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

@media (max-width: 900px) {
    .enterprise-ag__pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .enterprise-ag__pricing-card {
        padding: 44px 32px 36px;
    }

    .enterprise-ag__rates-footer {
        padding: 56px 24px;
    }
}

/* ==========================================================================
   PHASE 2C ADDITIONS — Articles grid (main page) + article page layout
   ========================================================================== */

/* ---------- Articles grid on main page ---------- */

.enterprise-ag__magazine-articles {
    margin-top: 96px;
    position: relative;
    z-index: 2;
}

.enterprise-ag__articles-header {
    display: block;
    text-align: center;
    margin-bottom: 56px;
    padding: 0 24px 28px;
    border-bottom: none;
    max-width: none;
}

.enterprise-ag__articles-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 auto 16px;
    text-align: center;
    max-width: 900px;
    padding: 0 12px;
    /* Override old WP-era gradient fill so text renders cleanly */
    background: linear-gradient(135deg, #ffffff 0%, #8FD14F 70%, #367C2B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-ag__articles-subtitle {
    font-size: 17px;
    color: #B8BFC8;
    line-height: 1.6;
    margin: 0 auto;
}

.enterprise-ag__articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.enterprise-ag__article-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(20, 40, 68, 0.9) 0%, rgba(10, 22, 40, 0.94) 100%);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    color: inherit;
}

.enterprise-ag__article-card--featured {
    grid-column: span 2;
    flex-direction: row;
}

.enterprise-ag__article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(143, 209, 79, 0.42);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 40px rgba(111, 191, 60, 0.12);
}

.enterprise-ag__article-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.enterprise-ag__article-card--featured .enterprise-ag__article-card-image {
    flex: 1 1 50%;
    aspect-ratio: auto;
    min-height: 360px;
}

.enterprise-ag__article-card-image::before {
    /* Subtle editorial grain overlay */
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0 6px, rgba(255, 255, 255, 0.015) 6px 7px);
    pointer-events: none;
}

.enterprise-ag__article-card-image::after {
    /* Shine sweep on hover */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.14) 50%, transparent 70%);
    transform: translateX(-105%);
    transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    mix-blend-mode: screen;
}

.enterprise-ag__article-card:hover .enterprise-ag__article-card-image::after {
    transform: translateX(105%);
}

.enterprise-ag__article-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.enterprise-ag__article-card--featured .enterprise-ag__article-card-body {
    padding: 56px 48px;
    justify-content: center;
    flex: 1 1 50%;
}

.enterprise-ag__article-card-category {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 16px;
}

.enterprise-ag__article-card-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.enterprise-ag__article-card--featured .enterprise-ag__article-card-title {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.enterprise-ag__article-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #B8BFC8;
    margin: 0 0 24px;
}

.enterprise-ag__article-card--featured .enterprise-ag__article-card-excerpt {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.enterprise-ag__article-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6FBF3C;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 300ms ease;
}

.enterprise-ag__article-card-arrow {
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-block;
}

.enterprise-ag__article-card:hover .enterprise-ag__article-card-link {
    color: #8FD14F;
}

.enterprise-ag__article-card:hover .enterprise-ag__article-card-arrow {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .enterprise-ag__articles-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-ag__article-card--featured {
        grid-column: auto;
        flex-direction: column;
    }

    .enterprise-ag__article-card--featured .enterprise-ag__article-card-image {
        min-height: 220px;
    }

    .enterprise-ag__article-card--featured .enterprise-ag__article-card-body {
        padding: 32px;
    }
}

/* ---------- Article page (individual articles/*.html) ---------- */

.enterprise-ag-article-page {
    background: #0a1628;
}

.enterprise-ag__article-hero {
    padding: 160px 32px 80px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(111, 191, 60, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(201, 162, 39, 0.09) 0%, transparent 60%),
        linear-gradient(180deg, #0a1628 0%, #0f1f36 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.enterprise-ag__article-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.enterprise-ag__article-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A227;
    text-decoration: none;
    margin-bottom: 40px;
    transition: all 300ms ease;
}

.enterprise-ag__article-back:hover {
    color: #8FD14F;
    gap: 14px;
}

.enterprise-ag__article-hero .enterprise-ag__article-category {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 24px;
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 4px;
    background: rgba(201, 162, 39, 0.05);
}

.enterprise-ag__article-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -2px;
    margin: 0 0 24px;
}

.enterprise-ag__article-dek {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.5;
    color: #d0d8e0;
    margin: 0 0 40px;
    max-width: 720px;
}

.enterprise-ag__article-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8B92A0;
    align-items: center;
}

.enterprise-ag__article-meta span {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.enterprise-ag__article-meta span:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C9A227;
    margin-left: 16px;
}

.enterprise-ag__article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 96px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    line-height: 1.78;
    color: #d0d8e0;
}

.enterprise-ag__article-body > p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 900;
    font-size: 84px;
    line-height: 0.85;
    float: left;
    margin: 8px 12px -4px 0;
    color: #C9A227;
}

.enterprise-ag__article-body p {
    margin: 0 0 28px;
}

.enterprise-ag__article-body h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.2;
    color: #ffffff;
    margin: 56px 0 20px;
    letter-spacing: -0.5px;
}

.enterprise-ag__article-body h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    margin: 40px 0 16px;
}

.enterprise-ag__article-body blockquote {
    margin: 56px 0;
    padding: 0 0 0 32px;
    border-left: 3px solid #C9A227;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.enterprise-ag__article-body a {
    color: #8FD14F;
    text-decoration: underline;
    text-decoration-color: rgba(143, 209, 79, 0.45);
    text-underline-offset: 3px;
    transition: all 300ms ease;
}

.enterprise-ag__article-body a:hover {
    color: #C9A227;
    text-decoration-color: #C9A227;
}

.enterprise-ag__article-body ul,
.enterprise-ag__article-body ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.enterprise-ag__article-body li {
    margin-bottom: 8px;
}

.enterprise-ag__article-footer {
    max-width: 720px;
    margin: 0 auto 120px;
    padding: 40px 32px;
    text-align: center;
    border-top: 1px solid rgba(201, 162, 39, 0.22);
}

@media (max-width: 768px) {
    .enterprise-ag__article-hero {
        padding: 120px 24px 56px;
    }

    .enterprise-ag__article-body {
        padding: 64px 24px;
        font-size: 17px;
        line-height: 1.75;
    }

    .enterprise-ag__article-body > p:first-of-type::first-letter {
        font-size: 64px;
    }

    .enterprise-ag__article-body blockquote {
        padding: 0 0 0 20px;
        font-size: 22px;
    }
}

/* ==========================================================================
   PHASE 3 ADDITIONS — Clarity, Authority, Visual Polish
   ========================================================================== */

/* ---------- 3B: Credentials strip (between Hero and Magazine) ---------- */

.enterprise-ag__credentials {
    position: relative;
    background: linear-gradient(180deg, #0a1628 0%, #0f1f36 50%, #0a1628 100%);
    padding: 28px 32px;
    border-top: 1px solid rgba(201, 162, 39, 0.35);
    border-bottom: 1px solid rgba(201, 162, 39, 0.35);
    overflow: hidden;
}

.enterprise-ag__credentials::before,
.enterprise-ag__credentials::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(320px, 50%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.8), transparent);
}

.enterprise-ag__credentials::before { top: -1px; }
.enterprise-ag__credentials::after { bottom: -1px; }

.enterprise-ag__credentials-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
}

.enterprise-ag__credentials-item {
    font-family: 'Inter', sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.enterprise-ag__credentials-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C9A227;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.6);
}

@media (max-width: 768px) {
    .enterprise-ag__credentials {
        padding: 24px 20px;
    }
    .enterprise-ag__credentials-dot {
        display: none;
    }
    .enterprise-ag__credentials-inner {
        gap: 8px 14px;
    }
    .enterprise-ag__credentials-item {
        letter-spacing: 2px;
    }
}

/* ---------- 3C: Publisher credit line (inside rates footer) ---------- */

.enterprise-ag__publisher-credit {
    max-width: 780px;
    margin: 40px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.75;
    color: #B8BFC8;
    position: relative;
    z-index: 2;
    text-wrap: balance;
}

.enterprise-ag__publisher-credit a {
    color: #C9A227;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.35);
    transition: all 250ms ease;
}

.enterprise-ag__publisher-credit a:hover {
    color: #8FD14F;
    border-bottom-color: #8FD14F;
}

.enterprise-ag__publisher-sisters {
    display: block;
    margin-top: 8px;
    color: #8B92A0;
    font-size: 12px;
}

/* ---------- 3C: Footer sister links ---------- */

.enterprise-ag__footer-sister {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.18);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8B92A0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.enterprise-ag__footer-sister a {
    color: #B8BFC8;
    text-decoration: none;
    transition: color 250ms ease;
}

.enterprise-ag__footer-sister a:hover {
    color: #C9A227;
}

.enterprise-ag__footer-sister span {
    color: #C9A227;
    opacity: 0.6;
}

/* ---------- 3D: Article hero illustrations + card SVG art ---------- */

.enterprise-ag__article-hero--illustrated {
    background: #0a1628;
    padding-top: calc(200px + var(--publisher-bar-height));
    padding-bottom: 100px;
}

.enterprise-ag__article-hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.enterprise-ag__article-hero-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

.enterprise-ag__article-hero--illustrated::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 22, 40, 0.25) 0%, rgba(10, 22, 40, 0.78) 70%, rgba(10, 22, 40, 0.92) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(10, 22, 40, 0.6) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.enterprise-ag__article-hero--illustrated .enterprise-ag__article-hero-inner {
    position: relative;
    z-index: 2;
}

/* ---------- Article hero: photo variant ---------- */
.enterprise-ag__article-hero--photo {
    background: #0a1628;
    padding-top: calc(200px + var(--publisher-bar-height));
    padding-bottom: 100px;
    position: relative;
}

.enterprise-ag__article-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.enterprise-ag__article-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10, 22, 40, 0.35) 0%, rgba(10, 22, 40, 0.65) 55%, rgba(10, 22, 40, 0.9) 100%),
        linear-gradient(90deg, rgba(10, 22, 40, 0.55) 0%, transparent 45%);
}

.enterprise-ag__article-hero--photo .enterprise-ag__article-hero-inner {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .enterprise-ag__article-hero--photo {
        padding-top: 140px;
        padding-bottom: 72px;
    }
}

/* Card SVG art — fills the card image container */
.enterprise-ag__article-card-image .enterprise-ag__card-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Card photo — replaces SVG art on articles that use photography */
.enterprise-ag__article-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.enterprise-ag__article-card:hover .enterprise-ag__article-card-photo {
    transform: scale(1.04);
}

.enterprise-ag__article-card-image {
    position: relative;
    overflow: hidden;
}

/* Sensor pulse — used on both article hero SVG and card SVG */
.enterprise-ag__sensor-dot {
    transform-origin: center;
    transform-box: fill-box;
    animation: sensor-pulse 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.enterprise-ag__sensors circle:nth-of-type(2) .enterprise-ag__sensor-dot,
.enterprise-ag__sensors > .enterprise-ag__sensor-dot:nth-of-type(2) {
    animation-delay: 0.6s;
}

.enterprise-ag__sensors > .enterprise-ag__sensor-dot:nth-of-type(3) {
    animation-delay: 1.2s;
}

@keyframes sensor-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(201, 162, 39, 0.5));
    }
    50% {
        transform: scale(1.4);
        filter: drop-shadow(0 0 12px rgba(242, 213, 137, 0.85));
    }
}

@media (prefers-reduced-motion: reduce) {
    .enterprise-ag__sensor-dot {
        animation: none;
    }
}

/* Responsive tuning for article hero illustrations */
@media (max-width: 768px) {
    .enterprise-ag__article-hero--illustrated {
        padding-top: 140px;
        padding-bottom: 72px;
    }
}

/* ==========================================================================
   CONTACT / LEAD CAPTURE SECTION
   ========================================================================== */

.enterprise-ag__contact {
    background:
        radial-gradient(ellipse 900px 600px at 15% 0%, rgba(111, 191, 60, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 700px 500px at 100% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a1628 0%, #050912 100%);
    color: #f8f7f3;
    position: relative;
    overflow: hidden;
}

.enterprise-ag__contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
}

.enterprise-ag__contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.enterprise-ag__contact-intro {
    padding-right: 16px;
}

.enterprise-ag__contact-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.4);
}

.enterprise-ag__contact-headline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 28px;
}

.enterprise-ag__contact-dek {
    font-size: 17px;
    line-height: 1.7;
    color: #c9d2dc;
    margin-bottom: 36px;
    max-width: 440px;
}

.enterprise-ag__contact-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.enterprise-ag__contact-trust li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #e5eaf0;
    letter-spacing: 0.2px;
}

.enterprise-ag__contact-trust-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C9A227;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    flex-shrink: 0;
}

/* Form */
.enterprise-ag__contact-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 44px 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    position: relative;
}

.enterprise-ag__honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.enterprise-ag__contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.enterprise-ag__contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.enterprise-ag__contact-field--full {
    display: block;
    margin-bottom: 20px;
}

.enterprise-ag__contact-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9d2dc;
    margin-bottom: 8px;
}

.enterprise-ag__contact-label em {
    color: #C9A227;
    font-style: normal;
    margin-left: 2px;
}

.enterprise-ag__contact-optional {
    font-size: 10px;
    font-weight: 500;
    color: #8899aa;
    letter-spacing: 1px;
    text-transform: none;
    margin-left: 4px;
}

.enterprise-ag__contact-form input[type="text"],
.enterprise-ag__contact-form input[type="email"],
.enterprise-ag__contact-form input[type="tel"],
.enterprise-ag__contact-form select,
.enterprise-ag__contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
    appearance: none;
    -webkit-appearance: none;
}

.enterprise-ag__contact-form input::placeholder,
.enterprise-ag__contact-form textarea::placeholder {
    color: #6b7a8a;
}

.enterprise-ag__contact-form input:focus,
.enterprise-ag__contact-form select:focus,
.enterprise-ag__contact-form textarea:focus {
    outline: none;
    border-color: #C9A227;
    background: rgba(10, 22, 40, 0.75);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.enterprise-ag__contact-form input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: rgba(220, 100, 100, 0.55);
}

.enterprise-ag__contact-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23C9A227' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.enterprise-ag__contact-form select option {
    background: #0a1628;
    color: #ffffff;
}

.enterprise-ag__contact-form textarea {
    resize: vertical;
    min-height: 110px;
    font-family: 'Inter', sans-serif;
}

.enterprise-ag__contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    margin-top: 12px;
    background: linear-gradient(135deg, #367C2B 0%, #76B82A 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(54, 124, 43, 0.45);
    transition: transform 250ms cubic-bezier(.22,1,.36,1), box-shadow 250ms ease, background 250ms ease;
}

.enterprise-ag__contact-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(54, 124, 43, 0.6);
    background: linear-gradient(135deg, #2D6E1F 0%, #8FD14F 100%);
}

.enterprise-ag__contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.enterprise-ag__contact-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #8899aa;
    text-align: center;
    line-height: 1.6;
}

.enterprise-ag__contact-status {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.enterprise-ag__contact-status--pending {
    background: rgba(201, 162, 39, 0.12);
    color: #F2D589;
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.enterprise-ag__contact-status--success {
    background: rgba(111, 191, 60, 0.15);
    color: #b8e78d;
    border: 1px solid rgba(111, 191, 60, 0.4);
}

.enterprise-ag__contact-status--error {
    background: rgba(220, 100, 100, 0.15);
    color: #ff9d9d;
    border: 1px solid rgba(220, 100, 100, 0.4);
}

/* Contact — responsive */
@media (max-width: 960px) {
    .enterprise-ag__contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .enterprise-ag__contact-intro {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .enterprise-ag__contact-form {
        padding: 32px 24px;
    }
    .enterprise-ag__contact-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   STICKY SCROLL CTA PILL
   ========================================================================== */

.enterprise-ag__sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px 6px 6px;
    background: linear-gradient(135deg, #367C2B 0%, #76B82A 100%);
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(54, 124, 43, 0.5), 0 0 0 1px rgba(10, 22, 40, 0.15);
    transform: translateY(140%);
    opacity: 0;
    transition: transform 350ms cubic-bezier(.22,1,.36,1), opacity 300ms ease, box-shadow 250ms ease;
    pointer-events: none;
}

.enterprise-ag__sticky-cta--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.enterprise-ag__sticky-cta:hover {
    box-shadow: 0 20px 44px rgba(54, 124, 43, 0.65), 0 0 0 1px rgba(10, 22, 40, 0.15);
    transform: translateY(-4px);
}

.enterprise-ag__sticky-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 18px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: background 200ms ease;
}

.enterprise-ag__sticky-cta-link:hover {
    background: rgba(10, 22, 40, 0.12);
}

.enterprise-ag__sticky-cta-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform 250ms ease;
}

.enterprise-ag__sticky-cta-link:hover .enterprise-ag__sticky-cta-arrow {
    transform: translateX(3px);
}

.enterprise-ag__sticky-cta-close {
    background: rgba(10, 22, 40, 0.22);
    border: none;
    color: #ffffff;
    cursor: pointer;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    padding: 0;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease;
    flex-shrink: 0;
}

.enterprise-ag__sticky-cta-close:hover {
    background: rgba(10, 22, 40, 0.45);
}

@media (max-width: 480px) {
    .enterprise-ag__sticky-cta {
        bottom: 16px;
        right: 16px;
    }
    .enterprise-ag__sticky-cta-link {
        padding: 8px 12px 8px 14px;
        font-size: 12px;
        gap: 8px;
    }
    .enterprise-ag__sticky-cta-close {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .enterprise-ag__sticky-cta {
        transition: opacity 200ms ease;
        transform: none !important;
    }
    .enterprise-ag__sticky-cta:hover {
        transform: none !important;
    }
}

/* ==========================================================================
   PUBLISHER BAR — clickable backlink to JCS Marketing above the nav
   (Entire bar is a single <a>, with a visible CTA pill on the right)
   ========================================================================== */

.enterprise-ag__publisher-bar {
    background: linear-gradient(90deg, #050912 0%, #0a1628 50%, #050912 100%);
    border-bottom: 1px solid rgba(201, 162, 39, 0.28);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--publisher-bar-height);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 250ms ease, border-color 250ms ease;
}

.enterprise-ag__publisher-bar:hover {
    background: linear-gradient(90deg, #0a1628 0%, #14355a 50%, #0a1628 100%);
    border-bottom-color: rgba(201, 162, 39, 0.55);
}

.enterprise-ag__publisher-bar-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #a4b0bd;
}

.enterprise-ag__publisher-bar-intro {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #8b96a4;
    font-weight: 600;
    letter-spacing: 2px;
    flex-shrink: 0;
}

/* Gold vertical divider after the opener — visually segments the bar */
.enterprise-ag__publisher-bar-intro::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.55) 50%, transparent 100%);
    flex-shrink: 0;
}

/* Rotator: cycles between Publications and Events */
.enterprise-ag__publisher-bar-rotator {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    height: 22px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.enterprise-ag__publisher-bar-slide {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    will-change: opacity;
}

.enterprise-ag__publisher-bar-slide--pubs {
    animation: publisherBarFadePubs 11s infinite ease-in-out;
}

.enterprise-ag__publisher-bar-slide--events {
    animation: publisherBarFadeEvents 11s infinite ease-in-out;
}

@keyframes publisherBarFadePubs {
    0%, 42%  { opacity: 1; }
    48%, 92% { opacity: 0; }
    98%      { opacity: 1; }
    100%     { opacity: 1; }
}

@keyframes publisherBarFadeEvents {
    0%, 42%  { opacity: 0; }
    48%, 92% { opacity: 1; }
    98%      { opacity: 0; }
    100%     { opacity: 0; }
}

/* Pause rotation on hover so users can finish reading */
.enterprise-ag__publisher-bar:hover .enterprise-ag__publisher-bar-slide {
    animation-play-state: paused;
}

.enterprise-ag__publisher-bar-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    flex-shrink: 0;
    line-height: 1;
}

.enterprise-ag__publisher-bar-chip--pubs {
    background: rgba(111, 191, 60, 0.14);
    border: 1px solid rgba(111, 191, 60, 0.55);
    color: #8FD14F;
}

.enterprise-ag__publisher-bar-chip--events {
    background: rgba(201, 162, 39, 0.18);
    border: 1px solid rgba(201, 162, 39, 0.6);
    color: #F2D589;
}

.enterprise-ag__publisher-bar-chip svg {
    flex-shrink: 0;
    display: block;
}

.enterprise-ag__publisher-bar-titles {
    color: #c9d2dc;
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 1.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex-shrink: 1;
}

@media (prefers-reduced-motion: reduce) {
    .enterprise-ag__publisher-bar-slide--pubs {
        animation: none;
        opacity: 1;
    }
    .enterprise-ag__publisher-bar-slide--events {
        animation: none;
        display: none;
    }
}

.enterprise-ag__publisher-bar-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.18) 0%, rgba(242, 213, 137, 0.08) 100%);
    border: 1px solid rgba(242, 213, 137, 0.55);
    border-radius: 999px;
    color: #F2D589;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    flex-shrink: 0;
    transition: background 250ms ease, border-color 250ms ease, color 250ms ease, box-shadow 250ms ease, transform 250ms cubic-bezier(.22,1,.36,1);
}

.enterprise-ag__publisher-bar:hover .enterprise-ag__publisher-bar-cta-pill {
    background: linear-gradient(135deg, #F2D589 0%, #C9A227 100%);
    border-color: #F2D589;
    color: #0a1628;
    box-shadow: 0 0 22px rgba(242, 213, 137, 0.45);
    transform: translateX(-2px);
}

.enterprise-ag__publisher-bar-arrow {
    font-size: 13px;
    line-height: 1;
    transition: transform 250ms ease;
}

.enterprise-ag__publisher-bar:hover .enterprise-ag__publisher-bar-arrow {
    transform: translateX(4px);
}

/* === Mobile button row — hidden on desktop, replaces bar under 680px === */
.enterprise-ag__publisher-bar-mobile {
    display: none;
}

@media (max-width: 1180px) {
    .enterprise-ag__publisher-bar-titles {
        display: none;
    }
}

@media (max-width: 820px) {
    .enterprise-ag__publisher-bar-inner {
        padding: 0 16px;
        gap: 12px;
        font-size: 10.5px;
        letter-spacing: 1.4px;
    }
    .enterprise-ag__publisher-bar-cta-pill {
        padding: 4px 11px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    .enterprise-ag__publisher-bar-chip {
        padding: 2px 7px;
        font-size: 8.5px;
        letter-spacing: 1.4px;
    }
}

@media (max-width: 680px) {
    /* Hide the desktop bar entirely on small screens */
    .enterprise-ag__publisher-bar {
        display: none !important;
    }
    /* Show the mobile row: brand label + Events + Visit JCS */
    .enterprise-ag__publisher-bar-mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        height: var(--publisher-bar-height);
        display: flex;
        align-items: stretch;
        gap: 10px;
        padding: 5px 12px;
        background: linear-gradient(90deg, #050912 0%, #0a1628 50%, #050912 100%);
        border-bottom: 1px solid rgba(201, 162, 39, 0.28);
        box-sizing: border-box;
    }
    /* Brand identity label (not clickable) — tells mobile users WHAT this bar is */
    .enterprise-ag__publisher-bar-mobile-brand {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        color: #F2D589;
        font-family: 'Inter', sans-serif;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        white-space: nowrap;
        padding-right: 10px;
        margin-right: 2px;
        border-right: 1px solid rgba(201, 162, 39, 0.35);
    }
    .enterprise-ag__publisher-bar-mobile-btn {
        flex: 1 1 0;
        min-width: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 8px;
        border-radius: 6px;
        font-family: 'Inter', sans-serif;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 1.1px;
        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
        transition: background 180ms ease, border-color 180ms ease, transform 120ms ease;
        border: 1px solid transparent;
        line-height: 1;
    }
    .enterprise-ag__publisher-bar-mobile-btn--events {
        background: rgba(242, 213, 137, 0.14);
        border-color: rgba(242, 213, 137, 0.55);
        color: #F2D589;
    }
    /* Visit button — slightly larger / more prominent than Events */
    .enterprise-ag__publisher-bar-mobile-btn--visit {
        flex: 1.45 1 0;
        background: linear-gradient(135deg, #F2D589 0%, #C9A227 100%);
        border-color: #F2D589;
        color: #0a1628;
        font-size: 11.5px;
        letter-spacing: 1.3px;
        box-shadow: 0 0 14px rgba(242, 213, 137, 0.35);
    }
    .enterprise-ag__publisher-bar-mobile-btn:active {
        transform: scale(0.96);
    }
    .enterprise-ag__publisher-bar-mobile-btn--events:active {
        background: rgba(242, 213, 137, 0.26);
    }
}

@media (max-width: 420px) {
    .enterprise-ag__publisher-bar-mobile {
        padding: 5px 9px;
        gap: 8px;
    }
    .enterprise-ag__publisher-bar-mobile-brand {
        font-size: 9.5px;
        letter-spacing: 1.1px;
        padding-right: 8px;
    }
    .enterprise-ag__publisher-bar-mobile-btn {
        font-size: 9.5px;
        letter-spacing: 0.9px;
        padding: 0 6px;
    }
    .enterprise-ag__publisher-bar-mobile-btn--visit {
        font-size: 10.5px;
        letter-spacing: 1.1px;
    }
}

/* Under 340px (very small phones), hide the brand label so the 2 CTAs have room */
@media (max-width: 340px) {
    .enterprise-ag__publisher-bar-mobile-brand {
        display: none;
    }
}

/* ==========================================================================
   PUBLISHER CARD — prominent JCS Marketing block before footer
   ========================================================================== */

.enterprise-ag__publisher-card {
    background:
        radial-gradient(ellipse 900px 500px at 20% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 700px 500px at 100% 100%, rgba(111, 191, 60, 0.09) 0%, transparent 55%),
        linear-gradient(180deg, #050912 0%, #0a1628 100%);
    padding: 96px 0 104px;
    position: relative;
    border-top: 1px solid rgba(201, 162, 39, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.enterprise-ag__publisher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, 60%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.7), transparent);
}

.enterprise-ag__publisher-card-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 72px;
    align-items: start;
}

.enterprise-ag__publisher-card-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enterprise-ag__publisher-card-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #C9A227;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    display: inline-block;
    align-self: flex-start;
}

.enterprise-ag__publisher-card-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -1.2px;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(to right, #ffffff 0%, #F2D589 70%, #C9A227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 300ms ease;
    display: inline-block;
}

.enterprise-ag__publisher-card-name:hover {
    filter: brightness(1.15);
}

.enterprise-ag__publisher-card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #c9d2dc;
    max-width: 440px;
    margin: 0;
}

.enterprise-ag__publisher-card-titles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.enterprise-ag__publisher-card-titles li a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: background 250ms ease, border-color 250ms ease, transform 250ms cubic-bezier(.22,1,.36,1);
}

.enterprise-ag__publisher-card-titles li a:hover {
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.45);
    transform: translateY(-2px);
}

.enterprise-ag__publisher-card-titles li a[aria-current="page"] {
    background: rgba(201, 162, 39, 0.12);
    border-color: rgba(201, 162, 39, 0.55);
}

.enterprise-ag__publisher-card-titles li strong {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #F2D589;
}

.enterprise-ag__publisher-card-titles li span {
    font-size: 12.5px;
    line-height: 1.4;
    color: #9ba6b4;
}

.enterprise-ag__publisher-card-cta-wrap {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.enterprise-ag__publisher-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #367C2B 0%, #76B82A 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(54, 124, 43, 0.45);
    transition: transform 250ms cubic-bezier(.22,1,.36,1), box-shadow 250ms ease;
}

.enterprise-ag__publisher-card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(54, 124, 43, 0.6);
}

.enterprise-ag__publisher-card-cta:hover span {
    transform: translateX(4px);
}

.enterprise-ag__publisher-card-cta span {
    font-size: 16px;
    line-height: 1;
    transition: transform 250ms ease;
}

.enterprise-ag__publisher-card-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b96a4;
}

@media (max-width: 900px) {
    .enterprise-ag__publisher-card {
        padding: 72px 0 80px;
    }
    .enterprise-ag__publisher-card-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .enterprise-ag__publisher-card-titles {
        grid-template-columns: 1fr;
    }
    .enterprise-ag__publisher-card-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

