/* ============================================================
   FITCO UNIFIED DESIGN SYSTEM V2 (FUD V2)
   Clean, Maintainable, Premium Design System
   Version: 2.0.0 | Date: 2026-01-30
   
   IMPORTANT: All styles are scoped to .fud-v1 main or .fud-v1 .fud-section
   This ensures WordPress header/footer remain unaffected.
   ============================================================ */

/* ==================== CSS RESET & BASE ==================== */
/* Scoped Reset: Only affects elements INSIDE .fud-v1 container to protect Header/Footer */
.fud-v1 *,
.fud-v1 *::before,
.fud-v1 *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==================== DESIGN TOKENS ==================== */
.fud-v1 {
    /* Brand Colors - Refined Gold */
    --gold-50: #fefaf6;
    --gold-100: #fdf3e8;
    --gold-200: #fae5cc;
    --gold-300: #f5d0a9;
    --gold-400: #e9a866;
    --gold-500: #d27b45;
    --gold-600: #b8612e;
    --gold-700: #a65323;
    --gold-800: #8a4520;
    --gold-900: #6d3719;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    /* Semantic Colors */
    --accent: var(--gold-500);
    --accent-hover: var(--gold-600);
    --accent-light: var(--gold-100);
    --accent-700: var(--gold-700);
    --accent-600: var(--gold-600);
    --accent-500: var(--gold-500);
    
    --text-primary: var(--slate-900);
    --text-secondary: var(--slate-600);
    --text-tertiary: var(--slate-400);
    
    --bg-root: #F5F5F7;
    --bg-card: rgba(255, 255, 255, 0.65);
    --bg-card-hover: rgba(255, 255, 255, 0.85);
    
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 2.6rem;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 1.75rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-14: 3.5rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --rounded-sm: 0.25rem;
    --rounded: 0.5rem;
    --rounded-md: 0.625rem;
    --rounded-lg: 0.75rem;
    --rounded-xl: 1rem;
    --rounded-2xl: 1.25rem;
    --rounded-3xl: 1.5rem;
    --rounded-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-float: 0 30px 60px -12px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;

    /* Container */
    --container-max: 1280px;
    --container-padding: var(--space-6);

    /* BASE STYLES */
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Scoped base elements */
.fud-v1 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.fud-v1 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast);
}

.fud-v1 a:hover {
    color: var(--accent);
}

/* ==================== CONTAINER ==================== */
.fud-v1 .container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==================== TYPOGRAPHY ==================== */
/* Scoped Typography */
.fud-v1 h1,
.fud-v1 h2,
.fud-v1 h3,
.fud-v1 h4,
.fud-v1 h5,
.fud-v1 h6 {
    font-family: var(--font-display);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.fud-v1 h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
.fud-v1 h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
.fud-v1 h3 { font-size: clamp(var(--text-xl), 3vw, var(--text-3xl)); }
.fud-v1 h4 { font-size: var(--text-xl); }
.fud-v1 h5 { font-size: var(--text-lg); }
.fud-v1 h6 { font-size: var(--text-base); }

.fud-v1 p {
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.fud-v1 .text-gradient {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fud-v1 .text-accent {
    color: var(--accent);
}

/* ==================== SECTIONS ==================== */
.fud-v1 section,
.fud-v1 .fud-section {
    padding: var(--space-16) 0;
}

.fud-v1 .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-12);
}

/* When a section-header contains a button, switch to flex split layout */
.fud-v1 .section-header:has(.btn) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: none;
    text-align: left;
}

.fud-v1 .section-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.fud-v1 .section-title {
    font-size: clamp(1.75rem, 2.6vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-3);
}

.fud-v1 .section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

/* ==================== BUTTON SYSTEM ==================== */
.fud-v1 .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.78rem var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    line-height: 1;
    border-radius: var(--rounded-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
}

.fud-v1 .btn-primary {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.fud-v1 .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.fud-v1 .btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.fud-v1 .btn-secondary:hover {
    background: var(--white);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.fud-v1 .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.fud-v1 .btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    color: var(--accent);
}

/* ==================== CARD SYSTEM ==================== */
.fud-v1 .card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-md);
}

.fud-v1 .card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fud-v1 .card-title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.fud-v1 .card-description {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.fud-v1 .card-elevated {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
}

/* ==================== GRID SYSTEMS ==================== */
.fud-v1 .grid {
    display: grid;
    gap: var(--space-6);
}

.fud-v1 .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.fud-v1 .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fud-v1 .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ==================== BENTO GRID ==================== */
.fud-v1 .bento-section {
    padding: var(--space-20) 0;
}

.fud-v1 .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: var(--space-8);
    perspective: 2000px;
}

.fud-v1 .bento-item,
.fud-v1 .bento-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rounded-3xl);
    padding: var(--space-10);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--duration-slow) var(--ease-out);
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: var(--shadow-sm);
}

.fud-v1 .bento-item:hover,
.fud-v1 .bento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px) scale(1.005);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

/* Glow Effect */
.fud-v1 .glow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(210, 123, 69, 0.08), transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
    transition: opacity var(--duration-slow);
    opacity: 0;
}

.fud-v1 .bento-card:hover .glow-blob {
    opacity: 1;
}

/* Card Content */
.fud-v1 .card-content {
    position: relative;
    z-index: 2;
}

.fud-v1 .card-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: var(--space-4);
    display: block;
    font-weight: var(--font-bold);
}

.fud-v1 .card-desc {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.fud-v1 .card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-6);
    transition: all var(--duration-normal);
    color: var(--text-primary);
}

.fud-v1 .bento-card:hover .card-arrow {
    background: var(--text-primary);
    color: var(--white);
    transform: rotate(-45deg);
}

/* Column Spans */
.fud-v1 .col-span-12 { grid-column: span 12; }
.fud-v1 .col-span-8 { grid-column: span 8; }
.fud-v1 .col-span-6 { grid-column: span 6; }
.fud-v1 .col-span-4 { grid-column: span 4; }
.fud-v1 .col-span-3 { grid-column: span 3; }
.fud-v1 .row-span-2 { grid-row: span 2; }

/* Responsive Column Spans (md: prefix for tablet/desktop) */
@media (min-width: 768px) {
  .fud-v1 .md\:col-span-12 { grid-column: span 12; }
  .fud-v1 .md\:col-span-8 { grid-column: span 8; }
  .fud-v1 .md\:col-span-6 { grid-column: span 6; }
  .fud-v1 .md\:col-span-4 { grid-column: span 4; }
  .fud-v1 .md\:col-span-3 { grid-column: span 3; }
}

/* ==================== HERO SECTION ==================== */
.fud-v1 .hero {
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: var(--space-16) 0 var(--space-14);
    perspective: 1000px;
}

.fud-v1 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(210, 123, 69, 0.03), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.fud-v1 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--rounded-full);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-subtle);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--ease-out);
}

.fud-v1 .hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.fud-v1 .hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.95rem, 3vw, 2.75rem);
    font-weight: var(--font-extrabold);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-5);
    max-width: 12ch;
    transform-style: preserve-3d;
}

.fud-v1 .hero-desc {
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 54ch;
    margin-bottom: var(--space-10);
    font-weight: var(--font-normal);
    line-height: 1.62;
}

.fud-v1 .hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: var(--leading-relaxed);
}

.fud-v1 .hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Grid Layout (for article pages) */
.fud-v1 .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.fud-v1 .hero-copy {
    max-width: 640px;
}

.fud-v1 .hero-copy h1 {
    font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
    margin-bottom: var(--space-6);
}

.fud-v1 .hero-copy .lead {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.fud-v1 .hero-copy .actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.fud-v1 .hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fud-v1 .hero-media img {
    max-width: 100%;
    height: auto;
    border-radius: var(--rounded-2xl);
    box-shadow: var(--shadow-lg);
}

/* Meta Pills */
.fud-v1 .meta {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.fud-v1 .pill {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border-radius: var(--rounded-full);
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(210, 123, 69, 0.2);
}

/* Table of Contents */
.fud-v1 .toc {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    margin: var(--space-8) auto;
    max-width: var(--container-max);
}

.fud-v1 .toc h2 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.fud-v1 .toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fud-v1 .toc li {
    margin-bottom: var(--space-2);
}

.fud-v1 .toc a {
    color: var(--text-secondary);
    font-size: var(--text-base);
    transition: color var(--duration-fast);
}

.fud-v1 .toc a:hover {
    color: var(--accent);
}

/* Longform Content Sections */
.fud-v1 .section.longform {
    padding: var(--space-12) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.fud-v1 .section.longform.band {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-top: 1px solid var(--border-subtle);
}

.fud-v1 .section.longform p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.fud-v1 .section.longform .callout {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--rounded-lg);
    margin: var(--space-6) 0;
    font-style: italic;
}

/* ==================== STATS ==================== */
.fud-v1 .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.fud-v1 .stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.fud-v1 .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fud-v1 .stat-value {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.fud-v1 .stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==================== SPECIFICATIONS TABLE ==================== */
.fud-v1 .specs,
.fud-v1 .specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rounded-xl);
    overflow: hidden;
}

.fud-v1 .specs-table th,
.fud-v1 .specs-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.fud-v1 .specs-table th {
    background: rgba(0, 0, 0, 0.02);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.fud-v1 .specs-table tr:last-child td {
    border-bottom: none;
}

.fud-v1 .specs-table tr:hover {
    background: var(--bg-card-hover);
}

/* ==================== BREADCRUMBS ==================== */
.fud-v1 .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    list-style: none;
}

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

.fud-v1 .breadcrumb-separator {
    color: var(--text-tertiary);
}

/* ==================== TAGS & BADGES ==================== */
.fud-v1 .tag,
.fud-v1 .badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--rounded-full);
    background: var(--accent-light);
    border: 1px solid rgba(210, 123, 69, 0.2);
    color: var(--accent);
}

/* ==================== CALLOUTS ==================== */
.fud-v1 .callout {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--accent);
    border-radius: var(--rounded-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
}

.fud-v1 .callout-title {
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
}

.fud-v1 .callout-info {
    border-left-color: var(--gold-500);
}

.fud-v1 .callout-success {
    border-left-color: #10b981;
}

.fud-v1 .callout-warning {
    border-left-color: #f59e0b;
}

/* ==================== LIST SECTION ==================== */
.fud-v1 .list-section {
    padding: var(--space-20) 0;
    border-top: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
}

.fud-v1 .list-container {
    display: flex;
    flex-direction: column;
}

.fud-v1 .standard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-8) var(--space-6);
    border-bottom: 1px solid var(--border-subtle);
    border-radius: var(--rounded-xl);
    transition: all var(--duration-normal);
    cursor: pointer;
}

.fud-v1 .standard-item:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-sm);
    transform: scale(1.01);
}

.fud-v1 .standard-item .item-content {
    flex: 1;
}

.fud-v1 .standard-item .item-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--text-sm);
    color: var(--accent);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
    display: block;
}

.fud-v1 .standard-item .item-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    transition: color var(--duration-normal);
}

.fud-v1 .standard-item:hover .item-title {
    color: var(--text-primary);
}

.fud-v1 .standard-item .item-action {
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--duration-normal);
    color: var(--text-primary);
    font-weight: var(--font-medium);
}

.fud-v1 .standard-item:hover .item-action {
    opacity: 1;
    transform: translateX(0);
}

/* Gradient CTA Section (alternative) */
.fud-v1 .cta-gradient {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    color: var(--white);
    padding: var(--space-20) 0;
    text-align: center;
    border-radius: var(--rounded-2xl);
    margin: var(--space-12) 0;
}

.fud-v1 .cta-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    margin-bottom: var(--space-4);
}

.fud-v1 .cta-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    opacity: 0.95;
}

.fud-v1 .cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== MEDIA QUERIES ==================== */
@media (max-width: 1024px) {
    .fud-v1 .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .fud-v1 .col-span-12,
    .fud-v1 .col-span-8,
    .fud-v1 .col-span-6,
    .fud-v1 .col-span-4,
    .fud-v1 .col-span-3 {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .fud-v1 {
        --container-padding: var(--space-4);
    }
    
    .fud-v1 section {
        padding: var(--space-12) 0;
    }
    
    .fud-v1 .hero {
        min-height: auto;
        padding: var(--space-16) 0;
    }
    
    .fud-v1 .hero-title {
        font-size: 2.45rem;
    }
    
    .fud-v1 .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .fud-v1 .hero-media {
        order: -1;
    }
    
    .fud-v1 .bento-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .fud-v1 .col-span-12,
    .fud-v1 .col-span-8,
    .fud-v1 .col-span-6,
    .fud-v1 .col-span-4,
    .fud-v1 .col-span-3 {
        grid-column: span 1;
    }
    
    .fud-v1 .grid-2,
    .fud-v1 .grid-3,
    .fud-v1 .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .fud-v1 .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fud-v1 .standard-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    
    .fud-v1 .standard-item .item-action {
        opacity: 1;
        transform: none;
    }
    
    .fud-v1 .meta {
        justify-content: center;
    }
    
    .fud-v1 .toc {
        margin: var(--space-6) var(--space-4);
    }
}

@media (max-width: 480px) {
    .fud-v1 .btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
    
    .fud-v1 .hero-actions,
    .fud-v1 .cta-buttons,
    .fud-v1 .cta-actions {
        flex-direction: column;
    }
    
    .fud-v1 .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   TESTING SOLUTIONS HOME ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â REFINED HUB LAYER
   Keeps the upgrade scoped to the testing home instead of
   reworking the older FUD system globally.
   ============================================================ */

.fitco-testing-home .hero {
    min-height: auto;
    padding: 64px 0 56px;
    perspective: none;
}

.fitco-testing-home .hero-bg {
    background:
        radial-gradient(circle at 78% 18%, rgba(210, 123, 69, 0.1), transparent 30%),
        radial-gradient(circle at 20% 72%, rgba(15, 23, 42, 0.03), transparent 34%);
}

.fitco-testing-home .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: end;
}

.fitco-testing-home .hero-copy {
    max-width: 760px;
}

.fitco-testing-home .hero-badge {
    padding: 7px 14px;
    background: rgba(253, 243, 232, 0.92);
    border-color: rgba(184, 97, 46, 0.18);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a4520;
    margin-bottom: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.fitco-testing-home .hero-badge:hover {
    transform: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.fitco-testing-home .hero-title {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    line-height: 1.01;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    max-width: 11ch;
    text-wrap: balance;
    transform-style: flat;
}

.fitco-testing-home .hero-desc {
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    max-width: 53ch;
    margin-bottom: 24px;
    line-height: 1.62;
}

.fitco-testing-home .hero-actions {
    justify-content: flex-start;
    gap: 12px;
}

.fitco-testing-home .hero-copy {
    max-width: 640px;
}

.fitco-testing-home .hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(184, 97, 46, 0.14);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
}

.fitco-testing-home .hero-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(184, 97, 46, 0.22);
    box-shadow: 0 24px 44px -34px rgba(15, 23, 42, 0.24);
}

.fitco-testing-home .hero-panel {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
}

.fitco-testing-home .hero-panel-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a4520;
}

.fitco-testing-home .hero-panel-grid {
    display: grid;
    gap: 18px;
}

.fitco-testing-home .hero-panel-item strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 1.02rem;
    line-height: 1.25;
    color: var(--text-primary);
}

.fitco-testing-home .hero-panel-item span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
}

.fitco-testing-home .bento-section,
.fitco-testing-home .list-section,
.fitco-testing-home .cta-section {
    padding: 64px 0;
}

.fitco-testing-home .section-header {
    align-items: end;
    gap: 24px;
    margin-bottom: 40px;
}

.fitco-testing-home .section-heading {
    display: grid;
    gap: 8px;
    max-width: 580px;
}

.fitco-testing-home .section-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a4520;
}

.fitco-testing-home .section-note {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
}

.fitco-testing-home .section-title {
    font-size: clamp(1.8rem, 2.4vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 15ch;
}

.fitco-testing-home .bento-grid {
    gap: 20px;
    grid-auto-rows: minmax(280px, auto);
    perspective: none;
}

.fitco-testing-home .bento-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    transform-style: flat;
    will-change: auto;
}

.fitco-testing-home .bento-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(184, 97, 46, 0.18);
    box-shadow: 0 32px 64px -42px rgba(15, 23, 42, 0.28);
}

.fitco-testing-home .bento-card.is-featured {
    background: linear-gradient(180deg, rgba(253, 243, 232, 0.82), rgba(255, 255, 255, 0.96));
    min-height: 360px;
}

.fitco-testing-home .bento-card.is-featured .card-title {
    font-size: clamp(1.75rem, 2.3vw, 2.2rem);
    max-width: 14ch;
}

.fitco-testing-home .card-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fitco-testing-home .card-label {
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(184, 97, 46, 0.18);
    background: rgba(253, 243, 232, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #8a4520;
    margin-bottom: 16px;
}

.fitco-testing-home .card-title {
    font-size: 1.28rem;
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.fitco-testing-home .card-desc {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 58ch;
}

.fitco-testing-home .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.fitco-testing-home .card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fitco-testing-home .card-footer {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.fitco-testing-home .card-link {
    color: #8a4520;
    font-size: 0.92rem;
    font-weight: 700;
}

.fitco-testing-home .card-arrow {
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 50%;
    background: rgba(210, 123, 69, 0.08);
    color: #8a4520;
    align-self: auto;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.fitco-testing-home .bento-card:hover .card-arrow {
    background: linear-gradient(135deg, #b8612e, #d27b45);
    color: #ffffff;
    transform: translateX(3px);
}

.fitco-testing-home div.bento-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
}

.fitco-testing-home .list-section {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.52) 100%);
}

.fitco-testing-home .list-container {
    display: grid;
    gap: 12px;
}

.fitco-testing-home .standard-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 26px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.fitco-testing-home .standard-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(184, 97, 46, 0.18);
    box-shadow: 0 24px 44px -34px rgba(15, 23, 42, 0.24);
}

.fitco-testing-home .standard-item .item-content {
    flex: 1;
    min-width: 0;
}

.fitco-testing-home .standard-item .item-code {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(253, 243, 232, 0.92);
    border: 1px solid rgba(184, 97, 46, 0.18);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a4520;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.fitco-testing-home .standard-item .item-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.18;
    margin: 12px 0 8px;
}

.fitco-testing-home .cta-box h3 {
    font-size: clamp(1.85rem, 2.8vw, 2.5rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    max-width: 16ch;
}

.fitco-testing-home .item-note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 60ch;
}

.fitco-testing-home .standard-item .item-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(210, 123, 69, 0.08);
    color: #8a4520;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 1;
    transform: none;
    align-self: center;
}

.fitco-testing-home .standard-item:hover .item-action {
    transform: translateX(2px);
    background: #d27b45;
    color: #ffffff;
}

.fitco-testing-home .cta-box {
    box-shadow: 0 32px 64px -42px rgba(15, 23, 42, 0.28);
}

@media (max-width: 1024px) {
    .fitco-testing-home .hero-layout {
        grid-template-columns: 1fr;
    }

    .fitco-testing-home .hero-panel {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .fitco-testing-home .hero {
        padding: 64px 0 48px;
    }

    .fitco-testing-home .hero-title {
        font-size: clamp(2rem, 8.4vw, 2.65rem);
    }

    .fitco-testing-home .hero-panel,
    .fitco-testing-home .bento-card,
    .fitco-testing-home .standard-item {
        border-radius: 24px;
    }

    .fitco-testing-home .section-header {
        align-items: flex-start;
    }

    .fitco-testing-home .bento-card {
        padding: 28px 24px;
        min-height: auto;
    }

    .fitco-testing-home .bento-card.is-featured .card-title {
        font-size: clamp(1.7rem, 7vw, 2rem);
    }

    .fitco-testing-home .standard-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .fitco-testing-home .standard-item .item-action {
        align-self: flex-start;
    }
}

@media (max-width: 540px) {
    .fitco-testing-home .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fitco-testing-home .hero-chip {
        width: 100%;
    }

    .fitco-testing-home .card-footer {
        align-items: center;
    }

    .fitco-testing-home .standard-item .item-title {
        font-size: 1.08rem;
    }
}


/* ============================================================
   STANDARDS PAGES ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Full Revamp
   Covers: ISO / ASTM article layout, TOC sidebar, content
   sections, bento cards, callouts, tables, span planner,
   related cards, inline TOC, and CTA.
   ============================================================ */

/* ---- Reading Progress Bar ---- */
.fud-v1 .reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-300));
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 var(--rounded-full) var(--rounded-full) 0;
    box-shadow: 0 0 10px rgba(210, 123, 69, 0.5);
}

/* ----------------------------------------------------------------
   STANDARD HEADER
   ---------------------------------------------------------------- */
.fud-v1 .standard-header {
    padding: 5.5rem 0 4rem;
    background:
        radial-gradient(ellipse at 10% 55%, rgba(210, 123, 69, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse at 88% 20%, rgba(210, 123, 69, 0.10) 0%, transparent 48%),
        linear-gradient(160deg, var(--gold-50) 0%, #fffbf4 45%, var(--white) 100%);
    color: var(--slate-900);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(210, 123, 69, 0.18);
}

/* Gold radial glow */
.fud-v1 .standard-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 60%, rgba(210, 123, 69, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(210, 123, 69, 0.14) 0%, transparent 45%);
    pointer-events: none;
}

/* Dot-grid texture */
.fud-v1 .standard-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(210, 123, 69, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.fud-v1 .standard-header .container {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 992px) {
    .fud-v1 .standard-header .container {
        grid-template-columns: 1fr 360px;
        gap: var(--space-16);
    }
}

/* Header text column */
.fud-v1 .header-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

/* Header image column ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â hidden on mobile */
.fud-v1 .header-media {
    display: none;
}
@media (min-width: 992px) {
    .fud-v1 .header-media { display: block; }
}

/* Badge */
.fud-v1 .standard-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
    color: var(--white);
    padding: 0.35rem 1.1rem;
    border-radius: var(--rounded-full);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(210, 123, 69, 0.45);
    width: fit-content;
}

/* Title */
.fud-v1 .standard-title {
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    line-height: 1.1;
    color: var(--slate-900);
    font-family: var(--font-display);
    margin: 0;
    letter-spacing: -0.02em;
}
.fud-v1 .standard-title .highlight { color: var(--gold-700); }

/* Lead text */
.fud-v1 .standard-lead {
    font-size: var(--text-lg);
    color: var(--slate-600);
    line-height: 1.75;
    max-width: 600px;
    margin: 0;
}

/* Meta pill row */
.fud-v1 .standard-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(210, 123, 69, 0.18);
    margin-top: var(--space-2);
}
.fud-v1 .meta-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(210, 123, 69, 0.22);
    color: var(--slate-600);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    padding: 0.3rem 0.85rem;
    border-radius: var(--rounded-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.fud-v1 .meta-icon {
    color: var(--gold-400);
    font-size: 0.65rem;
}

/* Glassmorphism image card */
.fud-v1 .standard-image-wrapper {
    border-radius: var(--rounded-2xl);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(166, 83, 35, 0.18), 0 0 0 1px rgba(210, 123, 69, 0.15);
    background: rgba(255, 255, 255, 0.6);
    padding: var(--space-3);
}
.fud-v1 .standard-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--rounded-xl);
    display: block;
    object-fit: cover;
}

/* ================================================================
   STANDARD CONTENT LAYOUT  (sidebar + main grid)
   ================================================================ */
.fud-v1 .standard-layout {
    display: grid;
    gap: var(--space-10);
    padding: var(--space-14) 0 var(--space-24);
    align-items: start;
}
@media (min-width: 992px) {
    .fud-v1 .standard-layout {
        grid-template-columns: 248px 1fr;
        gap: var(--space-14);
    }
}

/* ================================================================
   TOC SIDEBAR
   ================================================================ */
.fud-v1 .standard-toc {
    position: sticky;
    top: 96px;
    background: var(--white);
    border-radius: var(--rounded-2xl);
    border: 1px solid var(--slate-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
.fud-v1 .standard-toc h3 {
    font-size: 0.6875rem;
    color: var(--slate-500);
    font-weight: var(--font-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: var(--space-4) var(--space-5) var(--space-3);
    border-bottom: 1px solid var(--slate-100);
    margin: 0;
    background: var(--slate-50);
    position: sticky;
    top: 0;
    z-index: 1;
}
.fud-v1 .standard-toc ul {
    list-style: none;
    padding: var(--space-2) 0 var(--space-3);
    margin: 0;
}
.fud-v1 .standard-toc li { margin: 0; }
.fud-v1 .standard-toc a {
    color: var(--slate-500);
    text-decoration: none;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 0.4rem var(--space-5);
    transition: all 0.18s ease;
    border-left: 2px solid transparent;
    line-height: 1.45;
    font-weight: var(--font-normal);
}
.fud-v1 .standard-toc a::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--slate-300);
    transition: all 0.18s ease;
}
.fud-v1 .standard-toc a:hover {
    color: var(--slate-800);
    border-left-color: var(--slate-300);
    background: var(--slate-50);
}
.fud-v1 .standard-toc a:hover::before { background: var(--slate-500); }
.fud-v1 .standard-toc a.active {
    color: var(--gold-700);
    border-left-color: var(--gold-500);
    background: var(--gold-50);
    font-weight: var(--font-semibold);
}
.fud-v1 .standard-toc a.active::before {
    background: var(--gold-500);
    width: 6px;
    height: 6px;
}

/* ================================================================
   STANDARD CONTENT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Main Column
   ================================================================ */

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Cancel the GLOBAL section padding that bleeds into articles ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fud-v1 .standard-content section {
    padding: 0 !important;
    margin-bottom: var(--space-16);
    scroll-margin-top: 110px;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Section Title (h2) ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fud-v1 .standard-content .section-title,
.fud-v1 .standard-content h2.section-title {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
    font-weight: var(--font-bold);
    color: var(--slate-900);
    margin: 0 0 var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.fud-v1 .standard-content .section-title::before,
.fud-v1 .standard-content h2.section-title::before {
    content: '';
    flex-shrink: 0;
    display: block;
    width: 4px;
    height: 1.3em;
    background: linear-gradient(to bottom, var(--gold-500), var(--gold-300));
    border-radius: var(--rounded-full);
}

/* h3 as section-title */
.fud-v1 .standard-content h3.section-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-5);
}

/* Regular h3 inside content */
.fud-v1 .standard-content h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--slate-800);
    margin: var(--space-8) 0 var(--space-3);
    line-height: 1.35;
}

/* Body text */
.fud-v1 .standard-content p {
    font-size: var(--text-base);
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

/* ================================================================
   CALLOUT VARIANTS
   ================================================================ */

/* Base callout (inline tip / note) */
.fud-v1 .standard-content .callout,
.fud-v1 .standard-content p.callout {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-left: 3px solid var(--slate-400);
    border-radius: var(--rounded-lg);
    padding: var(--space-4) var(--space-5);
    margin: var(--space-5) 0;
    font-size: var(--text-sm);
    color: var(--slate-600);
    line-height: 1.7;
}

/* .callout.tip ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â informational gold variant (ASTM D882) */
.fud-v1 .standard-content .callout.tip,
.fud-v1 .standard-content p.callout.tip {
    background: linear-gradient(135deg, #fffbf5 0%, #fff9f0 100%);
    border-color: var(--gold-200);
    border-left-color: var(--gold-500);
    color: var(--gold-900);
}
/* Inline "Tip" pill before the text */
.fud-v1 .standard-content .callout.tip::before,
.fud-v1 .standard-content p.callout.tip::before {
    content: 'Tip';
    display: inline-block;
    background: var(--gold-500);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: var(--rounded-sm);
    margin-right: var(--space-2);
    vertical-align: middle;
    line-height: 1.6;
}

/* ================================================================
   BULLET LISTS
   ================================================================ */
.fud-v1 .standard-content ul {
    margin-bottom: var(--space-6);
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.fud-v1 .standard-content ul li {
    position: relative;
    padding-left: var(--space-6);
    line-height: 1.7;
    font-size: var(--text-base);
    color: var(--slate-700);
}
.fud-v1 .standard-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
}

/* Plain ordered lists (non-stepped) */
.fud-v1 .standard-content ol:not(.stepped) {
    margin-bottom: var(--space-6);
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    counter-reset: plain-ol;
}
.fud-v1 .standard-content ol:not(.stepped) li {
    position: relative;
    padding-left: var(--space-8);
    line-height: 1.7;
    font-size: var(--text-base);
    color: var(--slate-700);
    counter-increment: plain-ol;
}
.fud-v1 .standard-content ol:not(.stepped) li::before {
    content: counter(plain-ol) '.';
    position: absolute;
    left: 0;
    color: var(--gold-600);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
}

/* ================================================================
   STEPPED PROCEDURE LIST
   ================================================================ */
.fud-v1 .standard-content ol.stepped {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    counter-reset: steps;
}
.fud-v1 .standard-content ol.stepped li {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-4) var(--space-5);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--rounded-lg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    counter-increment: steps;
    line-height: 1.7;
    font-size: var(--text-base);
    color: var(--slate-700);
}
.fud-v1 .standard-content ol.stepped li::before {
    content: counter(steps);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    border-radius: 50%;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(210, 123, 69, 0.35);
    margin-top: 0.1rem;
}
.fud-v1 .standard-content ol.stepped li:hover {
    border-color: var(--gold-300);
    background: var(--gold-50);
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

/* ================================================================
   STANDARD CALLOUT BOX  (div.standard-callout)
   FIXED: No Unicode content() ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â using pure CSS for decorations
   ================================================================ */
.fud-v1 .standard-callout {
    position: relative;
    background: linear-gradient(135deg, var(--gold-50) 0%, #fffdf8 100%);
    border: 1px solid var(--gold-200);
    border-left: 4px solid var(--gold-500);
    padding: var(--space-6) var(--space-7);
    border-radius: var(--rounded-xl);
    margin: var(--space-8) 0;
    overflow: hidden;
}
/* Decorative glow ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â no unicode at all */
.fud-v1 .standard-callout::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(210,123,69,0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.fud-v1 .standard-callout strong {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gold-800);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}
.fud-v1 .standard-callout strong::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background: var(--gold-500);
    border-radius: var(--rounded-full);
    flex-shrink: 0;
}
.fud-v1 .standard-callout p {
    color: var(--gold-900);
    font-size: var(--text-sm);
    line-height: 1.75;
    margin-bottom: var(--space-2);
}
.fud-v1 .standard-callout p:last-child { margin-bottom: 0; }

/* Callout lists */
.fud-v1 .standard-callout ul,
.fud-v1 .standard-callout ol {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.fud-v1 .standard-callout li {
    padding-left: var(--space-6);
    position: relative;
    color: var(--gold-900);
    font-size: var(--text-sm);
    line-height: 1.65;
}
/* Checkmark via inline SVG data URI ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â no Unicode encoding issues */
.fud-v1 .standard-callout li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b8612e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* ================================================================
   MUTED TEXT
   ================================================================ */
.fud-v1 .muted {
    color: var(--slate-400);
    font-size: var(--text-sm);
    font-style: italic;
    margin-top: var(--space-3);
    display: block;
    line-height: 1.6;
}

/* ================================================================
   STANDARD TABLE
   ================================================================ */
.fud-v1 .standard-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0;
    background: var(--white);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--slate-200), 0 2px 8px rgba(0,0,0,0.05);
    font-size: var(--text-sm);
}
.fud-v1 .standard-table thead { background: var(--slate-900); }
.fud-v1 .standard-table th {
    padding: var(--space-3) var(--space-5);
    text-align: left;
    font-weight: var(--font-semibold);
    color: var(--white);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.fud-v1 .standard-table th:first-child { color: var(--gold-400); }
.fud-v1 .standard-table td {
    padding: var(--space-3) var(--space-5);
    border-bottom: 1px solid var(--slate-100);
    color: var(--slate-600);
    vertical-align: top;
    line-height: 1.6;
}
.fud-v1 .standard-table td:first-child {
    font-weight: var(--font-semibold);
    color: var(--slate-800);
}
.fud-v1 .standard-table tbody tr:nth-child(even) td { background: var(--slate-50); }
.fud-v1 .standard-table tbody tr:last-child td { border-bottom: none; }
.fud-v1 .standard-table tbody tr:hover td { background: var(--gold-50); }

/* Scrollable wrapper ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â prevents overflow on mobile */
.fud-v1 .standard-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: var(--space-6) 0;
    border-radius: var(--rounded-xl);
    box-shadow: 0 0 0 1px var(--slate-200);
}
.fud-v1 .standard-table-wrapper .standard-table {
    margin: 0;
    min-width: 460px;
    box-shadow: none;
    border-radius: 0;
}
.fud-v1 .standard-table-wrapper .standard-table tbody tr:last-child td {
    border-bottom: none;
}

/* ================================================================
   BENTO GRID ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â INSIDE standard-content
   (checklist cards, FAQ cards, testometric setup cards)
   Fully overrides global bento-grid ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â no forced 320px rows
   ================================================================ */
.fud-v1 .standard-content .bento-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: var(--space-4) !important;
    margin: var(--space-6) 0;
    perspective: none;
}

/* col-span aliasing ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 6 of 12 = half width */
.fud-v1 .standard-content .bento-grid .col-span-6 { grid-column: span 1; }
.fud-v1 .standard-content .bento-grid .col-span-4 { grid-column: span 1; }
.fud-v1 .standard-content .bento-grid .col-span-12 { grid-column: 1 / -1; }

@media (max-width: 640px) {
    .fud-v1 .standard-content .bento-grid {
        grid-template-columns: 1fr !important;
    }
    .fud-v1 .standard-content .bento-grid .col-span-6,
    .fud-v1 .standard-content .bento-grid .col-span-4 {
        grid-column: span 1;
    }
}

/* Content bento card */
.fud-v1 .standard-content .bento-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    box-shadow: none;
    /* Reset global bento-card overrides */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform-style: flat;
    min-height: unset;
}
.fud-v1 .standard-content .bento-card:hover {
    border-color: var(--gold-300);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.fud-v1 .standard-content .bento-card h3 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--slate-900);
    margin: 0 0 var(--space-3);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.fud-v1 .standard-content .bento-card h3::before {
    content: '';
    flex-shrink: 0;
    width: 3px;
    height: 1em;
    background: var(--gold-500);
    border-radius: var(--rounded-full);
}
.fud-v1 .standard-content .bento-card p {
    font-size: var(--text-sm);
    color: var(--slate-600);
    line-height: 1.7;
    margin: 0;
}
/* Suppress decorative glow inside content cards */
.fud-v1 .standard-content .bento-card .glow-blob { display: none; }

/* ================================================================
   INLINE TOC  (nav.toc inside .standard-content when sidebar empty)
   Hidden on desktop (sidebar shows), visible on mobile/tablet
   ================================================================ */
.fud-v1 .standard-content .toc,
.fud-v1 .standard-content nav.toc {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--rounded-xl);
    padding: var(--space-5) var(--space-6);
    margin: 0 0 var(--space-8);
    display: none;    /* hidden on desktop ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â sidebar handles TOC */
}
@media (max-width: 991px) {
    .fud-v1 .standard-content .toc,
    .fud-v1 .standard-content nav.toc { display: block; }
}

.fud-v1 .standard-content .toc h2,
.fud-v1 .standard-content nav.toc h2 {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: var(--space-4);
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: var(--space-3);
}
.fud-v1 .standard-content .toc ul,
.fud-v1 .standard-content nav.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-1) var(--space-4);
}
.fud-v1 .standard-content .toc li,
.fud-v1 .standard-content nav.toc li { padding: 0; }
/* Prevent bullet from the ul li::before rule above */
.fud-v1 .standard-content .toc li::before,
.fud-v1 .standard-content nav.toc li::before { display: none; }
.fud-v1 .standard-content .toc a,
.fud-v1 .standard-content nav.toc a {
    font-size: var(--text-sm);
    color: var(--slate-500);
    padding: var(--space-1) 0;
    display: block;
    transition: color 0.18s ease;
    text-decoration: none;
}
.fud-v1 .standard-content .toc a:hover,
.fud-v1 .standard-content nav.toc a:hover { color: var(--gold-600); }

/* ================================================================
   SPAN PLANNER WIDGET  (ISO 178 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â .span-grid / .span-card)
   ================================================================ */
.fud-v1 .span-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-4);
    margin: var(--space-6) 0;
}
.fud-v1 .span-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--rounded-xl);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.fud-v1 .span-card:hover {
    border-color: var(--gold-300);
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.fud-v1 .span-card .th {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--slate-900);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--slate-100);
}
.fud-v1 .span-card .rows {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}
.fud-v1 .span-card .badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-50));
    border: 1px solid var(--gold-200);
    color: var(--gold-700);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: var(--rounded-sm);
    white-space: nowrap;
}
.fud-v1 .span-card .val {
    font-size: var(--text-sm);
    color: var(--slate-600);
    font-weight: var(--font-medium);
}

/* ================================================================
   RELATED STANDARDS BENTO SECTION
   (.bento-section wrapping 3 col bento cards ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â outside layout)
   ================================================================ */
.fud-v1 .bento-section {
    padding: var(--space-16) 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
}
.fud-v1 .bento-section .section-header {
    margin-bottom: var(--space-10);
}

/* Override global bento-grid ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 3 col, no forced row heights */
.fud-v1 .bento-section .bento-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: var(--space-5);
    perspective: none;
}
.fud-v1 .bento-section .bento-grid .col-span-4 { grid-column: span 1; }

@media (max-width: 900px) {
    .fud-v1 .bento-section .bento-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .fud-v1 .bento-section .bento-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Related card styling */
.fud-v1 .bento-section .bento-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--rounded-2xl);
    padding: var(--space-7);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    min-height: unset;
    box-shadow: var(--shadow-sm);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform-style: flat;
}
.fud-v1 .bento-section .bento-card:hover {
    border-color: var(--gold-300);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.fud-v1 .bento-section .bento-card .glow-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(210,123,69,0.1), transparent 70%);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.fud-v1 .bento-section .bento-card:hover .glow-blob { opacity: 1; }

.fud-v1 .bento-section .bento-card .card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.fud-v1 .bento-section .bento-card .card-label {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-3);
    display: block;
}
.fud-v1 .bento-section .bento-card .card-title,
.fud-v1 .bento-section .bento-card h3.card-title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--slate-900);
    margin: 0 0 var(--space-3);
    line-height: 1.25;
}
.fud-v1 .bento-section .bento-card .card-desc {
    font-size: var(--text-sm);
    color: var(--slate-500);
    line-height: 1.7;
    flex: 1;
}
.fud-v1 .bento-section .bento-card .card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-5);
    transition: all 0.22s ease;
    color: var(--slate-600);
    flex-shrink: 0;
    align-self: flex-start;
}
.fud-v1 .bento-section .bento-card:hover .card-arrow {
    background: var(--slate-900);
    color: var(--white);
    transform: rotate(-45deg);
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.fud-v1 .cta-section {
    padding: var(--space-20) 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
}
.fud-v1 .cta-box {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--rounded-3xl);
    padding: var(--space-16) var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.fud-v1 .cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}
.fud-v1 .cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(210,123,69,0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.fud-v1 .cta-box h3 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: var(--font-bold);
    color: var(--slate-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}
.fud-v1 .cta-box p {
    color: var(--slate-500);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: 1.7;
}
.fud-v1 .cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â STANDARDS PAGES
   ================================================================ */
@media (max-width: 991px) {
    /* Single column ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â TOC above content */
    .fud-v1 .standard-layout {
        grid-template-columns: 1fr;
        padding: var(--space-10) 0 var(--space-16);
    }
    .fud-v1 .standard-toc {
        position: static;
        max-height: none;
        overflow: visible;
    }
    /* Compact 2-col TOC grid on tablet */
    .fud-v1 .standard-toc ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fud-v1 .standard-header { padding: 4rem 0 3rem; }
    .fud-v1 .standard-content section { margin-bottom: var(--space-12); }
    .fud-v1 .standard-toc ul { grid-template-columns: 1fr; }
    .fud-v1 .bento-section .bento-grid { grid-template-columns: 1fr !important; }
    .fud-v1 .cta-box { padding: var(--space-10) var(--space-5); }
    .fud-v1 .cta-actions { flex-direction: column; align-items: center; }
    .fud-v1 .span-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ISOLATED FUD LANDING HUB CLEANUP
   Applies only to .fud-v1 landing hubs that use the fitco-isolated
   wrapper, so longform article pages keep their existing behavior.
   ============================================================ */

.fud-v1.fitco-isolated .bento-section,
.fud-v1.fitco-isolated .list-section,
.fud-v1.fitco-isolated .cta-section {
    padding: 64px 0;
}

.fud-v1.fitco-isolated .section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: none;
    margin: 0 0 40px;
    text-align: left;
    flex-wrap: wrap;
}

.fud-v1.fitco-isolated .section-heading {
    display: grid;
    gap: 8px;
    max-width: 600px;
}

.fud-v1.fitco-isolated .section-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a4520;
}

.fud-v1.fitco-isolated .section-title {
    font-size: clamp(1.75rem, 2.4vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: #0f172a;
}

.fud-v1.fitco-isolated .section-note {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
}

.fud-v1.fitco-isolated .bento-grid {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(280px, auto) !important;
    gap: 20px;
    perspective: none;
}

.fud-v1.fitco-isolated .bento-section .bento-grid .col-span-12 { grid-column: span 12 !important; }
.fud-v1.fitco-isolated .bento-section .bento-grid .col-span-8  { grid-column: span 8  !important; }
.fud-v1.fitco-isolated .bento-section .bento-grid .col-span-6  { grid-column: span 6  !important; }
.fud-v1.fitco-isolated .bento-section .bento-grid .col-span-4  { grid-column: span 4  !important; }
.fud-v1.fitco-isolated .bento-section .bento-grid .col-span-3  { grid-column: span 3  !important; }

@media (min-width: 768px) {
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-12 { grid-column: span 12 !important; }
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-8  { grid-column: span 8  !important; }
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-6  { grid-column: span 6  !important; }
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-4  { grid-column: span 4  !important; }
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-3  { grid-column: span 3  !important; }
}

.fud-v1.fitco-isolated .bento-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform-style: flat;
    will-change: auto;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.fud-v1.fitco-isolated .bento-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(184, 97, 46, 0.18);
    box-shadow: 0 32px 64px -42px rgba(15, 23, 42, 0.28);
}

.fud-v1.fitco-isolated .glow-blob {
    display: none;
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-label {
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(184, 97, 46, 0.18);
    background: rgba(253, 243, 232, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #8a4520;
    margin-bottom: 16px;
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-title,
.fud-v1.fitco-isolated .bento-section .bento-card h3.card-title {
    font-size: 1.28rem;
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    text-wrap: balance;
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-desc {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #475569;
    max-width: 58ch;
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-footer {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-link {
    color: #8a4520;
    font-size: 0.92rem;
    font-weight: 700;
}

.fud-v1.fitco-isolated .bento-section .bento-card .card-arrow {
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 50%;
    background: rgba(210, 123, 69, 0.08);
    border: 0;
    color: #8a4520;
    align-self: auto;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.fud-v1.fitco-isolated .bento-section .bento-card:hover .card-arrow {
    background: linear-gradient(135deg, #b8612e, #d27b45);
    color: #ffffff;
    transform: translateX(3px);
}

.fud-v1.fitco-isolated div.bento-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
}

.fud-v1.fitco-isolated .list-section {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.52) 100%);
}

.fud-v1.fitco-isolated .list-container {
    display: grid;
    gap: 12px;
}

.fud-v1.fitco-isolated .standard-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 26px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.fud-v1.fitco-isolated .standard-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(184, 97, 46, 0.18);
    box-shadow: 0 24px 44px -34px rgba(15, 23, 42, 0.24);
}

.fud-v1.fitco-isolated .standard-item .item-content {
    flex: 1;
    min-width: 0;
}

.fud-v1.fitco-isolated .standard-item .item-code {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(253, 243, 232, 0.92);
    border: 1px solid rgba(184, 97, 46, 0.18);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a4520;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.fud-v1.fitco-isolated .standard-item .item-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.18;
    margin: 12px 0 8px;
    color: #0f172a;
    white-space: normal;
    overflow: visible;
}

.fud-v1.fitco-isolated .item-note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    max-width: 60ch;
}

.fud-v1.fitco-isolated .standard-item .item-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(210, 123, 69, 0.08);
    color: #8a4520;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 1;
    transform: none;
    align-self: center;
}

.fud-v1.fitco-isolated .standard-item:hover .item-action {
    transform: translateX(2px);
    background: #d27b45;
    color: #ffffff;
}

.fud-v1.fitco-isolated .cta-box {
    background: linear-gradient(135deg, #111827 0%, #1f2937 58%, #4b331f 100%);
    border: 1px solid rgba(210, 123, 69, 0.16);
    border-radius: 32px;
    padding: 48px 22px;
    box-shadow: 0 32px 64px -42px rgba(15, 23, 42, 0.28);
}

.fud-v1.fitco-isolated .cta-box::before {
    inset: 0;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    background: radial-gradient(circle at 50% 120%, rgba(210, 123, 69, 0.3), transparent 55%);
}

.fud-v1.fitco-isolated .cta-box::after {
    display: none;
}

.fud-v1.fitco-isolated .cta-box h3 {
    color: #ffffff;
    font-size: clamp(1.75rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.05;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.fud-v1.fitco-isolated .cta-box p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.fud-v1.fitco-isolated .btn-primary {
    background: linear-gradient(135deg, #d27b45, #e6a86e);
    color: #ffffff;
    box-shadow: 0 16px 30px -18px rgba(210, 123, 69, 0.62);
}

.fud-v1.fitco-isolated .btn-primary:hover {
    color: #ffffff;
    box-shadow: 0 22px 38px -18px rgba(210, 123, 69, 0.72);
}

.fud-v1.fitco-isolated .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.fud-v1.fitco-isolated .btn-outline:hover {
    border-color: rgba(210, 123, 69, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.fud-v1.fitco-isolated .section-header .btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: #8a4520;
    border-color: rgba(184, 97, 46, 0.22);
}

.fud-v1.fitco-isolated .section-header .btn-outline:hover {
    background: rgba(253, 243, 232, 0.92);
    border-color: #b8612e;
    color: #8a4520;
}

.fitco-standards-home .standard-header {
    padding: 64px 0 56px;
    background:
        radial-gradient(circle at top right, rgba(210, 123, 69, 0.1), transparent 28%),
        linear-gradient(180deg, #fffaf5 0%, #f7f1ea 42%, #f6f1eb 100%);
    border-bottom: 1px solid rgba(184, 97, 46, 0.14);
}

.fitco-standards-home .standard-header::before {
    background: radial-gradient(circle at top right, rgba(210, 123, 69, 0.12), transparent 52%);
}

.fitco-standards-home .standard-header::after {
    display: none;
}

.fitco-standards-home .standard-header .container {
    display: grid;
    gap: clamp(28px, 4vw, 48px);
    align-items: end;
}

@media (min-width: 992px) {
    .fitco-standards-home .standard-header .container {
        grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    }
}

.fitco-standards-home .header-content {
    max-width: 760px;
}

.fitco-standards-home .standard-tag {
    background: rgba(253, 243, 232, 0.92);
    border: 1px solid rgba(184, 97, 46, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    color: #8a4520;
    padding: 7px 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.fitco-standards-home .standard-title {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    line-height: 1.01;
    letter-spacing: -0.04em;
    max-width: 12.5ch;
    text-wrap: balance;
}

.fitco-standards-home .standard-lead {
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    max-width: 54ch;
    line-height: 1.62;
}

.fitco-standards-home .standards-home-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.fitco-standards-home .hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(184, 97, 46, 0.14);
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
}

.fitco-standards-home .hero-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(184, 97, 46, 0.22);
    box-shadow: 0 24px 44px -34px rgba(15, 23, 42, 0.24);
}

.fitco-standards-home .standards-home-panel {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.22);
}

.fitco-standards-home .standards-home-panel-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a4520;
}

.fitco-standards-home .standards-home-panel-grid {
    display: grid;
    gap: 18px;
}

.fitco-standards-home .standards-home-panel-item strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 1.02rem;
    line-height: 1.25;
    color: #0f172a;
}

.fitco-standards-home .standards-home-panel-item span {
    display: block;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.6;
}

.fitco-standards-home .bento-card.is-featured {
    background: linear-gradient(180deg, rgba(253, 243, 232, 0.82), rgba(255, 255, 255, 0.96));
    min-height: 360px;
}

.fitco-standards-home .bento-section .bento-card.is-featured .card-title,
.fitco-standards-home .bento-section .bento-card.is-featured h3.card-title {
    font-size: clamp(1.75rem, 2.3vw, 2.2rem);
    max-width: 14ch;
}

@media (max-width: 1024px) {
    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-8,
    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-6,
    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-4,
    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-3,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-8,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-6,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-4,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-3 {
        grid-column: span 6;
    }

    .fitco-standards-home .standard-header .container {
        grid-template-columns: 1fr;
    }

    .fitco-standards-home .standards-home-panel {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .fud-v1.fitco-isolated .section-header {
        align-items: flex-start;
    }

    .fud-v1.fitco-isolated .bento-grid {
        grid-template-columns: 1fr !important;
    }

    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-12,
    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-8,
    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-6,
    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-4,
    .fud-v1.fitco-isolated .bento-section .bento-grid .col-span-3,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-12,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-8,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-6,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-4,
    .fud-v1.fitco-isolated .bento-section .bento-grid .md\:col-span-3 {
        grid-column: span 1 !important;
    }

    .fud-v1.fitco-isolated .bento-card,
    .fud-v1.fitco-isolated .standard-item {
        border-radius: 24px;
    }

    .fud-v1.fitco-isolated .bento-card {
        padding: 28px 24px;
        min-height: auto;
    }

    .fud-v1.fitco-isolated .standard-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .fud-v1.fitco-isolated .standard-item .item-action {
        align-self: flex-start;
    }

    .fud-v1.fitco-isolated .cta-box {
        padding: 40px 24px;
    }

    .fud-v1.fitco-isolated .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fud-v1.fitco-isolated .btn {
        width: 100%;
    }

    .fitco-standards-home .standard-header {
        padding: 64px 0 48px;
    }

    .fitco-standards-home .standard-title {
        font-size: clamp(2rem, 8.4vw, 2.65rem);
    }

    .fitco-standards-home .bento-section .bento-card.is-featured .card-title,
    .fitco-standards-home .bento-section .bento-card.is-featured h3.card-title {
        font-size: clamp(1.7rem, 7vw, 2rem);
    }
}

@media (max-width: 540px) {
    .fud-v1.fitco-isolated .standard-item .item-title {
        font-size: 1.2rem;
    }

    .fitco-standards-home .standard-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
    }

    .fitco-standards-home .standards-home-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fitco-standards-home .hero-chip {
        width: 100%;
    }
}
