/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --milwaukee-red: #C8102E;
    --industrial-black: #1A1A1A;
    --dark-grey: #4A4A4A;
    --pure-white: #FFFFFF;
    --light-grey: #F4F4F4;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --container-width: 1400px;
    --section-padding: 6rem 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--industrial-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 16, 46, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-meta {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    gap: 0.2rem;
}

.version-tag {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--milwaukee-red);
    letter-spacing: 1px;
    background: rgba(200, 16, 46, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    width: fit-content;
}

.version-subtag {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

.logo-wrapper {
    flex-shrink: 0;
}

.header-logo {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -1.2rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--milwaukee-red);
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--pure-white);
}

.nav-link:hover::before {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--milwaukee-red);
    color: var(--pure-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 1px;
}

.btn-asset {
    border-radius: 4px;
    background: linear-gradient(135deg, var(--milwaukee-red) 0%, #8b0a1d 100%);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
    background: #a00d26;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--dark-grey);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.85rem;
}

.btn-secondary:hover {
    border-color: var(--milwaukee-red);
    color: var(--milwaukee-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1a1a 100%);
    overflow: hidden;
}

.energy-slash {
    position: absolute;
    width: 200%;
    height: 3px;
    background: var(--milwaukee-red);
    top: 30%;
    left: -50%;
    transform: rotate(-15deg);
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.5);
}

.energy-slash-2 {
    top: 60%;
    height: 5px;
    opacity: 0.5;
    transform: rotate(-12deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    color: var(--milwaukee-red);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.text-red {
    color: var(--milwaukee-red);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.brand-showcase {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.brand-showcase:hover .hero-cover-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.5) 100%);
}

.showcase-frame {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
}

.showcase-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* Section Styles */
.content-section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 6rem;
    color: var(--milwaukee-red);
    opacity: 0.2;
    line-height: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--pure-white);
}

/* Table of Contents Section */
.toc-section {
    padding: var(--section-padding);
    background: var(--industrial-black);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.toc-card {
    background: linear-gradient(135deg, rgba(74, 74, 74, 0.2) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 8px;
    padding: 2.5rem;
    text-decoration: none;
    color: var(--pure-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--milwaukee-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.toc-card:hover::before {
    transform: scaleX(1);
}

.toc-card:hover {
    border-color: var(--milwaukee-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--milwaukee-red);
}

.toc-card:hover .card-icon {
    background: var(--milwaukee-red);
    color: var(--pure-white);
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.content-card {
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 8px;
    padding: 2.5rem;
}

.content-card.full-width {
    grid-column: 1 / -1;
}

.content-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--milwaukee-red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-box {
    background: rgba(200, 16, 46, 0.1);
    border-left: 4px solid var(--milwaukee-red);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-box strong {
    color: var(--milwaukee-red);
}

.highlight-box ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.highlight-box li {
    margin-bottom: 0.75rem;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--pure-white);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--milwaukee-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--pure-white);
}

.value-item h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--pure-white);
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Logo Showcase */
.logo-hero-display {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.logo-technical-view {
    text-align: center;
}

.logo-display-main {
    background: radial-gradient(circle at center, rgba(74, 74, 74, 0.2) 0%, transparent 70%);
    padding: 4rem;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    position: relative;
    z-index: 2;
}

.logo-shadow {
    position: absolute;
    bottom: 20%;
    width: 60%;
    height: 20px;
    background: rgba(0,0,0,0.5);
    filter: blur(20px);
    border-radius: 50%;
}

.logo-caption {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.spec-box-technical {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
}

.spec-box-technical h4 {
    margin-bottom: 2rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.construction-item {
    margin-bottom: 2rem;
}

.construction-item:last-child {
    margin-bottom: 0;
}

.item-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    background: var(--dark-grey);
    color: var(--pure-white);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.item-tag.tag-red {
    background: var(--milwaukee-red);
}

.construction-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.logo-specs h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--milwaukee-red);
    margin: 1.5rem 0 1rem;
}

.logo-specs ul {
    text-align: left;
    margin-left: 1.5rem;
}

.logo-specs li {
    margin-bottom: 0.75rem;
}

.spec-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.spec-box strong {
    color: var(--milwaukee-red);
}

.spec-box ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.spec-box li {
    margin-bottom: 0.5rem;
}

.rules-list {
    margin-left: 1.5rem;
}

.rules-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.rules-list li::before {
    content: '✕';
    color: var(--milwaukee-red);
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
}

/* Color Grid */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.color-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.color-swatch {
    height: 180px;
    width: 100%;
}

.color-card h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
}

.color-codes {
    padding: 0 1.5rem;
}

.color-code {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
}

.code-label {
    font-weight: 700;
    color: var(--milwaukee-red);
    font-size: 0.85rem;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.color-usage {
    padding: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Typography Showcase */
.font-showcase {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.font-example {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.font-sample-large {
    font-size: 8rem;
    line-height: 1;
}

.montserrat-display {
    font-family: var(--font-heading);
    font-weight: 900;
}

.roboto-display {
    font-family: var(--font-body);
    font-weight: 400;
}

.font-sample-alphabet {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Key Visuals */
.key-visuals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.visual-item {
    text-align: center;
}

.visual-demo {
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.energy-slash-demo {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.energy-slash-demo::before,
.energy-slash-demo::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 3px;
    background: var(--milwaukee-red);
    left: -50%;
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.5);
}

.energy-slash-demo::before {
    top: 35%;
    transform: rotate(-15deg);
    opacity: 0.5;
}

.energy-slash-demo::after {
    top: 65%;
    height: 5px;
    transform: rotate(-12deg);
    opacity: 0.7;
}

.watermark-demo {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.watermark-demo img {
    max-width: 150px;
    opacity: 0.1;
}

.visual-item h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--milwaukee-red);
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(200, 16, 46, 0.2);
    padding: 3rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--milwaukee-red);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-copy {
    margin-top: 1rem;
    font-size: 0.85rem !important;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--milwaukee-red);
}

/* Watermark Badge */
.watermark-badge {
    position: fixed;
    bottom: -10%;
    right: -5%;
    width: 800px; /* Significantly larger as requested */
    height: 800px;
    opacity: 0.05; /* Slightly more visible but still a watermark */
    pointer-events: none;
    z-index: 1;
}

.watermark-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Clearspace Visualization */
.clearspace-visualization {
    background: #0a0a0a;
    padding: 1rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(200, 16, 46, 0.1);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.clearspace-svg {
    width: 100%;
    height: auto;
    max-width: 1000px; /* Matched the new SVG viewBox */
    margin: 0 auto;
    display: block;
}

.visualization-caption {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-style: italic;
}

/* Size Comparison */
.size-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.size-example {
    text-align: center;
}

.size-example h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--milwaukee-red);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.size-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(74, 74, 74, 0.3);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.size-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
}

/* Mockups Section - Balanced Bento Grid */
.mockups-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.mockup-item {
    grid-column: span 6; /* Standard: Half Width */
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 480px; /* Consistent Height for all items */
    display: flex;
    flex-direction: column;
}

/* Wide Features */
.mockup-item.featured {
    grid-column: span 12;
}

.mockup-item:hover {
    border-color: rgba(200, 16, 46, 0.4);
    box-shadow: 0 40px 80px rgba(0,0,0,0.9);
    z-index: 10;
}

.mockup-image-wrapper {
    flex: 1;
    width: 100%;
    background: 
        radial-gradient(circle at center, #151515 0%, #050505 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2.5rem;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* For environmental mockups, use cover-fit to fill space */
.mockup-item.cover-fit .mockup-image {
    object-fit: cover;
    padding: 0;
}

.mockup-data-panel {
    padding: 1.5rem 2rem;
    background: #0f0f0f;
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 10;
}

.mockup-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.mockup-id {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--milwaukee-red);
    letter-spacing: 2px;
}

.mockup-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

.mockup-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    max-width: 600px;
    line-height: 1.5;
}

.mockup-stats {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    display: flex;
    gap: 1.5rem;
    z-index: 5;
}

.stat-chip {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-chip span {
    color: var(--milwaukee-red);
    font-weight: 800;
}

@media (max-width: 900px) {
    .mockup-item, .mockup-item:nth-child(2), .mockup-item.featured {
        grid-column: span 12;
    }
    .mockup-image-wrapper {
        min-height: 350px;
    }
}

/* Business Card Mockup */
.business-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-front {
    width: 340px;
    height: 220px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-slash {
    position: absolute;
    width: 400px;
    height: 3px;
    background: var(--milwaukee-red);
    top: 50%;
    left: -50px;
    transform: rotate(-15deg);
    opacity: 0.3;
}

.card-header {
    margin-bottom: 1rem;
}

.card-logo {
    height: 50px;
    width: auto;
}

.card-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: white;
}

.card-info h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.card-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.card-contact {
    margin-top: 0.75rem;
}

.card-contact p {
    font-size: 0.75rem;
    color: var(--milwaukee-red);
}

/* Billboard Mockup */
.billboard {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.bill.brand-showcase {
    position: relative;
    width: 600px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}


.billboard-content {
    aspect-ratio: 2/1;
    background: #1A1A1A;
    border-radius: 8px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.billboard-slash {
    position: absolute;
    width: 150%;
    height: 8px;
    background: var(--milwaukee-red);
    top: 40%;
    left: -25%;
    transform: rotate(-12deg);
    opacity: 0.3;
    box-shadow: 0 0 30px rgba(200, 16, 46, 0.5);
}

.billboard-logo img {
    width: 200px;
    height: auto;
}

.billboard-text h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: white;
}

.billboard-tagline {
    font-size: 1.3rem;
    color: var(--milwaukee-red);
    font-weight: 700;
    margin-bottom: 1rem;
}

.billboard-url {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}

/* Delivery Van Mockup */
.delivery-van {
    background: linear-gradient(180deg, #87CEEB 0%, #4A90A4 100%);
    padding: 2rem;
}

.van-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Apparel Mockups */
.apparel {
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.tshirt-svg,
.hoodie-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Packaging Box Mockup */
.packaging-box {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.box-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Social Media Post Mockup */
.social-post {
    max-width: 500px;
    background: #000;
    border: 1px solid rgba(74, 74, 74, 0.5);
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #000;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--milwaukee-red);
}

.post-user h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 0.2rem;
}

.post-user p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.post-image {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A1A1A 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.post-energy-slash {
    position: absolute;
    width: 150%;
    height: 5px;
    background: var(--milwaukee-red);
    top: 35%;
    left: -25%;
    transform: rotate(-15deg);
    opacity: 0.3;
}

.post-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.post-content h3 {
    color: var(--milwaukee-red);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.post-content h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.post-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.post-cta {
    background: var(--milwaukee-red);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    display: inline-block;
}

.post-footer {
    padding: 1rem;
    background: #000;
}

.post-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.post-footer p:last-child {
    color: rgba(200, 16, 46, 0.8);
}

/* Website Header Mockup */
.website-header {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.web-topbar {
    background: var(--industrial-black);
    color: white;
    padding: 0.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.web-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid rgba(200, 16, 46, 0.2);
}

.web-logo {
    height: 60px;
    width: auto;
}

.web-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.web-nav a {
    color: var(--industrial-black);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.web-nav a:hover {
    color: var(--milwaukee-red);
}

.web-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.web-icons span {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.web-icons span:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-number {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .logo-hero-display {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-display-main {
        padding: 2rem;
    }

    .spec-box-technical {
        padding: 1.5rem;
    }

    .brand-meta {
        display: none;
    }

    .header-logo {
        height: 45px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .toc-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-number {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .watermark-badge {
        width: 400px;
        height: 400px;
        bottom: -5%;
        right: -5%;
    }
    
    /* Mockups responsive */
    .card-front {
        width: 100%;
        max-width: 340px;
    }
    
    .billboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .billboard-logo img {
        width: 120px;
    }
    
    .billboard-text h2 {
        font-size: 2rem;
    }
    
    .billboard-tagline {
        font-size: 1rem;
    }
    
    .billboard-url {
        font-size: 1.2rem;
    }
    
    .web-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .web-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .web-icons {
        justify-content: center;
    }
    
    .size-comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Lightbox Styles */
.clickable-image {
    cursor: zoom-in;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.clickable-image:hover {
    filter: brightness(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--pure-white);
    font-size: 50px;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--milwaukee-red);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Print Styles */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    body {
        background-color: #1A1A1A !important;
        color: white !important;
    }

    .header,
    .nav,
    .btn-primary,
    .btn-secondary,
    .watermark-badge {
        display: none !important;
    }

    .content-section {
        background-color: #1A1A1A !important;
        padding: 4rem 2rem !important;
        page-break-after: always;
    }

    .section-dark {
        background: #0f0f0f !important;
    }

    .toc-card, .content-card, .color-card, .spec-box, .logo-display, .font-showcase, .clearspace-visualization {
        background: rgba(74, 74, 74, 0.2) !important;
        border-color: rgba(74, 74, 74, 0.3) !important;
    }

    .hero {
        min-height: auto !important;
        padding-top: 2rem !important;
        background: #0a0a0a !important;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 2cm !important;
    }

    h1, h2, h3, h4 {
        color: white !important;
    }

    .text-red, .section-number, .content-subtitle, .card-title, .code-label {
        color: #C8102E !important;
    }

    .mockup-item {
        page-break-inside: avoid;
    }
}
