/* Modern CSS Custom Reset & Color Variables */
:root {
    --color-bg: #F2F0E7;            /* Light Stone */
    --color-text: #4F4F4F;          /* Rich Bronze-Charcoal */
    --color-text-muted: #6B6B6B;
    --color-accent: #D5B47B;        /* Warm Gold */
    --color-accent-hover: #C4A168;
    --color-deep: #333333;          /* Charcoal Grey */
    --color-deep-light: #3D3D3D;
    --color-white: #FFFFFF;
    --color-border: rgba(79, 79, 79, 0.12);
    --color-card-bg: rgba(255, 255, 255, 0.65);
    --font-headers: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-premium: 0 12px 30px -10px rgba(79, 79, 79, 0.08);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    position: relative;
    overflow-x: hidden;
    background-color: var(--color-bg);
    background-image: 
        radial-gradient(var(--color-accent) 0.5px, transparent 0.5px), 
        radial-gradient(var(--color-accent) 0.5px, var(--color-bg) 0.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.98;
}

/* Ambient subtle geometric gradient behind layout */
.ambient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(circle at 80% 20%, rgba(213, 180, 123, 0.12) 0%, rgba(242, 240, 231, 0) 60%),
                radial-gradient(circle at 10% 70%, rgba(79, 79, 79, 0.05) 0%, rgba(242, 240, 231, 0) 50%);
    z-index: -1;
    pointer-events: none;
}

/* Typography Styles */
h1, h2, h3, h4 {
    font-family: var(--font-headers);
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Header & Sticky Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(242, 240, 231, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-premium);
    border-bottom: 1px solid rgba(79, 79, 79, 0.08);
    background: rgba(242, 240, 231, 0.85);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.brand-logo-img {
    height: 38px;
    width: auto;
    border-radius: 6px;
}

.brand-logo-svg {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 4px rgba(79, 79, 79, 0.15));
}

.brand-name {
    font-family: var(--font-headers);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.brand-name span {
    color: var(--color-accent);
    font-weight: 500;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.2rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

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

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headers);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-deep);
    box-shadow: 0 4px 14px rgba(213, 180, 123, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 180, 123, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-text);
}

.btn-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--color-deep);
    color: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
    background-color: var(--color-white);
    color: var(--color-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    transition: var(--transition-smooth);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* Container & Section Layouts */
section {
    padding: 8rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(79, 79, 79, 0) 0%, var(--color-border) 50%, rgba(79, 79, 79, 0) 100%);
    max-width: 1280px;
    margin: 0 auto;
}

/* ---------------------------------------------------- */
/* HERO SECTION                                         */
/* ---------------------------------------------------- */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 6rem;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.badge {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(215, 180, 123, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-deep);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-family: var(--font-headers);
}

.hero-headline {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-headline span {
    color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 580px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* SVG Crystal Data Stream Graphic (Hero Visualizer) */
.hero-visualizer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-container {
    width: 100%;
    height: 480px;
    max-width: 480px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* SVG Crystalline Animation */
.visualizer-svg {
    width: 85%;
    height: 85%;
}

/* Pulsing & Orbiting Animations for Crystalline Elements */
@keyframes pulse-gold {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.05) rotate(180deg); opacity: 1; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.8; }
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(0.9); opacity: 0.5; }
    50% { transform: translate(-10px, 15px) scale(1.1); opacity: 0.8; }
    100% { transform: translate(0, 0) scale(0.9); opacity: 0.5; }
}

@keyframes flow-line {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

@keyframes crystallize {
    0% { opacity: 0.3; stroke-width: 1px; }
    50% { opacity: 0.9; stroke-width: 2.5px; }
    100% { opacity: 0.3; stroke-width: 1px; }
}

.crystal-core {
    transform-origin: 50% 50%;
    animation: pulse-gold 25s infinite linear;
}

.crystal-orbit-1 {
    transform-origin: 50% 50%;
    animation: drift 12s infinite ease-in-out;
}

.crystal-orbit-2 {
    transform-origin: 50% 50%;
    animation: drift 16s infinite ease-in-out reverse;
}

.data-stream-line {
    stroke-dasharray: 12, 12;
    animation: flow-line 8s infinite linear;
}

.facet-line {
    animation: crystallize 6s infinite ease-in-out;
}

/* ---------------------------------------------------- */
/* ABOUT PALANOVUS (PARENT BRAND)                       */
/* ---------------------------------------------------- */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.section-header {
    max-width: 750px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin-top: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.studio-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.studio-description p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.studio-highlight {
    font-family: var(--font-headers);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.5rem;
    line-height: 1.5;
    margin: 1rem 0;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mv-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-accent);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px -12px rgba(79, 79, 79, 0.12);
    border-color: var(--color-accent);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mv-card h3 svg {
    color: var(--color-accent);
}

/* Pillars Block */
.pillars-title {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 2.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px -15px rgba(213, 180, 123, 0.35);
}

.pillar-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(215, 180, 123, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.pillar-card h4 {
    font-size: 1.25rem;
    color: var(--color-text);
}

/* ---------------------------------------------------- */
/* INTRODUCING PALAFLOW                                 */
/* ---------------------------------------------------- */
.palaflow-intro-section {
    background: radial-gradient(circle at 10% 20%, rgba(213, 180, 123, 0.06) 0%, transparent 40%);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.palaflow-intro-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.palaflow-intro-content h2 span {
    color: var(--color-accent);
}

.elevator-pitch {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.elevator-pitch strong {
    color: var(--color-text);
    font-weight: 600;
}

.palaflow-visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.visualizer-card {
    width: 100%;
    max-width: 480px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.visualizer-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px -15px rgba(213, 180, 123, 0.2);
}

.visualizer-header {
    background: rgba(79, 79, 79, 0.03);
    border-bottom: 1px solid var(--color-border);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visualizer-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.visualizer-header .dot.red { background-color: #FF5F56; }
.visualizer-header .dot.yellow { background-color: #FFBD2E; }
.visualizer-header .dot.green { background-color: #27C93F; }

.visualizer-title {
    font-family: var(--font-headers);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
}

.visualizer-body {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.mock-bubble {
    padding: 1.2rem;
    border-radius: 14px;
    position: relative;
    box-shadow: var(--shadow-inset);
}

.mock-bubble.whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border: 1.5px solid rgba(37, 211, 102, 0.2);
    border-top-left-radius: 2px;
    align-self: flex-start;
    max-width: 90%;
}

.mock-bubble.whatsapp p {
    font-size: 0.92rem;
    color: #1b5e20;
    font-style: italic;
    line-height: 1.5;
}

.bubble-meta {
    font-family: var(--font-headers);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.mock-bubble.whatsapp .bubble-meta {
    color: #2E7D32;
}

.mock-flow-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    margin: -0.3rem 0;
}

.arrow-svg {
    width: 60px;
    height: 100%;
}

.mock-bubble.output-whatsapp {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top-left-radius: 2px;
    align-self: flex-start;
    max-width: 90%;
    box-shadow: var(--shadow-premium);
}

.whatsapp-output-text {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.5;
}

.attachment-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(79, 79, 79, 0.05);
    border: 1px solid rgba(79, 79, 79, 0.1);
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    margin-top: 0.6rem;
    font-family: var(--font-headers);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text);
}

.attachment-label svg {
    color: var(--color-accent);
}

.mock-csv-sheet {
    background: var(--color-deep);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    align-self: flex-end;
    width: 95%;
    box-shadow: var(--shadow-premium);
}

.xlsx-meta {
    font-family: var(--font-headers);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.xlsx-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

.xlsx-table th {
    font-family: var(--font-headers);
    font-weight: 700;
    color: var(--color-accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.6rem;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.xlsx-table td {
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.xlsx-table tr:last-child td {
    border-bottom: none;
}

/* ---------------------------------------------------- */
/* PALAFLOW DEEP DIVE (FEATURE MATRIX & INTERACTIVE)    */
/* ---------------------------------------------------- */
.deep-dive-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 2.2rem 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 16px 32px -10px rgba(79, 79, 79, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(215, 180, 123, 0.12);
    color: var(--color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Zero-Liability Guarantee Highlight Block */
.guarantee-block {
    background: var(--color-deep);
    color: var(--color-bg);
    border-radius: 20px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.guarantee-block::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(213, 180, 123, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.guarantee-label h4 {
    color: var(--color-accent);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.guarantee-label h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 800;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.guarantee-text p {
    color: rgba(242, 240, 231, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.guarantee-quote {
    font-family: var(--font-headers);
    font-style: italic;
    border-left: 2px solid var(--color-accent);
    padding-left: 1.5rem;
    font-size: 1.15rem;
    color: var(--color-accent);
}

/* ---------------------------------------------------- */
/* INTERACTIVE DEMO PLAYGROUND (WOW ELEMENT)            */
/* ---------------------------------------------------- */
.playground-title {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
}

.playground-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.playground-container {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.playground-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-height: 480px;
}

.col-title {
    font-family: var(--font-headers);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.6rem;
}

.col-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-inset);
    position: relative;
    overflow: hidden;
}

/* WhatsApp Simulation Panel */
.whatsapp-bubble {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    align-self: flex-start;
    max-width: 90%;
    font-size: 0.95rem;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.whatsapp-bubble-photo {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.5rem;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.voice-note-ui {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.2rem;
}

.vn-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--color-deep);
    transition: var(--transition-smooth);
}

.vn-play-btn:hover {
    transform: scale(1.1);
}

.vn-waves {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-grow: 1;
    height: 25px;
}

.vn-bar {
    width: 3px;
    background-color: var(--color-accent);
    border-radius: 3px;
    transition: height 0.3s ease;
}

.vn-bar:nth-child(1) { height: 8px; }
.vn-bar:nth-child(2) { height: 16px; }
.vn-bar:nth-child(3) { height: 12px; }
.vn-bar:nth-child(4) { height: 20px; }
.vn-bar:nth-child(5) { height: 14px; }
.vn-bar:nth-child(6) { height: 24px; }
.vn-bar:nth-child(7) { height: 18px; }
.vn-bar:nth-child(8) { height: 10px; }
.vn-bar:nth-child(9) { height: 6px; }

.voice-note-ui.playing .vn-bar {
    animation: bounce-wave 0.8s ease-in-out infinite alternate;
}

.voice-note-ui.playing .vn-bar:nth-child(1) { animation-delay: 0.1s; }
.voice-note-ui.playing .vn-bar:nth-child(2) { animation-delay: 0.3s; }
.voice-note-ui.playing .vn-bar:nth-child(3) { animation-delay: 0.2s; }
.voice-note-ui.playing .vn-bar:nth-child(4) { animation-delay: 0.5s; }
.voice-note-ui.playing .vn-bar:nth-child(5) { animation-delay: 0.4s; }
.voice-note-ui.playing .vn-bar:nth-child(6) { animation-delay: 0.6s; }
.voice-note-ui.playing .vn-bar:nth-child(7) { animation-delay: 0.3s; }
.voice-note-ui.playing .vn-bar:nth-child(8) { animation-delay: 0.2s; }

@keyframes bounce-wave {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1.3); }
}

.scribble-img-sim {
    border: 1px dashed var(--color-accent);
    background: #FAFAFA;
    padding: 0.8rem;
    border-radius: 6px;
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: #555555;
    position: relative;
    line-height: 1.4;
}

/* Gateway Verification Panel (Middle) */
.gateway-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(213, 180, 123, 0.05) 50%, transparent 100%);
    border-radius: 16px;
    padding: 1rem;
}

.gateway-status {
    font-family: var(--font-headers);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F57C00;
    background: rgba(255, 152, 0, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.gateway-status.approved {
    color: #2E7D32;
    background: rgba(76, 175, 80, 0.1);
}

.gateway-core-hex {
    width: 90px;
    height: 90px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gateway-hex-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--color-border);
    stroke-width: 2.5;
    transition: var(--transition-smooth);
    animation: rotate-slow 20s infinite linear;
}

.gateway-core-hex:hover .gateway-hex-bg {
    stroke: var(--color-accent);
    transform: scale(1.08);
}

.gateway-hex-inner {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    transform: rotate(45deg);
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(213, 180, 123, 0.4);
    color: var(--color-deep);
}

.gateway-hex-inner svg {
    transform: rotate(-45deg);
    transition: var(--transition-bounce);
}

.gateway-core-hex.approved .gateway-hex-inner {
    background-color: #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.gateway-core-hex.approved .gateway-hex-inner svg {
    transform: rotate(-45deg) scale(1.1);
}

.gateway-btn {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.9rem 1.4rem;
    border-radius: 30px;
    border: 2px solid var(--color-accent);
    background: var(--color-accent);
    color: var(--color-deep);
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gateway-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(213, 180, 123, 0.35);
}

.gateway-btn.approved {
    background: #4CAF50;
    border-color: #4CAF50;
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(76, 175, 80, 0.3);
}

.demo-lines-svg {
    width: 100%;
    height: 60px;
}

.demo-flow-line {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 2.5;
    stroke-dasharray: 8 8;
}

.demo-flow-line.active {
    stroke: var(--color-accent);
    animation: flow-line 2s infinite linear;
}

.demo-flow-line.success {
    stroke: #4CAF50;
    animation: flow-line 1.2s infinite linear;
}

/* Crystallized Structured Output Panel (Right) */
.output-lock-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 240, 231, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.output-lock-screen.unlocked {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
}

.output-lock-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(79, 79, 79, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    border: 1px dashed var(--color-border);
    margin-bottom: 0.5rem;
}

.output-success-banner {
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #2E7D32;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-bounce);
}

.output-success-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Order Output Views (Tabs) */
.output-tabs {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.5rem;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-headers);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.tab-content {
    display: none;
    flex-grow: 1;
    font-size: 0.85rem;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
}

.json-editor {
    background: #2D2D2D;
    color: #E6E6E6;
    font-family: 'Courier New', Courier, monospace;
    padding: 1rem;
    border-radius: 8px;
    overflow-y: auto;
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.4;
}

.json-editor span.key { color: #88C6FF; }
.json-editor span.val-str { color: #A5D6FF; }
.json-editor span.val-num { color: #FF9E64; }
.json-editor span.val-bool { color: #FF757F; }

.invoice-sheet {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--color-deep);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--color-deep);
    padding-bottom: 0.5rem;
}

.invoice-header h4 {
    font-size: 0.95rem;
    font-weight: 800;
}

.invoice-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    font-size: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--color-border);
}

.invoice-row.invoice-total {
    border-bottom: none;
    border-top: 1.5px solid var(--color-deep);
    font-weight: 700;
    margin-top: auto;
    padding-top: 0.5rem;
}

.reset-demo-btn {
    font-family: var(--font-headers);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.reset-demo-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.reset-demo-btn:hover {
    color: var(--color-text);
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ---------------------------------------------------- */
/* PRICING & DEMO CONTEXT                               */
/* ---------------------------------------------------- */
.pricing-section {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    padding: 5rem 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    max-width: 1000px;
    margin: 8rem auto;
}

.pricing-section h2 {
    font-size: 2.8rem;
    max-width: 700px;
    line-height: 1.15;
}

.pricing-section p {
    max-width: 600px;
    font-size: 1.15rem;
    line-height: 1.75;
}

.pricing-taglines {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-tagline-item {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-deep);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-tagline-item svg {
    color: var(--color-accent);
}

.cta-pulse-wrapper {
    position: relative;
}

.cta-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-accent);
    animation: pulse-ring 2.2s infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 0.4; }
    100% { transform: scale(1.18); opacity: 0; }
}

/* ---------------------------------------------------- */
/* FUTURE OF PALANOVUS                                  */
/* ---------------------------------------------------- */
.future-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.future-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.future-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
}

.future-card-stack {
    position: relative;
    width: 100%;
    height: 380px;
    max-width: 380px;
}

.f-stack-card {
    position: absolute;
    width: 85%;
    height: 240px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-bounce);
}

.f-stack-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
    border-top: 3px solid var(--color-accent);
}

.f-stack-card:nth-child(2) {
    top: 40px;
    left: 40px;
    z-index: 2;
    opacity: 0.65;
    background: #FAFAFA;
}

.f-stack-card:nth-child(3) {
    top: 80px;
    left: 80px;
    z-index: 1;
    opacity: 0.35;
    background: #F5F5F5;
}

.future-card-stack:hover .f-stack-card:nth-child(1) { transform: translate(-5px, -5px); }
.future-card-stack:hover .f-stack-card:nth-child(2) { transform: translate(15px, 5px) scale(1.02); opacity: 0.9; z-index: 4; }
.future-card-stack:hover .f-stack-card:nth-child(3) { transform: translate(30px, 15px) scale(1.04); opacity: 0.6; }

/* ---------------------------------------------------- */
/* PREMIUM FOOTER                                       */
/* ---------------------------------------------------- */
.footer {
    background-color: var(--color-deep);
    color: var(--color-bg);
    padding: 6rem 2rem 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .brand-name {
    color: var(--color-white);
}

.footer-brand p {
    color: rgba(242, 240, 231, 0.7);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-col h5 {
    font-family: var(--font-headers);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    list-style: none;
}

.footer-link-item a {
    color: rgba(242, 240, 231, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-link-item a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(242, 240, 231, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 0.85rem;
    color: rgba(242, 240, 231, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

/* ---------------------------------------------------- */
/* RESPONSIVE DESIGN (MEDIA QUERIES)                    */
/* ---------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 8rem;
    }

    .hero-info {
        align-items: center;
    }

    .hero-sub {
        max-width: 650px;
    }

    .hero-headline {
        font-size: 3.2rem;
    }

    .hero-visualizer {
        margin: 0 auto;
        width: 100%;
        max-width: 480px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .palaflow-intro-section {
        grid-template-columns: 1fr;
    }

    .pf-statements {
        order: 2;
    }

    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .playground-container {
        grid-template-columns: 1fr;
        padding: 1.8rem;
    }

    .gateway-col {
        padding: 2rem 1rem;
        background: rgba(213, 180, 123, 0.03);
        border: 1px solid var(--color-border);
        border-radius: var(--border-radius);
    }

    .demo-lines-svg {
        display: none;
    }

    .guarantee-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem;
    }

    .future-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .future-graphics {
        margin-top: 2rem;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-premium);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 3rem 2rem;
        margin: 4rem auto;
    }

    .pricing-section h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==================================================== */
/* MULTILINGUAL LOCALIZATION & SYSTEM CONTROLS          */
/* ==================================================== */

/* Language Toggle Core Rules */
html.lang-en .lang-es { display: none !important; }
html.lang-es .lang-en { display: none !important; }

/* Language Switcher Styling */
.lang-switcher-container {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.25rem 0.4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-inset);
    transition: var(--transition-smooth);
}

.lang-switcher-container:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-premium);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-headers);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    color: var(--color-deep);
}

/* Dynamic Active Button Styles */
html.lang-en .lang-btn.en,
html.lang-es .lang-btn.es {
    background-color: var(--color-accent);
    color: var(--color-deep);
    box-shadow: 0 2px 8px rgba(213, 180, 123, 0.25);
}

/* Adjustments for Mobile Menu Drawer */
@media (max-width: 991px) {
    .nav-menu .lang-switcher-container {
        margin: 1.5rem auto 0 auto;
        display: inline-flex;
        align-self: center;
        max-width: 140px;
    }
}


/* ---------------------------------------------------- */
/* MOCKUP VISUALIZER (NEW)                              */
/* ---------------------------------------------------- */
.mockup-shell {
    position: relative;
    overflow: hidden;
    padding: 0;
    background-color: #efeae2;
    width: 100%;
}
.mockup-header {
    background-color: #075e54;
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}
.mockup-bot-icon {
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mockup-bot-info {
    display: flex;
    flex-direction: column;
}
.mockup-bot-name {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.mockup-bot-status {
    font-size: 0.625rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
}
.mockup-pattern {
    pointer-events: none;
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-color: black;
    z-index: 0;
}
.mockup-content {
    position: relative;
    z-index: 10;
    padding: 1rem 1.5rem 2rem 1.5rem;
}
.mockup-chat-container {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mockup-bubble-right {
    display: flex;
    justify-content: flex-end;
}
.mockup-bubble-right-inner {
    border-radius: 12px;
    border-top-right-radius: 0;
    background-color: #d9fdd3;
    padding: 0.75rem;
    font-size: 15px;
    line-height: 1.375;
    color: #111b21;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    max-width: 85%;
}
.mockup-time {
    font-size: 10px;
    color: #667781;
    text-align: right;
    margin-top: 0.25rem;
    line-height: 1;
}
.mockup-bubble-left {
    display: flex;
    justify-content: flex-start;
}
.mockup-bubble-left-inner {
    border-radius: 12px;
    border-top-left-radius: 0;
    background-color: white;
    padding: 0.75rem;
    font-size: 15px;
    line-height: 1.375;
    color: #111b21;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    max-width: 95%;
}
.mockup-extracted-title {
    font-weight: 600;
    color: #075e54;
    margin-bottom: 0.375rem;
}
.mockup-extracted-item {
    margin-bottom: 0.375rem;
}
.mockup-file {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    background-color: #f0f2f5;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #54656f;
    width: 100%;
    border: 1px solid #f1f5f9;
    box-sizing: border-box;
}
.mockup-table-container {
    margin-top: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background-color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.mockup-table-header {
    background-color: #002D62;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mockup-table-dots {
    display: flex;
    gap: 0.375rem;
}
.mockup-table-dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.2);
}
.mockup-table-subheader {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    background-color: #f8fafc;
    padding: 0.5rem 1rem;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    border-bottom: 1px solid var(--color-border);
}
.mockup-table-col-2 {
    grid-column: span 2 / span 2;
}
.mockup-table-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
    color: #002D62;
    border-bottom: 1px solid var(--color-border);
}
.mockup-table-row:last-child {
    border-bottom: none;
}
.mockup-table-cell-bold {
    grid-column: span 2 / span 2;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
