/* ============================================
   Kensington Park Capital Corporate Styling
   ============================================ */

:root {
    --kpc-blue: #002f5d;
    --kpc-blue-light: #1a4a7a;
    --kpc-blue-dark: #001a3d;
    --kpc-gold: #d4af37;
    --kpc-gray: #f5f5f5;
    --kpc-text: #333333;
    --kpc-text-light: #666666;
    --kpc-border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--kpc-text);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Header
   ============================================ */

.site-header {
    background: var(--kpc-blue);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.website-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: all 0.3s;
}

.website-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.sign-nda-button {
    background: white;
    color: var(--kpc-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.sign-nda-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    background: #f8f8f8;
}

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

.logo-text h1 {
    font-size: 28px;
    font-weight: 300;
    font-family: 'Times New Roman', Times, serif;
    font-variant: small-caps;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.logo-text .tagline {
    font-size: 13px;
    opacity: 0.9;
    font-style: italic;
}

/* ============================================
   Navigation Tabs
   ============================================ */

.main-nav {
    background: white;
    border-bottom: 2px solid var(--kpc-border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 0;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    text-decoration: none;
    color: var(--kpc-text);
    font-weight: 500;
    font-size: 15px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-tab:hover {
    background: var(--kpc-gray);
    color: var(--kpc-blue);
}

.nav-tab.active {
    color: var(--kpc-blue);
    border-bottom-color: var(--kpc-blue);
    background: var(--kpc-gray);
}

.tab-icon {
    font-size: 18px;
}

/* ============================================
   Main Content
   ============================================ */

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    min-height: calc(100vh - 300px);
}

/* ============================================
   Landing Page Hero
   ============================================ */

.landing-hero {
    background: linear-gradient(135deg, var(--kpc-blue) 0%, var(--kpc-blue-light) 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    font-family: 'Times New Roman', Times, serif;
    font-variant: small-caps;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-banner {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: var(--kpc-blue);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cta-icon {
    font-size: 20px;
}

.cta-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* ============================================
   Content Sections
   ============================================ */

.content-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.section-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--kpc-border);
}

.section-header h2,
.section-header h3 {
    color: var(--kpc-blue);
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
}

.section-description {
    color: var(--kpc-text-light);
    font-size: 15px;
}

/* ============================================
   PDF Viewer
   ============================================ */

.document-viewer-container {
    background: white;
    border: 1px solid var(--kpc-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 0;
}

.viewer-toolbar {
    background: var(--kpc-gray);
    padding: 15px 25px;
    border-bottom: 1px solid var(--kpc-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viewer-title {
    flex: 1;
}

.viewer-title h2 {
    color: var(--kpc-blue);
    font-size: 24px;
    font-weight: 300;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
}

.viewer-controls {
    display: flex;
    gap: 10px;
}

.viewer-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--kpc-border);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: var(--kpc-text);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.viewer-btn:hover {
    background: var(--kpc-blue);
    color: white;
    border-color: var(--kpc-blue);
}

.pdf-viewer {
    height: calc(100vh - 280px);
    min-height: 800px;
    background: #f0f0f0;
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Next Steps
   ============================================ */

.next-steps {
    background: var(--kpc-gray);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.next-steps h4 {
    color: var(--kpc-blue);
    font-size: 20px;
    margin-bottom: 20px;
}

.steps-list {
    margin: 20px 0;
    padding-left: 25px;
}

.steps-list li {
    margin-bottom: 12px;
    color: var(--kpc-text);
    line-height: 1.8;
}

.cta-button-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: var(--kpc-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: var(--kpc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,47,93,0.3);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--kpc-blue-dark);
    color: white;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-container p {
    margin: 5px 0;
    font-size: 13px;
    opacity: 0.8;
}

.footer-disclaimer {
    font-style: italic;
    font-size: 12px;
    opacity: 0.7;
}

/* ============================================
   Pipeline Page
   ============================================ */

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pipeline-card {
    background: white;
    border: 1px solid var(--kpc-border);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.pipeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,47,93,0.15);
}

.pipeline-card h3 {
    color: var(--kpc-blue);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.pipeline-description {
    color: var(--kpc-text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pipeline-bullets {
    color: var(--kpc-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    padding-left: 22px;
    list-style-type: disc;
    list-style-position: outside;
    flex-grow: 1;
    display: block;
}

.pipeline-bullets li {
    margin-bottom: 10px;
}

.pipeline-bullets li:last-child {
    margin-bottom: 0;
}

.pipeline-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--kpc-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    text-align: center;
    align-self: flex-start;
}

.pipeline-link:hover {
    background: var(--kpc-blue-light);
}

/* ============================================
   Responsive Design - Tablet (768px and below)
   ============================================ */

@media (max-width: 768px) {
    /* Header */
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo {
        height: 70px;
        min-height: 50px;
    }
    
    .logo-text h1 {
        font-size: 22px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .website-link {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .sign-nda-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 10px;
        justify-content: flex-start;
    }
    
    .nav-tab {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    /* Main Content */
    .main-content {
        padding: 15px;
    }
    
    /* Content Sections */
    .content-section {
        padding: 20px;
        border-radius: 6px;
    }
    
    .section-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .section-header > div {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header .teaser-btn {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .section-header h2,
    .section-header h3 {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Pipeline Grid */
    .pipeline-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }
    
    .pipeline-card {
        padding: 20px;
    }
    
    .pipeline-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .pipeline-bullets {
        font-size: 13px;
        padding-left: 18px;
        margin-bottom: 15px;
    }
    
    .pipeline-bullets li {
        margin-bottom: 8px;
    }
    
    .pipeline-link {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    /* PDF Viewer */
    .pdf-viewer {
        height: calc(100vh - 350px);
        min-height: 400px;
    }
    
    .viewer-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 12px 15px;
    }
    
    .viewer-title h2 {
        font-size: 18px;
    }
    
    .viewer-controls {
        width: 100%;
        justify-content: stretch;
    }
    
    .viewer-btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Hero */
    .landing-hero {
        padding: 40px 20px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-banner {
        padding: 20px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    
    /* Next Steps */
    .next-steps {
        padding: 20px;
        margin-top: 25px;
    }
    
    .next-steps h4 {
        font-size: 18px;
    }
    
    .steps-list {
        padding-left: 20px;
    }
    
    .steps-list li {
        font-size: 14px;
    }
    
    .cta-button-secondary {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    /* Footer */
    .site-footer {
        margin-top: 40px;
        padding: 25px 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-container p {
        font-size: 12px;
    }
}

/* ============================================
   Responsive Design - Small Mobile (480px and below)
   ============================================ */

@media (max-width: 480px) {
    /* Header */
    .header-container {
        padding: 12px 15px;
    }
    
    .logo {
        height: 60px;
        min-height: 40px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text .tagline {
        font-size: 11px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .website-link,
    .sign-nda-button {
        width: 100%;
        text-align: center;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 5px;
    }
    
    .nav-tab {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    /* Main Content */
    .main-content {
        padding: 10px;
    }
    
    /* Content Sections */
    .content-section {
        padding: 15px;
    }
    
    .section-header > div {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header .teaser-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .section-header h2,
    .section-header h3 {
        font-size: 20px;
    }
    
    /* Pipeline */
    .pipeline-grid {
        gap: 15px;
        margin-top: 20px;
    }
    
    .pipeline-card {
        padding: 15px;
    }
    
    .pipeline-card h3 {
        font-size: 16px;
    }
    
    .pipeline-bullets {
        font-size: 12px;
        line-height: 1.6;
    }
    
    /* Hero */
    .landing-hero {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .cta-banner {
        padding: 15px;
    }
    
    /* PDF Viewer */
    .pdf-viewer {
        min-height: 350px;
    }
    
    .viewer-title h2 {
        font-size: 16px;
    }
    
    .viewer-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* ============================================
   TEASER PAGE STYLES (Shared across all teasers)
   ============================================ */

.teaser-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Two-column layout on desktop */
.teaser-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.teaser-main {
    min-width: 0;
}

/* Sticky sidebar for highlights */
.teaser-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.teaser-hero {
    background: linear-gradient(135deg, var(--kpc-blue) 0%, var(--kpc-blue-light) 100%);
    color: white;
    padding: 24px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.teaser-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.teaser-hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.teaser-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.25);
}

.teaser-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.teaser-tagline {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: var(--kpc-blue);
    margin: 0 0 20px 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 15px;
}

.teaser-tagline::before,
.teaser-tagline::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--kpc-blue);
    opacity: 0.6;
}

.teaser-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.teaser-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 13px;
}

.teaser-btn-primary {
    background: var(--kpc-blue);
    color: white;
}

.teaser-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,47,93,0.3);
    background: var(--kpc-blue-dark);
}

.teaser-btn-secondary {
    background: white;
    color: var(--kpc-blue);
    border: 2px solid var(--kpc-blue);
}

.teaser-btn-secondary:hover {
    background: var(--kpc-blue);
    color: white;
}

.teaser-btn-premarket {
    background: #f5f5f5;
    color: #888;
    border: 2px solid #ddd;
    cursor: default;
    font-style: italic;
}

.teaser-section {
    background: white;
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--kpc-border);
}

.teaser-section-title {
    color: var(--kpc-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--kpc-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.teaser-section-title::before {
    content: '';
    width: 3px;
    height: 20px;
    background: var(--kpc-blue);
    border-radius: 2px;
}

.teaser-text {
    color: var(--kpc-text);
    font-size: 14px;
    line-height: 1.75;
}

.teaser-text p {
    margin-bottom: 12px;
}

.teaser-text p:last-child {
    margin-bottom: 0;
}

/* Sidebar Highlights - Compact Stack */
.sidebar-highlights {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--kpc-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.sidebar-highlights .teaser-section-title {
    font-size: 15px;
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.sidebar-highlights .teaser-section-title::before {
    height: 16px;
}

.sidebar-highlight-item {
    padding: 12px 0;
    border-bottom: 1px solid #eef1f4;
}

.sidebar-highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-highlight-item:first-child {
    padding-top: 0;
}

.sidebar-highlight-title {
    color: var(--kpc-blue);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.sidebar-highlight-text {
    color: var(--kpc-text-light);
    font-size: 12px;
    line-height: 1.5;
}

/* Sidebar Financials - Compact Grid */
.sidebar-financials {
    background: linear-gradient(135deg, var(--kpc-blue) 0%, var(--kpc-blue-light) 100%);
    border-radius: 10px;
    padding: 20px;
    color: white;
}

.sidebar-financials-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-financials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sidebar-financial-item {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.sidebar-financial-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.sidebar-financial-label {
    font-size: 10px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Main content highlights (for inline use) */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.highlight-card {
    background: #f8f9fb;
    border-radius: 8px;
    padding: 16px;
    border-left: 3px solid var(--kpc-blue);
    transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,47,93,0.08);
}

.highlight-title {
    color: var(--kpc-blue);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.highlight-text {
    color: var(--kpc-text-light);
    font-size: 12px;
    line-height: 1.55;
}

.financials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.financial-card {
    text-align: center;
    padding: 20px 12px;
    background: linear-gradient(135deg, var(--kpc-blue) 0%, var(--kpc-blue-light) 100%);
    border-radius: 8px;
    color: white;
}

.financial-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Segoe UI', sans-serif;
}

.financial-label {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

.contact-section {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 28px;
    margin-top: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.contact-card {
    background: white;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.contact-name {
    color: var(--kpc-blue);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-title {
    color: var(--kpc-text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.contact-info {
    font-size: 13px;
    color: var(--kpc-text);
}

.contact-info a {
    color: var(--kpc-blue);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info p {
    margin: 4px 0;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 18px;
    padding: 18px;
    background: #f8f9fb;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.brand-item {
    padding: 8px 16px;
    background: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--kpc-blue);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8f9fb;
    border-radius: 6px;
    font-size: 13px;
    color: var(--kpc-text);
}

.service-item::before {
    content: '✓';
    color: var(--kpc-blue);
    font-weight: bold;
}

/* Teaser Tablet Responsive */
@media (max-width: 1024px) {
    .teaser-layout {
        grid-template-columns: 1fr 280px;
        gap: 20px;
    }
}

/* Teaser Mobile Responsive - Stack layout */
@media (max-width: 768px) {
    .teaser-layout {
        display: flex;
        flex-direction: column;
    }
    
    .teaser-sidebar {
        position: static;
        order: -1; /* Move sidebar (highlights) to top on mobile */
        margin-bottom: 20px;
    }
    
    .sidebar-financials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .teaser-hero { 
        padding: 20px; 
        flex-direction: column;
        align-items: flex-start;
    }
    .teaser-hero-content {
        width: 100%;
    }
    .teaser-title { font-size: 22px; }
    .teaser-badge { font-size: 9px; padding: 3px 10px; }
    .teaser-tagline { 
        font-size: 18px; 
        margin-bottom: 15px;
        gap: 10px;
    }
    .teaser-actions { 
        width: 100%;
        justify-content: center;
    }
    .teaser-btn { 
        width: 100%; 
        justify-content: center; 
        padding: 10px 16px;
        font-size: 12px;
    }
    .teaser-section { padding: 18px; }
    .teaser-section-title { font-size: 16px; }
    .teaser-section-title::before { height: 16px; width: 3px; }
    .teaser-text { font-size: 13px; }
    .sidebar-highlights { padding: 16px; }
    .sidebar-highlight-title { font-size: 12px; }
    .sidebar-highlight-text { font-size: 11px; }
    .sidebar-financials { padding: 16px; }
    .sidebar-financial-value { font-size: 18px; }
    .sidebar-financial-label { font-size: 9px; }
    .financial-value { font-size: 20px; }
    .contact-section { padding: 18px; }
    .contact-card { padding: 14px; }
    .contact-name { font-size: 15px; }
    .contact-title { font-size: 12px; }
    .contact-info { font-size: 12px; }
}

/* Sign NDA Page (Cool Breeze) */
.sign-nda-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.sign-nda-header {
    text-align: center;
    margin-bottom: 30px;
}

.sign-nda-header h2 {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Times New Roman', Georgia, serif;
    color: var(--kpc-blue);
    margin: 0 0 10px 0;
}

.sign-nda-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.sign-nda-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    min-height: 700px;
}

#form-container-b81e8969-f870-410e-81d1-463bc07837aa {
    width: 100%;
    height: 700px;
    border: none;
}

@media (max-width: 768px) {
    .sign-nda-container {
        padding: 15px;
    }
    
    .sign-nda-header h2 {
        font-size: 22px;
    }
    
    .sign-nda-header p {
        font-size: 14px;
    }
    
    .sign-nda-form-wrapper {
        padding: 20px;
        min-height: 600px;
    }
    
    #form-container-b81e8969-f870-410e-81d1-463bc07837aa {
        height: 600px;
    }
}
