/* ==========================================================================
   iCares Hospital Ecosystem - Stylesheet
   Design Theme: Futuristic Clinical Tech (Dark Mode Base, Premium Glassmorphism)
   With Standar Input Small Premium for Forms & @media print for A4 Brochure
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - HSL Tailored Colors */
    --color-bg: #0b0f19;
    --color-bg-darker: #070a12;
    --color-bg-lighter: #131b2e;
    
    --color-primary: hsl(150, 80%, 45%);       /* Glowing Emerald */
    --color-primary-glow: hsla(150, 80%, 45%, 0.35);
    
    --color-accent-blue: hsl(200, 85%, 45%);   /* PACS Blue */
    --color-accent-purple: hsl(265, 80%, 55%); /* Finance Purple */
    --color-accent-teal: hsl(175, 85%, 45%);   /* Document Teal */
    --color-accent-orange: hsl(25, 90%, 50%);  /* HR Orange */
    
    /* Indonesian Health Ecosystem Color Tokens */
    --color-accent-satusehat: hsl(180, 80%, 45%);   /* SATUSEHAT Teal/Cyan */
    --color-accent-bpjs: hsl(140, 75%, 45%);         /* BPJS Green */
    --color-accent-lis: hsl(195, 85%, 50%);          /* LIS Blue */
    --color-accent-others: hsl(340, 85%, 55%);       /* Others Rose */
    
    --color-text-main: #f1f5f9;                 /* Slate 100 */
    --color-text-muted: #94a3b8;                /* Slate 400 */
    --color-text-dark: #0f172a;                 /* Slate 900 */
    
    --glass-bg: rgba(19, 27, 46, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.25);
    --glass-glow: rgba(74, 222, 128, 0.05);     /* Emerald Glow */

    /* Typography */
    --font-family-body: 'Inter', sans-serif;
    --font-family-title: 'Outfit', sans-serif;
}

/* --------------------------------------------------------------------------
   2. GLOBAL & PARTICLES BASE STYLING
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-family-body);
    overflow-x: hidden;
    line-height: 1.6;
}

#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-green {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--color-accent-purple), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--color-accent-blue), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
    background: linear-gradient(135deg, var(--color-accent-orange), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* --------------------------------------------------------------------------
   3. REUSABLE COMPONENTS & GLASSMORPHISM
   -------------------------------------------------------------------------- */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
    border-color: rgba(74, 222, 128, 0.2);
    box-shadow: 0 15px 35px rgba(74, 222, 128, 0.08);
}

.btn {
    font-family: var(--font-family-title);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-teal));
    color: var(--color-bg-darker);
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg-darker);
    transform: translateY(-2px);
}

.btn-purple {
    background: linear-gradient(135deg, var(--color-accent-purple), #a855f7);
    color: white;
}
.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

.btn-teal {
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-primary));
    color: var(--color-bg-darker);
}
.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 212, 191, 0.4);
}

.btn-compact {
    padding: 8px 16px;
    font-size: 0.88rem;
}

.btn-xs {
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.btn-full {
    width: 100%;
}

.section-tag {
    font-family: var(--font-family-title);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-family-title);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto 48px;
}

/* --------------------------------------------------------------------------
   4. FLOATING NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.logo-brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-company-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
    transition: transform 0.25s ease;
}

.logo-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
}

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

.logo-product-img {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.25));
    transition: transform 0.25s ease;
}

.logo-brand-container:hover .logo-company-img {
    transform: scale(1.05);
}

.logo-brand-container:hover .logo-product-img {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.25));
    transition: transform 0.25s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-icon {
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px var(--color-primary));
    animation: pulse 2.5s infinite alternate;
}

.logo-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(74, 222, 128, 0.1);
    color: var(--color-primary);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-cta {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: blink 1.5s infinite alternate;
}

.badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.hero-title {
    font-family: var(--font-family-title);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-family-title);
    font-size: 1.88rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glowing-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
    animation: float 6s ease-in-out infinite alternate;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(19, 27, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-badge i {
    font-size: 1.35rem;
}

.floating-badge h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.floating-badge p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.badge-1 {
    top: 15%;
    left: -20px;
    animation: float 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    right: -20px;
    animation: float 7s ease-in-out infinite alternate;
}

/* --------------------------------------------------------------------------
   6. ECOSYSTEM HOSPITAL INTERACTIVE HUB
   -------------------------------------------------------------------------- */
.ecosystem-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(19, 27, 46, 0.5) 0%, transparent 70%);
}

.ecosystem-hub-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.ecosystem-visualizer-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.connection-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.eco-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(19, 27, 46, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-name {
    font-family: var(--font-family-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Nodes Positions */
.node-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.node-center .node-icon-wrapper {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(11, 15, 25, 0.9);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.25);
}

.node-center .node-name {
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 800;
}

.node-finance { top: 15%; left: 15%; }
.node-pacs { top: 15%; right: 15%; }
.node-dokumen { bottom: 15%; left: 15%; }
.node-hr { bottom: 15%; right: 15%; }

/* Cardinal Health Ecosystem Nodes Positioning */
.node-satusehat { top: 4%; left: 50%; transform: translateX(-50%); }
.node-bpjs { top: 50%; right: 4%; transform: translateY(-50%); }
.node-lis { top: 50%; left: 4%; transform: translateY(-50%); }
.node-others { bottom: 4%; left: 50%; transform: translateX(-50%); }

/* Active & Hover states for Hub */
.eco-node:hover .node-icon-wrapper,
.eco-node.active .node-icon-wrapper {
    transform: scale(1.15);
    color: white;
}

.eco-node.active .node-icon-wrapper {
    box-shadow: 0 0 25px currentColor;
}

.eco-node:hover .node-name,
.eco-node.active .node-name {
    color: white;
}

/* Specific Node Glow Colors on Active */
.node-finance.active { color: var(--color-accent-purple); }
.node-finance.active .node-icon-wrapper { border-color: var(--color-accent-purple); }

.node-pacs.active { color: var(--color-accent-blue); }
.node-pacs.active .node-icon-wrapper { border-color: var(--color-accent-blue); }

.node-dokumen.active { color: var(--color-accent-teal); }
.node-dokumen.active .node-icon-wrapper { border-color: var(--color-accent-teal); }

.node-hr.active { color: var(--color-accent-orange); }
.node-hr.active .node-icon-wrapper { border-color: var(--color-accent-orange); }

.node-satusehat.active { color: var(--color-accent-satusehat); }
.node-satusehat.active .node-icon-wrapper { border-color: var(--color-accent-satusehat); }

.node-bpjs.active { color: var(--color-accent-bpjs); }
.node-bpjs.active .node-icon-wrapper { border-color: var(--color-accent-bpjs); }

.node-lis.active { color: var(--color-accent-lis); }
.node-lis.active .node-icon-wrapper { border-color: var(--color-accent-lis); }

.node-others.active { color: var(--color-accent-others); }
.node-others.active .node-icon-wrapper { border-color: var(--color-accent-others); }

/* Info Card */
.ecosystem-info-card {
    padding: 32px;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.info-product-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
}

.info-card-header h3 {
    font-family: var(--font-family-title);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-status {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.status-active {
    background: rgba(74, 222, 128, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.info-card-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.data-flow-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-flow-list li {
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.data-flow-list li i {
    margin-top: 3px;
}

.info-card-footer {
    margin-top: 28px;
}

/* --------------------------------------------------------------------------
   7. PRODUCTS SHOWCASE TABS & PANELS
   -------------------------------------------------------------------------- */
.products-section {
    padding: 100px 0;
    background-color: var(--color-bg-darker);
}

.product-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.tab-btn {
    font-family: var(--font-family-title);
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-main);
}

.tab-btn.active {
    background: var(--color-primary);
    color: var(--color-bg-darker);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.25);
}

.tab-btn[data-tab="tab-finance"].active {
    background: var(--color-accent-purple);
    color: white;
    border-color: var(--color-accent-purple);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.25);
}

.tab-btn[data-tab="tab-pacs"].active {
    background: var(--color-accent-blue);
    color: white;
    border-color: var(--color-accent-blue);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.tab-btn[data-tab="tab-dokumen"].active {
    background: var(--color-accent-teal);
    color: var(--color-bg-darker);
    border-color: var(--color-accent-teal);
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.25);
}

.tab-btn[data-tab="tab-hr"].active {
    background: var(--color-accent-orange);
    color: white;
    border-color: var(--color-accent-orange);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.product-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.product-panel.active {
    display: block;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 48px;
    align-items: start;
}

.product-badge {
    font-family: var(--font-family-title);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: inline-block;
}

.product-badge.accent-purple { color: #c084fc; }
.product-badge.accent-blue { color: #60a5fa; }
.product-badge.accent-teal { color: #2dd4bf; }
.product-badge.accent-orange { color: #fb923c; }

.panel-info h3 {
    font-family: var(--font-family-title);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.panel-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.panel-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-card i {
    font-size: 1.45rem;
    margin-top: 4px;
}

.feature-card h4 {
    font-family: var(--font-family-title);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.panel-demo-widget {
    padding: 24px;
    overflow: hidden;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   8. WIDGET SIMULATOR STYLING (SIMRS, PACS, DOKUMEN, FINANCE, HR)
   -------------------------------------------------------------------------- */

/* A. SIMRS Dashboard Simulator */
.simrs-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.sim-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.sim-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.sim-stat-val {
    font-family: var(--font-family-title);
    font-size: 1.25rem;
    font-weight: 800;
}

.bed-layout-container h5,
.queue-monitor h5,
.signature-simulator h5,
.shift-slider-container h5 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.bed-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.bed-node-mini {
    height: 28px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bed-node-mini.occupied {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.bed-node-mini.vacant {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.bed-node-mini.clean {
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.4);
    color: #eab308;
}

.bed-node-mini:hover {
    transform: scale(1.08);
}

.bed-legend {
    display: flex;
    gap: 16px;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.dot-legend {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
}

.bg-danger { background-color: #ef4444; }
.bg-success { background-color: #22c55e; }
.bg-warning { background-color: #eab308; }

.queue-monitor {
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.queue-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.q-poli {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.q-num {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
}

.bg-indigo {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.4);
}

.q-name {
    font-size: 0.8rem;
    font-weight: 600;
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* B. Finance BPJS Bridging Simulator */
.sim-invoice-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 16px;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.invoice-header h4 {
    font-size: 0.88rem;
    font-weight: 700;
}

.invoice-num {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.invoice-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.inv-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.inv-row span {
    color: var(--color-text-muted);
}

.bpjs-bridge-visual {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.bridge-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.bridge-node i {
    font-size: 1.25rem;
}

.system-node i { color: var(--color-primary); }
.bpjs-node i { color: #3b82f6; }

.bridge-flow {
    flex-grow: 1;
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 16px;
    border-radius: 2px;
}

.flow-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-accent-purple);
    border-radius: 50%;
    top: -1px;
    left: 0;
}

.flow-dot.animating {
    animation: flowProgress 1.5s infinite;
}

.flow-text {
    position: absolute;
    top: 8px;
    width: 100%;
    text-align: center;
    font-size: 0.65rem;
    color: var(--color-text-muted);
}

.claim-result-box {
    margin-top: 16px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 12px;
    border-radius: 8px;
    animation: fadeIn 0.4s ease;
}

.result-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.result-status i {
    font-size: 1.35rem;
}

.result-status h5 {
    font-size: 0.85rem;
    font-weight: 700;
}

.result-status p {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.result-amount {
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    padding-top: 8px;
}

.result-amount strong {
    color: #22c55e;
}

.hidden { display: none !important; }

/* C. PACS Orthanc DICOM Web Viewer Simulator */
.pacs-simulator-container {
    background: #000;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    position: relative;
    max-width: 440px;
    margin: 0 auto;
}

.pacs-viewer-toolbar {
    background: #111;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pacs-tool-btn {
    background: #222;
    border: 1px solid #333;
    color: #ccc;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pacs-tool-btn:hover {
    background: #333;
    color: white;
    border-color: #555;
}

.pacs-tool-btn.active {
    background: var(--color-accent-blue);
    color: white;
    border-color: var(--color-accent-blue);
}

.pacs-canvas-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background: #050505;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pacs-canvas {
    cursor: grab;
    max-width: 100%;
    max-height: 100%;
    transition: filter 0.2s ease;
}

#pacs-canvas:active {
    cursor: grabbing;
}

/* PACS Text Overlays */
.pacs-overlay {
    position: absolute;
    color: #22c55e; /* Cyberpunk clinic neon green */
    font-family: monospace;
    font-size: 0.68rem;
    pointer-events: none;
    line-height: 1.3;
    text-shadow: 1px 1px 2px #000;
}

.pacs-overlay-tl { top: 10px; left: 10px; text-align: left; }
.pacs-overlay-tr { top: 10px; right: 10px; text-align: right; }
.pacs-overlay-bl { bottom: 10px; left: 10px; text-align: left; }
.pacs-overlay-br { bottom: 10px; right: 10px; text-align: right; }

/* Invert filter helper */
.pacs-invert-filter {
    filter: invert(1);
}

/* Simulated Measuring Grid Overlay */
.pacs-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.grid-line {
    position: absolute;
    border: 1px dashed rgba(34, 197, 94, 0.3);
}

.grid-line.horizontal-1 { top: 33.33%; width: 100%; height: 0; }
.grid-line.horizontal-2 { top: 66.66%; width: 100%; height: 0; }
.grid-line.vertical-1 { left: 33.33%; height: 100%; width: 0; }
.grid-line.vertical-2 { left: 66.66%; height: 100%; width: 0; }

.pacs-instruction-text {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

/* D. Dokumen Digital & Signature Pad */
.sig-pad-wrapper {
    background: #0f172a;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    height: 120px;
    position: relative;
    margin-bottom: 12px;
}

#signature-pad {
    width: 100%;
    height: 100%;
    cursor: crosshair;
    display: block;
}

.sig-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.sig-result {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
    border-radius: 8px;
    animation: fadeIn 0.4s ease;
}

.signed-document-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdf-big-icon {
    font-size: 2.2rem;
    color: #f43f5e;
}

.signed-text h5 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.signed-text p {
    font-size: 0.7rem;
    margin-bottom: 6px;
}

.qr-verify-code {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

/* E. HR+ Doctor Schedule & Payroll Slider */
.slider-wrapper {
    margin-bottom: 24px;
}

.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    margin-bottom: 6px;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 8px var(--color-primary);
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.orange-slider::-webkit-slider-thumb {
    background: var(--color-accent-orange);
    box-shadow: 0 0 8px var(--color-accent-orange);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 600;
    padding: 0 2px;
}

.shift-card-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

.doctor-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.doc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    color: var(--color-accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.doctor-profile h5 {
    font-size: 0.85rem;
    font-weight: 700;
}

.doctor-profile p {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.shift-details {
    font-size: 0.78rem;
}

.shift-details p {
    color: var(--color-text-muted);
    margin-top: 6px;
}

#shift-badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.payroll-preview-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px;
    border-radius: 8px;
}

.payroll-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.font-bold { font-weight: 700; }

.payroll-bar-chart {
    height: 16px;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.payroll-bar {
    font-size: 0.55rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
}

.bar-basic { background: #3b82f6; }
.bar-jamed { background: #22c55e; }
.bar-allowance { background: #eab308; }

.payroll-legend {
    display: flex;
    gap: 12px;
    font-size: 0.6rem;
    color: var(--color-text-muted);
}

.legend-color {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
}

.bg-blue { background-color: #3b82f6; }
.bg-green { background-color: #22c55e; }

/* --------------------------------------------------------------------------
   9. ROI & VALUE CALCULATOR SECTION
   -------------------------------------------------------------------------- */
.roi-section {
    padding: 100px 0;
}

.roi-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    margin-top: 40px;
}

.roi-input-card, .roi-output-card {
    padding: 36px;
}

.roi-input-card h3, .roi-output-card h3 {
    font-family: var(--font-family-title);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.roi-input-group {
    margin-bottom: 24px;
}

.roi-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.input-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-val-display {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary);
}

.form-select {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-main);
    padding: 0 16px;
    outline: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-select option {
    background: var(--color-bg-lighter);
}

.highlight-border {
    border-color: rgba(74, 222, 128, 0.35);
    background: radial-gradient(circle at top right, rgba(74, 222, 128, 0.04), transparent 50%), var(--glass-bg);
}

.roi-metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.metric-card {
    display: flex;
    gap: 16px;
    align-items: center;
}

.metric-card i {
    font-size: 2.2rem;
    width: 48px;
    text-align: center;
}

.metric-card span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: block;
}

.metric-card h2 {
    font-family: var(--font-family-title);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
}

.metric-card p {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.roi-recommendations {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-bottom: 28px;
}

.roi-recommendations h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.rec-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rec-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rec-tag.bg-green { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.25); }
.rec-tag.bg-purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.25); }
.rec-tag.bg-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.25); }
.rec-tag.bg-teal { background: rgba(45, 212, 191, 0.15); color: #2dd4bf; border: 1px solid rgba(45, 212, 191, 0.25); }
.rec-tag.bg-orange { background: rgba(249, 115, 22, 0.15); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.25); }

/* --------------------------------------------------------------------------
   10. TECH COMPLIANCE & STANDARDS
   -------------------------------------------------------------------------- */
.compliance-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-darker) 0%, var(--color-bg) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compliance-section h3 {
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.compliance-section p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.compliance-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compliance-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.compliance-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.compliance-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.compliance-item h4 {
    font-family: var(--font-family-title);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.compliance-item p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   11. REQUEST DEMO SECTION & STANDAR FORM INPUT SMALL PREMIUM
   -------------------------------------------------------------------------- */
.demo-section {
    padding: 100px 0;
}

.demo-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.demo-text h2 {
    font-family: var(--font-family-title);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.demo-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-info-item i {
    font-size: 2.2rem;
    width: 44px;
    text-align: center;
}

.contact-info-item h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.contact-info-item p {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
}

/* STANDAR PEMBUATAN FORM INPUT SMALL PREMIUM */
.premium-form-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 40px rgba(99, 102, 241, 0.05);
    padding: 24px;
    color: var(--color-text-dark); /* Form is in Light Mode per standard */
}

.premium-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.premium-form-header i {
    font-size: 1.5rem;
    color: #6366f1; /* Standar Indigo */
}

.premium-form-header h4 {
    font-family: var(--font-family-title);
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.premium-form-header p {
    font-size: 0.72rem;
    color: #64748b;
    margin: 0;
}

.premium-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    width: 100%;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

/* Labels: uppercase, compact, bold */
.premium-wrapper label {
    display: block;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #475569 !important;
    margin-bottom: 4px !important;
}

/* Control: height 30px, radius 6px, flat background #f8fafc */
.premium-wrapper input.form-control,
.premium-wrapper select.form-control {
    height: 30px !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    font-size: 0.75rem !important;
    border-radius: 6px !important;
    border: 1px solid #d1d5db !important;
    background-color: #f8fafc !important;
    color: #1e293b !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02) !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    outline: none !important;
}

/* Focus styles: white background, indigo glow border */
.premium-wrapper input.form-control:focus,
.premium-wrapper select.form-control:focus {
    border-color: #6366f1 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15) !important;
}

.btn-indigo {
    background: #6366f1;
    color: white;
}

.btn-indigo:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-small-premium {
    height: 32px;
    padding: 0 16px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-success-alert {
    margin-top: 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: fadeIn 0.4s ease;
}

.form-success-alert i {
    font-size: 1.5rem;
    color: #22c55e;
}

.form-success-alert h5 {
    font-family: var(--font-family-title);
    font-size: 0.88rem;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 2px;
}

.form-success-alert p {
    font-size: 0.75rem;
    color: #166534;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 32px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    margin-top: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-bg-darker);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links-group h4, .footer-compliance h4 {
    font-family: var(--font-family-title);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group ul a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-group ul a:hover {
    color: var(--color-primary);
}

.cert-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-grid span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-subtext {
    font-size: 0.72rem;
    margin-top: 6px;
}

/* --------------------------------------------------------------------------
   13. INTERACTIVE BROSUR DIGITAL MODE (MODAL OVERLAY STYLE)
   -------------------------------------------------------------------------- */
.brochure-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 18, 0.92);
    z-index: 2000;
    overflow-y: auto;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.brochure-modal-overlay.active {
    display: flex;
}

.brochure-modal-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.brochure-modal-toolbar {
    background: var(--color-bg-lighter);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.brochure-modal-toolbar h3 {
    font-family: var(--font-family-title);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toolbar-actions {
    display: flex;
    gap: 12px;
}

/* Brochure Layout Styling for Screen Viewer */
.brochure-print-area {
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 12px 12px;
    color: var(--color-text-dark);
}

.brochure-page {
    background: white;
    width: 100%;
    min-height: 1100px; /* Approximate A4 Aspect Ratio in Screen */
    padding: 60px;
    position: relative;
    box-sizing: border-box;
    border-bottom: 2px dashed #ddd; /* Visual indicator of page fold */
    overflow: hidden;
}

.brochure-page:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

/* Page Decoration */
.print-decor-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #6366f1);
}

.brochure-header-print {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 16px;
    margin-bottom: 40px;
}

.brochure-header-print .logo {
    color: #0f172a;
}
.brochure-header-print .logo-icon {
    color: #10b981;
}
.brochure-header-print .logo-badge {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.15);
}

.print-date {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.print-hero-section {
    margin-bottom: 48px;
    text-align: center;
}

.print-hero-section h1 {
    font-family: var(--font-family-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 12px;
}

.print-hero-section h3 {
    font-size: 1.05rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 20px;
}

.print-divider {
    width: 60px;
    height: 4px;
    background: #10b981;
    margin: 0 auto 24px;
    border-radius: 2px;
}

.print-hero-section p {
    font-size: 0.95rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
}

.print-products-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
}

.print-prod-card {
    background: #f8fafc;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 16px 20px;
}

.print-prod-card h4 {
    font-family: var(--font-family-title);
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.print-prod-card p {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.5;
}

.print-footer-page {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: #64748b;
}

.print-qr-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.print-qr-code i {
    font-size: 1.75rem;
    color: #0f172a;
}

.print-contact-info {
    text-align: right;
}

.page-title-print {
    margin-bottom: 28px;
}

.page-title-print h2 {
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.page-title-print span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
}

.print-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.print-grid-two h3 {
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.print-grid-two p {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.print-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.print-benefits-list li {
    font-size: 0.8rem;
    color: #334155;
    position: relative;
    padding-left: 16px;
}

.print-benefits-list li::before {
    content: "■";
    color: #10b981;
    position: absolute;
    left: 0;
    font-size: 0.65rem;
    top: 1px;
}

.print-ecosystem-visual-mock {
    background: #f8fafc;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.print-hub-node-center {
    background: #10b981;
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.print-hub-subnodes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.print-hub-subnode {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 0.72rem;
    text-align: center;
    font-weight: 600;
    color: #334155;
}

.print-hub-subnode.font-finance { border-left: 3px solid #8b5cf6; }
.print-hub-subnode.font-pacs { border-left: 3px solid #0ea5e9; }
.print-hub-subnode.font-dokumen { border-left: 3px solid #14b8a6; }
.print-hub-subnode.font-hr { border-left: 3px solid #f97316; }
.print-hub-subnode.font-satusehat { border-left: 3px solid #06b6d4; }
.print-hub-subnode.font-bpjs { border-left: 3px solid #10b981; }
.print-hub-subnode.font-lis { border-left: 3px solid #0284c7; }
.print-hub-subnode.font-others { border-left: 3px solid #f43f5e; }

.print-features-detail-section h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.print-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.print-spec-table th, .print-spec-table td {
    border: 1px solid #eaeaea;
    padding: 10px 12px;
    font-size: 0.72rem;
    text-align: left;
    line-height: 1.4;
}

.print-spec-table th {
    background-color: #f1f5f9;
    font-weight: 700;
    color: #1e293b;
}

.print-spec-table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* --------------------------------------------------------------------------
   14. KEYFRAME ANIMATIONS & RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--color-primary)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 8px var(--color-primary)); }
}

@keyframes blink {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

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

@keyframes flowProgress {
    0% { left: 0%; }
    100% { left: 95%; }
}

/* RESPONSIVE DESIGN (MEDIA QUERIES FOR SCREEN) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .dashboard-mockup {
        transform: none;
    }
    
    .dashboard-mockup:hover {
        transform: scale(1.02);
    }
    
    .ecosystem-hub-container {
        grid-template-columns: 1fr;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none; /* Mobile menu can be simplified */
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .compliance-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ecosystem-visualizer-wrapper {
        height: 400px;
    }
    
    .eco-node .node-icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }
    
    .eco-node.node-center .node-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .node-name {
        font-size: 0.72rem;
    }
}

/* ==========================================================================
   14. COMPANY PROFILE & PARTNERS SECTION
   ========================================================================== */
.profile-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.05), transparent 60%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Premium Profile Video Styling */
.profile-video-container {
    max-width: 850px;
    margin: 0 auto 50px auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(99, 102, 241, 0.15);
    background: #060913;
    aspect-ratio: 16/9;
    transition: all 0.4s ease;
}

.profile-video-container:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.7), 0 0 50px rgba(99, 102, 241, 0.25);
}

.profile-video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.video-overlay:hover {
    background: rgba(10, 15, 30, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.play-btn-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Premium Emerald gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-overlay:hover .play-btn-circle {
    transform: scale(1.15);
    box-shadow: 0 0 45px rgba(16, 185, 129, 0.7);
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.video-overlay span {
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.video-overlay:hover span {
    color: #ffffff;
    transform: translateY(2px);
}

.video-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.profile-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-card.highlighted-glow {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.1);
}

.profile-card.highlighted-glow:hover {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.25);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    position: relative;
}

.card-icon-wrapper.font-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-icon-wrapper.font-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.card-icon-wrapper.font-indigo {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.profile-card h3 {
    font-family: var(--font-family-title);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
}

.glow-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 3px 8px;
    border-radius: 6px;
}

.card-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    margin-bottom: 20px;
}

.profile-card-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.profile-card-content p {
    margin-bottom: 12px;
}

.profile-card-content p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: var(--color-text);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
}

.legal-table td {
    padding: 10px 0;
    vertical-align: top;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-table tr:first-child td {
    padding-top: 0;
}

.legal-table td:first-child {
    width: 40%;
    color: var(--color-text);
    font-weight: 500;
}

.legal-table td:second-child {
    color: var(--color-text-muted);
}

.legal-badge {
    font-family: var(--font-family-mono, monospace);
    font-size: 0.76rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    padding: 2px 6px;
    border-radius: 4px;
}

.hki-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 14px;
    transition: background 0.3s ease;
}

.hki-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.hki-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 6px;
}

.hki-header i {
    color: #6366f1;
}

.hki-meta {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.profile-stats-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    backdrop-filter: blur(12px);
}

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

.stat-number {
    font-family: var(--font-family-title);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
}

.text-gradient-emerald {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* MARQUEE STYLING */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 5px 0;
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    gap: 20px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.marquee-inner-reverse {
    display: flex;
    white-space: nowrap;
    gap: 20px;
    width: max-content;
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.partner-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.partner-badge i {
    color: var(--color-primary);
}

.partner-badge:hover {
    background: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-stats-bar {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Custom mobile responsive optimization to prevent horizontal overflow */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-brand .logo-brand-container {
        justify-content: center;
    }
    .footer-corporate-info {
        align-items: center;
    }
    .social-links {
        justify-content: center;
    }
    
    .ecosystem-visualizer-wrapper {
        transform: scale(0.8);
        transform-origin: center center;
        margin: -30px auto;
    }
}

@media (max-width: 576px) {
    .ecosystem-visualizer-wrapper {
        transform: scale(0.68);
        transform-origin: center center;
        margin: -55px auto;
    }
    
    .compliance-logos {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .logo-brand-container {
        gap: 6px;
    }
    .logo-company-img {
        height: 20px;
    }
    .logo-product-img {
        height: 24px;
    }
    .logo-badge {
        font-size: 0.5rem;
        padding: 1px 4px;
    }
    
    .ecosystem-visualizer-wrapper {
        transform: scale(0.55);
        transform-origin: center center;
        margin: -80px auto;
    }
}

/* Hide company profile on A4 printable brochure to avoid unnecessary paper print load */
@media print {
    .profile-section {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   15. CSS MEDIA QUERY PRINT - BROSUR SIAP CETAK (A4 TARGET)
   -------------------------------------------------------------------------- */
@media print {
    /* Hide all typical screen components */
    body, html {
        background: white !important;
        color: #000 !important;
        font-size: 12pt;
        width: 210mm;
        height: 297mm;
        margin: 0;
        padding: 0;
    }
    
    #bg-particles,
    .navbar,
    .hero-section,
    .ecosystem-section,
    .products-section,
    .roi-section,
    .compliance-section,
    .demo-section,
    .main-footer,
    .brochure-modal-toolbar {
        display: none !important;
    }
    
    /* Display and setup print page */
    .brochure-modal-overlay {
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
    }
    
    .brochure-modal-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    .brochure-print-area {
        background: white !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        color: #0f172a !important;
    }
    
    .brochure-page {
        width: 210mm !important;
        height: 297mm !important; /* Standar A4 */
        margin: 0 !important;
        padding: 20mm !important; /* 2cm margins per clinical reports standard */
        page-break-after: always !important;
        page-break-inside: avoid !important;
        position: relative !important;
        border: none !important;
        box-sizing: border-box !important;
        background: white !important;
    }
    
    .brochure-page:last-child {
        page-break-after: avoid !important;
    }
    
    /* Ensure styles render properly in black/white */
    .print-hero-section h1 {
        font-size: 28pt !important;
        color: #0f172a !important;
    }
    
    .print-prod-card {
        background: #f8fafc !important;
        border: 1px solid #cbd5e1 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .print-spec-table th {
        background-color: #e2e8f0 !important;
        color: #0f172a !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .print-spec-table td, .print-spec-table th {
        font-size: 9pt !important;
    }
    
    .print-ecosystem-visual-mock {
        background: #f8fafc !important;
        border: 1px solid #cbd5e1 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .print-hub-node-center {
        background: #10b981 !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
