/* =====================================================
   SOCIAL MEDIA KIT STYLES - Mobile First
   Premium charcoal & gold aesthetic
   ===================================================== */

/* Social Section */
.social-section {
    padding: 48px 0;
    background: var(--navy-dark);
}

.social-section.alt-bg {
    background: var(--navy-medium);
}

@media (min-width: 768px) {
    .social-section {
        padding: 60px 0;
    }
}

@media (min-width: 1024px) {
    .social-section {
        padding: 80px 0;
    }
}

/* Social Grid */
.social-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social-grid.posts-grid,
.social-grid.quotes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.social-grid.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.social-grid.linkedin-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 600px) {
    .social-grid.posts-grid,
    .social-grid.quotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid.stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .social-grid.posts-grid,
    .social-grid.quotes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .social-grid.linkedin-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .social-grid.linkedin-grid .post-banner {
        grid-column: span 2;
    }
}

/* Social Card Container */
.social-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Social Preview Container */
.social-preview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.social-preview:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Square Post Aspect Ratio */
.post-square .social-preview {
    aspect-ratio: 1 / 1;
}

/* Story Aspect Ratio */
.post-story .social-preview {
    aspect-ratio: 9 / 16;
    max-height: 400px;
}

.story-preview {
    height: 100%;
}

/* Banner Aspect Ratio */
.post-banner .social-preview {
    aspect-ratio: 4 / 1;
}

/* LinkedIn Post Aspect Ratio */
.post-linkedin .social-preview {
    aspect-ratio: 1.91 / 1;
}

/* Preview Content Base */
.preview-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: #0A0A0A;
    position: relative;
}

/* =====================================================
   QUOTE POST STYLE
   ===================================================== */
.quote-style {
    text-align: center;
    background: linear-gradient(145deg, #0D0D0D 0%, #0A0A0A 100%);
}

.quote-style .corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-gold);
}

.quote-style .corner-accent.top-left {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
}

.quote-style .corner-accent.bottom-right {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
}

.quote-icon {
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.quote-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 85%;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-gold);
}

.author-handle {
    font-size: 10px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 16px;
    }
}

/* =====================================================
   TIP POST STYLE
   ===================================================== */
.tip-style {
    background: linear-gradient(145deg, #0D0D0D 0%, #0A0A0A 100%);
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.tip-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.tip-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.tip-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tip-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: auto;
}

.tip-footer {
    margin-top: auto;
    padding-top: 16px;
    font-size: 11px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .tip-title {
        font-size: 18px;
    }
}

/* =====================================================
   STAT POST STYLE
   ===================================================== */
.stat-style {
    background: linear-gradient(145deg, #0D0D0D 0%, #0A0A0A 100%);
    text-align: center;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 80%;
    margin-bottom: 16px;
}

.stat-source {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: auto;
}

.stat-footer {
    margin-top: auto;
    font-size: 11px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 64px;
    }
}

/* =====================================================
   ANNOUNCEMENT POST STYLE
   ===================================================== */
.announce-style {
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.08) 0%, #0A0A0A 100%);
    text-align: center;
}

.announce-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 16px;
}

.announce-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.announce-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.announce-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: auto;
}

.announce-footer {
    margin-top: auto;
    padding-top: 16px;
    font-size: 11px;
    color: var(--text-muted);
}

/* =====================================================
   STORY STYLES
   ===================================================== */
.story-quote,
.story-tip,
.story-promo {
    background: linear-gradient(180deg, #0D0D0D 0%, #0A0A0A 100%);
    padding: 16px;
    justify-content: space-between;
}

.story-top-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.story-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border: 2px solid var(--primary-gold);
}

.story-username {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.story-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 0;
}

.quote-icon.small {
    font-size: 16px;
    margin-bottom: 12px;
}

.story-quote-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 500;
}

.story-signature {
    font-size: 11px;
    color: var(--primary-gold);
    margin-top: 12px;
}

.story-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 100%;
}

.story-cta span {
    font-size: 10px;
    color: var(--text-secondary);
}

.story-cta i {
    font-size: 12px;
    color: var(--text-muted);
}

.story-cta.gold {
    background: var(--primary-gold);
}

.story-cta.gold span,
.story-cta.gold i {
    color: var(--navy-dark);
}

/* Story Tip List */
.story-tip-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.story-tip-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.story-tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    text-align: left;
}

.tip-num {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    color: var(--navy-dark);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.story-tip-item span:last-child {
    font-size: 10px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Story Promo */
.promo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 12px;
}

.promo-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.promo-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.promo-text {
    font-size: 11px;
    color: var(--text-secondary);
}

/* =====================================================
   LINKEDIN BANNER STYLE
   ===================================================== */
.banner-style {
    background: linear-gradient(135deg, #0D0D0D 0%, #0A0A0A 50%, #0D0D0D 100%);
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 32px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 1;
}

.banner-logo svg {
    width: 40px;
    height: 40px;
}

.banner-text h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.banner-text p {
    font-size: 10px;
    color: var(--text-muted);
}

.banner-tagline {
    margin-left: auto;
    z-index: 1;
}

.banner-tagline span {
    font-size: 12px;
    color: var(--primary-gold);
    font-weight: 500;
    letter-spacing: 1px;
}

.banner-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 98, 0.05) 100%);
}

@media (min-width: 768px) {
    .banner-style {
        padding: 24px 48px;
    }

    .banner-logo svg {
        width: 50px;
        height: 50px;
    }

    .banner-text h2 {
        font-size: 24px;
    }

    .banner-text p {
        font-size: 12px;
    }

    .banner-tagline span {
        font-size: 14px;
    }
}

/* =====================================================
   KEYNOTE BANNER STYLE (Manufacturing Luck - LinkedIn Cover)
   ===================================================== */
.keynote-banner-style {
    background: linear-gradient(135deg, #080808 0%, #0C0C0C 50%, #0A0A0A 100%);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    position: relative;
    overflow: hidden;
}

.kb-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.kb-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.kb-glow-1 {
    width: 260px;
    height: 260px;
    right: 5%;
    top: -80px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
}
.kb-glow-2 {
    width: 180px;
    height: 180px;
    left: 30%;
    bottom: -60px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
}
.kb-glow-3 {
    width: 120px;
    height: 120px;
    right: 30%;
    top: 10%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.04) 0%, transparent 70%);
}

/* Scattered decorative dice */
.kb-deco {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}
.kb-deco-1 {
    right: 12%;
    top: 15%;
    transform: rotate(15deg);
}
.kb-deco-2 {
    right: 25%;
    bottom: 18%;
    transform: rotate(-8deg);
}
.kb-deco-3 {
    left: 35%;
    top: 12%;
    transform: rotate(22deg);
}

/* Main content - centered, leaving bottom-left for LinkedIn profile photo */
.kb-main {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.kb-eyebrow {
    font-size: 7px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 4px;
}

.kb-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.kb-title-he {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    direction: rtl;
    margin: 4px 0 0 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.kb-brand {
    position: absolute;
    bottom: 8px;
    right: 16px;
    z-index: 1;
}

.kb-site {
    font-size: 7px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0.5;
}

.kb-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
    opacity: 0.3;
}

@media (min-width: 768px) {
    .keynote-banner-style {
        padding: 28px 48px;
    }
    .kb-title {
        font-size: 36px;
    }
    .kb-title-he {
        font-size: 20px;
        margin-top: 6px;
    }
    .kb-eyebrow {
        font-size: 9px;
        letter-spacing: 5px;
        margin-bottom: 6px;
    }
    .kb-brand {
        bottom: 12px;
        right: 24px;
    }
    .kb-site {
        font-size: 9px;
    }
    .kb-deco-1 { right: 10%; }
    .kb-deco-2 { right: 22%; }
}

/* =====================================================
   LINKEDIN POST STYLE
   ===================================================== */
.linkedin-post-style {
    background: linear-gradient(145deg, #0D0D0D 0%, #0A0A0A 100%);
    padding: 20px;
    justify-content: space-between;
    align-items: stretch;
}

.linkedin-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.linkedin-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
}

.linkedin-info {
    display: flex;
    flex-direction: column;
}

.linkedin-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.linkedin-title {
    font-size: 10px;
    color: var(--text-muted);
}

.linkedin-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin-insight-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
    width: 100%;
}

.insight-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.insight-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.insight-text p {
    font-size: 11px;
    color: var(--text-muted);
}

.linkedin-footer {
    margin-top: 16px;
    font-size: 10px;
    color: var(--text-muted);
}

/* =====================================================
   CAROUSEL COVER STYLE
   ===================================================== */
.carousel-cover {
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.1) 0%, #0A0A0A 100%);
    text-align: center;
    justify-content: space-between;
}

.carousel-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: var(--primary-gold);
    color: var(--navy-dark);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.carousel-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-main h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.carousel-main p {
    font-size: 12px;
    color: var(--primary-gold);
}

.carousel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.carousel-footer > span {
    font-size: 10px;
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    gap: 4px;
}

.carousel-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.carousel-dots .dot.active {
    background: var(--primary-gold);
}

/* =====================================================
   QUOTE CARD STYLES
   ===================================================== */

/* Minimal Quote */
.minimal-quote {
    background: #0A0A0A;
}

.minimal-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.minimal-footer {
    margin-top: 20px;
}

.minimal-footer span {
    font-size: 12px;
    color: var(--primary-gold);
}

/* Bold Quote */
.bold-quote {
    background: #0A0A0A;
    text-align: left;
    align-items: flex-start;
    position: relative;
}

.bold-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gold);
}

.bold-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    padding-left: 16px;
}

.bold-author {
    margin-top: auto;
    padding-left: 16px;
    font-size: 11px;
    color: var(--primary-gold);
    font-weight: 500;
}

/* Framed Quote */
.framed-quote {
    background: #0A0A0A;
}

.frame-border {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    width: 85%;
    height: 85%;
}

.framed-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.framed-divider {
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
    margin: 16px 0;
}

.framed-author {
    font-size: 11px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gradient Quote */
.gradient-quote {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    position: relative;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, transparent 50%, rgba(201, 169, 98, 0.1) 100%);
}

.gradient-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gradient-text-quote {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.gradient-author {
    font-size: 11px;
    color: var(--primary-gold);
}

/* =====================================================
   COLOR PALETTE
   ===================================================== */
.color-palette {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.color-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.color-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.color-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.color-hex {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Monaco', 'Consolas', monospace;
}

@media (min-width: 600px) {
    .color-palette {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .color-palette {
        grid-template-columns: repeat(6, 1fr);
    }

    .color-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .color-swatch {
        width: 64px;
        height: 64px;
    }
}

/* =====================================================
   DOCUMENT HEADERS & FOOTERS
   ===================================================== */

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .documents-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* Document Card */
.document-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-preview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.document-preview:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.header-preview {
    height: 80px;
}

.footer-preview {
    height: 60px;
}

/* Document Header Base */
.doc-header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #0A0A0A;
}

/* Letterhead Header */
.letterhead-header {
    background: linear-gradient(90deg, #0A0A0A 0%, #0D0D0D 100%);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

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

.letterhead-brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.letterhead-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.letterhead-contact span {
    font-size: 9px;
    color: var(--text-muted);
}

/* Minimal Header */
.minimal-header {
    justify-content: flex-start;
    gap: 12px;
    background: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.minimal-logo {
    display: flex;
    align-items: center;
}

.minimal-divider {
    width: 1px;
    height: 24px;
    background: rgba(201, 169, 98, 0.3);
}

.minimal-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Presentation Header */
.presentation-header {
    background: linear-gradient(90deg, #0A0A0A 0%, rgba(201, 169, 98, 0.05) 100%);
    padding: 12px 20px;
}

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

.pres-left span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.pres-right {
    display: flex;
    align-items: center;
}

.pres-title {
    font-size: 10px;
    color: var(--primary-gold);
    font-weight: 500;
}

/* Invoice Header */
.invoice-header {
    background: #0A0A0A;
    border-bottom: 2px solid var(--primary-gold);
}

.invoice-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.invoice-brand-text {
    display: flex;
    flex-direction: column;
}

.invoice-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 3px;
}

.invoice-type {
    font-size: 8px;
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.invoice-doc-type {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.doc-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.doc-number {
    font-size: 10px;
    color: var(--text-muted);
}

/* Document Footer Base */
.doc-footer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #0A0A0A;
    padding: 0 20px 12px;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
}

.footer-line.gold {
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-content.centered {
    justify-content: center;
}

.footer-content span {
    font-size: 9px;
    color: var(--text-muted);
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-dot {
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 50%;
}

/* Social Footer */
.social-footer .footer-content {
    flex-wrap: wrap;
    gap: 12px;
}

.social-content {
    justify-content: space-between;
    width: 100%;
}

.footer-brand-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-mini span {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials span {
    font-size: 9px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-socials i {
    color: var(--primary-gold);
    font-size: 10px;
}

/* Presentation Footer */
.pres-footer {
    padding: 0;
}

.pres-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.08) 0%, #0A0A0A 50%, rgba(201, 169, 98, 0.08) 100%);
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    height: 100%;
}

.pres-footer-left,
.pres-footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pres-footer-left span,
.pres-footer-right span {
    font-size: 9px;
    color: var(--text-muted);
}

.pres-footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-indicator {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-gold);
}

/* =====================================================
   EMAIL SIGNATURES
   ===================================================== */

/* Signatures Grid */
.signatures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .signatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signature-card.wide {
        grid-column: span 2;
    }
}

/* Signature Card */
.signature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signature-preview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.signature-preview:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Email Signature Base */
.email-signature {
    padding: 20px;
    background: #0A0A0A;
}

.sig-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}

.sig-divider.gold {
    background: linear-gradient(90deg, var(--primary-gold), transparent 80%);
}

/* Professional Signature */
.professional-sig .sig-content {
    display: flex;
    gap: 16px;
}

.sig-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 98, 0.3);
    flex-shrink: 0;
}

.sig-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sig-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sig-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.sig-title {
    font-size: 11px;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.sig-contact {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sig-contact span {
    font-size: 10px;
    color: var(--text-muted);
}

.sig-social {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.sig-social a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 4px;
    color: var(--primary-gold);
    font-size: 11px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sig-social a:hover {
    background: rgba(201, 169, 98, 0.2);
}

/* Minimal Signature */
.minimal-sig .sig-content.minimal {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.minimal-sig .sig-name {
    font-size: 13px;
}

.sig-subtitle {
    font-size: 10px;
    color: var(--text-muted);
}

.sig-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.sig-links span {
    font-size: 10px;
    color: var(--text-secondary);
}

.link-dot {
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 50%;
}

/* Banner Signature */
.banner-sig {
    padding: 0;
}

.sig-banner {
    background: linear-gradient(90deg, #0A0A0A 0%, rgba(201, 169, 98, 0.05) 100%);
    border-left: 3px solid var(--primary-gold);
}

.sig-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.sig-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sig-banner-info {
    display: flex;
    flex-direction: column;
}

.sig-banner-info .sig-name {
    font-size: 13px;
}

.sig-banner-info .sig-title {
    font-size: 10px;
    margin-bottom: 0;
}

.sig-banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.sig-banner-right span {
    font-size: 10px;
    color: var(--text-muted);
}
