/* ============================================
   JUSTICE IN THE WORKPLACE - Redesigned CSS
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #1B3A5F;
    --primary-light: #2C4A6E;
    --secondary: #4A5568;
    --accent: #38B2AC;
    --accent-dark: #2C9C96;
    --gold: #D69E2E;
    --gold-light: #ECC94B;
    --bg: #F7FAFC;
    --white: #FFFFFF;
    --text: #2D3748;
    --text-light: #718096;
    --error: #E53E3E;
    --success: #38A169;
    --warning: #DD6B20;
    
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-bottom: 80px;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1, h2 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.lang-switch {
    display: flex;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 3px;
}

.lang-btn {
    padding: 6px 14px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--accent);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
    padding-top: 60px;
    min-height: calc(100vh - 60px);
}

.page {
    display: none;
    padding: 20px;
    animation: fadeIn 0.4s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: clamp(24px, 4vw, 34px);
    color: var(--primary);
    margin-bottom: 8px;
}

.page-header p {
    color: var(--secondary);
    font-size: 15px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(56, 178, 172, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(214, 158, 46, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(56, 178, 172, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #0f2440 0%, #1B3A5F 40%, #1e4d6e 70%, #1B3A5F 100%);
}

.hero-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 36, 64, 0.4) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 20px 80px; /* Extra bottom padding for card overlap */
    width: 100%;
}

.hero-text {
    text-align: left;
    max-width: 600px;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-badge span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--white);
    margin-bottom: 12px;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero .subtitle {
    color: rgba(255,255,255,0.9);
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 8px;
}

.hero .authors {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.quote {
    background: rgba(214, 158, 46, 0.15);
    border: 1px solid rgba(214, 158, 46, 0.4);
    padding: 18px 24px;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.quote p {
    color: var(--white);
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 178, 172, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ============================================
   INTRO CARDS
   ============================================ */
.intro {
    padding: 0 0 40px;
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Pulls cards up over the hero bg */
}

.intro-header {
    text-align: center;
    margin-bottom: 24px;
}

.intro-header h2 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.intro-header p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.15), rgba(56, 178, 172, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.card-icon svg {
    width: 26px;
    height: 26px;
}

.card h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 8px;
}

.card p {
    color: var(--secondary);
    font-size: 13px;
}

/* ============================================
   FILM SECTION
   ============================================ */
.film-hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 30px;
}

.film-poster {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.film-poster img {
    width: 100%;
    display: block;
}

.film-info h2 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 4px;
}

.film-info .director {
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    display: block;
}

.film-info .synopsis {
    font-size: 14px;
    margin-bottom: 18px;
}

/* Cast */
.cast {
    margin-bottom: 18px;
}

.cast h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 10px;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.cast-member {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg);
    border-radius: var(--radius);
}

.cast-member img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.cast-member strong {
    display: block;
    font-size: 12px;
    color: var(--primary);
}

.cast-member span {
    font-size: 11px;
    color: var(--secondary);
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
}

/* Keywords */
.keywords {
    margin-bottom: 30px;
}

.keywords h2 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.keyword {
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.keyword:nth-child(1) { border-left-color: var(--error); }
.keyword:nth-child(2) { border-left-color: var(--warning); }
.keyword:nth-child(3) { border-left-color: var(--accent); }
.keyword:nth-child(4) { border-left-color: var(--primary); }
.keyword:nth-child(5) { border-left-color: var(--gold); }

.keyword h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
}

.keyword p {
    color: var(--secondary);
    font-size: 13px;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--primary-light), #3d5a80);
}

.accordion-header .icon {
    font-size: 11px;
    transition: var(--transition);
}

.accordion-item.active .icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content p {
    padding: 16px;
    font-size: 14px;
}

/* ============================================
   LEGAL SECTION
   ============================================ */
.legal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    overflow: hidden;
}

.legal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 20px;
    color: var(--white);
}

.legal-header h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.legal-header p {
    font-size: 13px;
    opacity: 0.85;
    font-style: italic;
}

.legal-body {
    padding: 20px;
}

.intro-box {
    background: var(--bg);
    padding: 14px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    border-left: 3px solid var(--accent);
    font-size: 14px;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-item {
    text-align: center;
    flex: 1;
    min-width: 60px;
}

.timeline-item .year {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.timeline-item span:last-child {
    font-size: 10px;
    color: var(--secondary);
}

.timeline-line {
    flex: 2;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    min-width: 30px;
    border-radius: 2px;
}

/* Checklist */
.checklist {
    list-style: none;
}

.checklist li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #E2E8F0;
    font-size: 13px;
}

.checklist li:last-child { border: none; }

.checklist .check {
    color: var(--accent);
    font-weight: bold;
}

.conclusion {
    background: linear-gradient(135deg, #FFFBEB, #FEF9E7);
    border: 2px solid var(--gold);
    padding: 14px;
    border-radius: var(--radius);
    margin-top: 18px;
    font-size: 13px;
}

/* Privacy Grid */
.privacy-section {
    margin-bottom: 28px;
}

.privacy-section h2 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.privacy-card {
    padding: 20px;
    border-radius: var(--radius-lg);
}

.privacy-card.usa {
    background: linear-gradient(135deg, #EBF8FF, #E1F5FE);
}

.privacy-card.eu {
    background: linear-gradient(135deg, #F0FFF4, #E6FFFA);
}

.privacy-card h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 4px;
}

.privacy-card h4 {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 14px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.step:last-child { border: none; }

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.step-icon.lock { background: var(--error); }
.step-icon.warn { background: var(--warning); }
.step-icon.check { background: var(--accent); }

.step strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
}

.step p {
    font-size: 12px;
    color: var(--secondary);
}

/* Comparison Table */
.comparison-section {
    margin-bottom: 28px;
}

.comparison-section h2 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

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

.comparison-table th,
.comparison-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 11px;
}

.comparison-table tr:nth-child(even) {
    background: var(--bg);
}

.final-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
}

/* ============================================
   POLICY SECTION
   ============================================ */
.policy-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    height: 250px;
}

.policy-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.policy-hero-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 58, 95, 0.9), rgba(56, 178, 172, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.policy-hero-content h1 {
    color: var(--white);
    font-size: clamp(22px, 3.5vw, 30px);
    margin-bottom: 6px;
}

.policy-hero-content p {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    font-size: 15px;
}

.mission {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 24px;
}

.mission h2 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 14px;
}

.mission p {
    font-size: 14px;
    line-height: 1.7;
}

/* Policy Sections */
.policy-sections {
    margin-bottom: 24px;
}

.policy-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
}

.policy-section .section-header {
    padding: 18px 20px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.policy-section-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.15), rgba(56, 178, 172, 0.05));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.section-header h2 {
    font-size: 18px;
    color: var(--primary);
}

.section-header .subtitle {
    font-size: 12px;
    color: var(--secondary);
    font-style: italic;
}

.section-body {
    padding: 20px;
}

.subsection {
    margin-bottom: 16px;
}

.subsection:last-child { margin: 0; }

.subsection h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.subsection ul {
    margin-left: 18px;
}

.subsection li {
    margin-bottom: 4px;
    font-size: 13px;
    position: relative;
}

.subsection li::before {
    content: '•';
    position: absolute;
    left: -12px;
    color: var(--accent);
}

.note {
    background: var(--bg);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    color: var(--secondary);
    margin-top: 8px;
}

.highlight {
    background: linear-gradient(135deg, #FFFBEB, #FEF9E7);
    border-left: 4px solid var(--gold);
    padding: 14px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 14px;
}

.highlight h4 {
    color: var(--gold);
    margin-bottom: 8px;
}

.lgbtq {
    background: linear-gradient(90deg, #E53E3E, #DD6B20, #D69E2E, #38B2AC, #1B3A5F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download {
    text-align: center;
    margin-top: 24px;
}

/* ============================================
   REFLECTION SECTION
   ============================================ */
.timeline-comp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.timeline-col {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.timeline-col.past {
    background: linear-gradient(145deg, #FED7D7, #FEB2B2);
    border: 2px solid #FEB2B2;
}

.timeline-col.present {
    background: linear-gradient(145deg, #C6F6D5, #9AE6B4);
    border: 2px solid #9AE6B4;
}

.timeline-col h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-col h4 {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-col ul {
    list-style: none;
}

.timeline-col li {
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.timeline-col li:last-child { border: none; }

/* Changed Section */
.changed-section {
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    border: 2px solid var(--accent);
}

.changed-section h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.changed-section .cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cols h4 {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cols .not-changed h4 { color: #FEB2B2; }
.cols .changed h4 { color: #9AE6B4; }

.cols li {
    padding: 4px 0;
    font-size: 12px;
    padding-left: 18px;
    position: relative;
}

.cols .not-changed li::before { content: '✗'; position: absolute; left: 0; color: #FEB2B2; }
.cols .changed li::before { content: '✓'; position: absolute; left: 0; color: #9AE6B4; }

/* Innocent Section */
.innocent-section {
    background: linear-gradient(135deg, #FFFBEB, #F0FFF4);
    border: 2px solid var(--gold);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
}

.innocent-section h2 {
    text-align: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 18px;
}

.innocent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.innocent-box {
    padding: 16px;
    border-radius: var(--radius);
}

.innocent-box.easy {
    background: linear-gradient(135deg, #EBF8FF, #E1F5FE);
    border-left: 4px solid #4299E1;
}

.innocent-box.hard {
    background: linear-gradient(135deg, #FFF5F5, #FED7D7);
    border-left: 4px solid var(--error);
}

.innocent-box.truth {
    background: linear-gradient(135deg, #F0FFF4, #C6F6D5);
    border-left: 4px solid var(--accent);
}

.innocent-box h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.innocent-box p {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.innocent-box ul {
    list-style: disc;
    margin-left: 16px;
    font-size: 11px;
}

/* Final Quote */
.final-quote {
    background: linear-gradient(145deg, var(--primary), #1a3050);
    color: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gold);
    position: relative;
    margin-bottom: 20px;
}

.final-quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 80px;
    color: rgba(214, 158, 46, 0.2);
    font-family: Georgia, serif;
}

.final-quote p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.6;
}

.back-home {
    text-align: center;
    margin-top: 20px;
}

/* ============================================
   SOURCES SECTION
   ============================================ */
.intro-box {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.source {
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.source:nth-child(2) { border-left-color: var(--primary); }
.source:nth-child(3) { border-left-color: var(--gold); }
.source:nth-child(4) { border-left-color: var(--warning); }

.source h3 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 10px;
}

.source li {
    padding: 3px 0;
    font-size: 12px;
    color: var(--text);
}

.source li strong { color: var(--primary); }

.ack {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 26px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.ack h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 14px;
}

.ack p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* ============================================
   TAB BAR
   ============================================ */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 8px;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
    min-width: 50px;
}

.tab-btn:hover {
    background: rgba(56, 178, 172, 0.1);
}

.tab-btn.active {
    background: rgba(56, 178, 172, 0.15);
}

.tab-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
    transition: var(--transition);
}

.tab-btn.active svg {
    fill: var(--accent);
    transform: scale(1.1);
}

.tab-btn span {
    font-size: 9px;
    color: var(--secondary);
    font-weight: 500;
}

.tab-btn.active span {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    text-align: center;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 70px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-graphic {
        display: none; /* Hide graphic on small screens to save space */
    }

    .film-hero {
        grid-template-columns: 1fr;
    }
    
    .poster-wrapper {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .cols {
        grid-template-columns: 1fr;
    }
    
    .timeline-comp {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .tab-label {
        font-size: 8px;
    }
    
    .tab-btn {
        min-width: 45px;
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
    
    .keywords-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        flex-direction: column;
    }
    
    .timeline-line {
        width: 3px;
        height: 20px;
        flex: none;
    }
}