/* ============================================================
   FITCO UNIFIED DESIGN SYSTEM V2 (FUD V2)
   Clean, Maintainable, Premium Design System
   Version: 2.0.0 | Date: 2026-01-30
   ============================================================ */

/* ==================== CSS RESET & BASE ==================== */
.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: 3.5rem;

    /* 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-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --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;
}

.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 ==================== */
.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 {
    padding: var(--space-16) 0;
}

.fud-v1 .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-12);
}

.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(var(--text-2xl), 4vw, var(--text-4xl));
    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: var(--space-4) var(--space-8);
    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; }

/* ==================== HERO SECTION ==================== */
.fud-v1 .hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: var(--space-20) 0;
    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(var(--text-3xl), 8vw, 7rem);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
    transform-style: preserve-3d;
}

.fud-v1 .hero-desc {
    font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: var(--space-12);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
}

.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;
}

.fud-v1 .muted {
    color: var(--text-tertiary);
    font-size: var(--text-sm);
}

/* ==================== 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: #3b82f6;
}

.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);
}

/* ==================== CTA SECTIONS ==================== */
.fud-v1 .cta-section {
    padding: var(--space-24) 0;
    text-align: center;
}

.fud-v1 .cta-box {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rounded-3xl);
    padding: var(--space-20) var(--space-6);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fud-v1 .cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.fud-v1 .cta-box h3 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.fud-v1 .cta-box p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    max-width: 650px;
    margin: 0 auto var(--space-10);
}

.fud-v1 .cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* 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: 3rem;
    }
    
    .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;
    }
}


