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

:root {
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-color: #e5e7eb;
    --bg-page: #ffffff;
    --bg-section: #fafafa;
    --accent: #374151;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.08);
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-page);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Unified content container for consistent left/right alignment */
.container-unified {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Make sections spacious and aligned */
.section {
    margin: 80px 0; /* more breathing room */
    page-break-inside: avoid;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border-left: none;
    text-transform: none;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
}

/* White Paper Grid - Card-based Design like Role & Module */
.whitepaper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.whitepaper-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    background: var(--bg-page);
    transition: all 0.2s ease;
    overflow: hidden;
}

.whitepaper-card:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.whitepaper-header {
    padding: 20px;
    background: var(--bg-section);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.whitepaper-title {
    flex: 1;
    margin-right: 12px;
}

.dark .whitepaper-header {
    background: var(--bg-section);
    color: var(--text-primary);
}

.whitepaper-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-page);
}

.whitepaper-content.active {
    padding: 20px;
    max-height: 1000px;
}


.whitepaper-status {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Load More Button */
#load-more-btn {
    transition: all 0.3s ease;
}

#load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#load-more-btn:active {
    transform: translateY(0);
}

/* Technical Code Styling */
.whitepaper-document code {
    background: #1a1a1a;
    color: #e6e6e6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    border: 1px solid #333;
    display: inline-block;
    margin: 0 2px;
}

.whitepaper-document code:hover {
    background: #2a2a2a;
    border-color: #444;
}

/* Dark mode adjustments for code */
@media (prefers-color-scheme: dark) {
    .whitepaper-document code {
        background: #0a0a0a;
        color: #f0f0f0;
        border-color: #222;
    }
    
    .whitepaper-document code:hover {
        background: #1a1a1a;
        border-color: #333;
    }
}

/* DNA Helix Diagram Styling */
.dna-helix-container {
    margin: 20px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.dna-helix {
    max-width: 100%;
    height: auto;
}

/* Dark mode for DNA helix */
@media (prefers-color-scheme: dark) {
    .dna-helix-container {
        background: #1e293b;
        border-color: #334155;
    }
}

/* Node Legend Horizontal Layout */
.node-legend-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.node-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.node-item:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.node-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.node-item span {
    font-size: 14px;
    color: var(--text-primary);
}

/* Dark mode for node legend */
@media (prefers-color-scheme: dark) {
    .node-item {
        background: #1e293b;
        border-color: #334155;
    }
    
    .node-item:hover {
        background: #334155;
    }
    
    .node-color {
        border-color: #1e293b;
    }
}

/* Blockchain Architecture Diagram Styling */
.blockchain-architecture-container {
    margin: 20px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow-x: auto;
}

.blockchain-architecture {
    max-width: 100%;
    height: auto;
}

/* Dark mode for blockchain architecture */
@media (prefers-color-scheme: dark) {
    .blockchain-architecture-container {
        background: #1e293b;
        border-color: #334155;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .node-legend-horizontal {
        flex-direction: column;
        gap: 12px;
    }
    
    .node-item {
        width: 100%;
        justify-content: center;
    }
    
    .dna-helix-container {
        padding: 15px;
    }
    
    .dna-helix {
        width: 100%;
        height: auto;
    }
    
    .blockchain-architecture-container {
        padding: 15px;
    }
    
    .blockchain-architecture {
        width: 100%;
        height: auto;
    }
}

.whitepaper-document {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 30px;
    padding: 30px;
    background: #fefefe;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dark .whitepaper-document {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

.whitepaper-document h2 {
    color: var(--text-primary);
    margin: 0 0 20px 0;
    font-size: 1.5em;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.whitepaper-document h3 {
    color: var(--text-primary);
    margin: 25px 0 15px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.whitepaper-document h4 {
    color: var(--text-primary);
    margin: 20px 0 10px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.whitepaper-document h5 {
    color: var(--text-primary);
    margin: 15px 0 8px 0;
    font-size: 1em;
    font-weight: 600;
}

.whitepaper-document p {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

.whitepaper-document hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

.whitepaper-document a:not(.inline-flex) {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.whitepaper-document a:not(.inline-flex):hover {
    color: var(--text-primary);
}


.whitepaper-document strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Whitepaper content styling - konsisten dengan project-description */
.whitepaper-document .content-points {
    margin: 15px 0;
}

.whitepaper-document .content-points ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.whitepaper-document .content-points li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.whitepaper-document .content-points li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.whitepaper-document .content-steps {
    margin: 20px 0;
}

.whitepaper-document .content-steps .step {
    margin: 16px 0;
    padding: 16px;
    background: transparent;
    border-radius: 0;
    border-left: none;
}

.dark .whitepaper-document .content-steps .step {
    background: transparent;
}

.whitepaper-document .content-highlight {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 16px 0;
}

.dark .whitepaper-document .content-highlight {
    background: transparent;
    border: none;
}

/* Whitepaper Vertical Timeline */
.whitepaper-timeline {
    position: relative;
    margin: 30px 0;
    padding-left: 0;
}

.whitepaper-timeline::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e5e7eb;
}

.dark .whitepaper-timeline::before {
    background-color: #374151;
}

.whitepaper-timeline-item {
    position: relative;
    padding-left: 48px;
    margin: 20px 0 30px 0;
}

.whitepaper-timeline-dot {
    position: absolute;
    left: 8px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #f0f9ff;
    color: #0369a1;
    border: 2px solid #bae6fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.dark .whitepaper-timeline-dot {
    background-color: #0c4a6e;
    color: #f0f9ff;
    border-color: #0284c7;
}

.whitepaper-timeline-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-primary);
}

.whitepaper-timeline-duration {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    font-style: italic;
}

.whitepaper-timeline-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.whitepaper-timeline-list li {
    position: relative;
    padding-left: 16px;
    margin: 6px 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.whitepaper-timeline-list li:before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.whitepaper-timeline-deliverable {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

/* Whitepaper tables */
.whitepaper-document .table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 0;
    border: none;
}

.whitepaper-document table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 800px;
    border-radius: 8px;
    overflow: hidden;
}

.whitepaper-document thead th {
    background: var(--bg-section);
    color: var(--text-primary);
    font-weight: 600;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid var(--border-color);
}

.whitepaper-document th,
.whitepaper-document td {
    border: 1px solid var(--border-color);
    padding: 12px 8px;
    vertical-align: top;
    line-height: 1.4;
}

.whitepaper-document tbody tr:nth-child(even) {
    background: transparent;
}

.dark .whitepaper-document tbody tr:nth-child(even) {
    background: transparent;
}

.whitepaper-document tbody tr:hover {
    background: transparent;
}

.dark .whitepaper-document tbody tr:hover {
    background: transparent;
}

/* Responsive table */
@media (max-width: 768px) {
    .whitepaper-document table {
        font-size: 11px;
    }
    
    .whitepaper-document th,
    .whitepaper-document td {
        padding: 8px 4px;
    }
}

/* Responsive whitepaper document */
@media (max-width: 768px) {
    .whitepaper-document {
        padding: 20px;
        margin-top: 20px;
    }
    
    .whitepaper-document p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .whitepaper-document .content-points li {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .whitepaper-document h2 {
        font-size: 1.3em;
    }
    
    .whitepaper-document h3 {
        font-size: 1.2em;
    }
    
    .whitepaper-document h4 {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .whitepaper-document {
        padding: 15px;
    }
    
    .whitepaper-document p {
        font-size: 13px;
    }
    
    .whitepaper-document .content-points li {
        font-size: 13px;
    }
}

.whitepaper-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--bg-section);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whitepaper-icon.active {
    transform: rotate(180deg);
    background: var(--accent);
    color: #ffffff;
}
#whitepaper-toggle:hover {
    background: linear-gradient(180deg, #f1f5f9, #e5e7eb);
}
#whitepaper-toggle.active {
    background:
        radial-gradient(30% 30% at 100% 100%, rgba(37,99,235,0.16) 0%, rgba(37,99,235,0.00) 65%),
        #ffffff; /* keep white while selected */
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}
.dark #whitepaper-toggle {
    background:
        radial-gradient(30% 30% at 100% 100%, rgba(59,130,246,0.10) 0%, rgba(59,130,246,0.00) 60%),
        linear-gradient(180deg, #111827, #0f172a);
    color: #e5e7eb;
    border: 1px solid rgba(255,255,255,0.10);
}
.dark #whitepaper-toggle.active {
    background:
        radial-gradient(30% 30% at 100% 100%, rgba(59,130,246,0.22) 0%, rgba(59,130,246,0.00) 65%),
        #0f172a; /* subtle dark base */
    color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.18);
}

/* Override generic focus outline for this toggle to be thin and gray */
#whitepaper-toggle:focus {
    outline: 1px solid rgba(0,0,0,0.20) !important;
    outline-offset: 0 !important;
}
.dark #whitepaper-toggle:focus {
    outline: 1px solid rgba(255,255,255,0.25) !important;
}

.subsection-title {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 12px 0;
    color: var(--accent);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
}

/* Timeline Toggle */
.timeline-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
    padding: 16px;
    background: var(--bg-section);
    border-radius: 8px;
}

/* Fast Mode Switcher - Larger components */
.toggle {
    position: relative;
    display: inline-block;
    width: 80px; /* Increased from default */
    height: 44px; /* Increased from default */
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 44px; /* Increased border radius */
}

.slider:before {
    position: absolute;
    content: "";
    height: 36px; /* Increased from default */
    width: 36px; /* Increased from default */
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #1f2937;
}

input:checked + .slider:before {
    transform: translateX(36px); /* Increased from default */
}

/* Fast Mode Badge - Larger */
.fast-badge {
    background-color: #1f2937;
    color: white;
    padding: 8px 16px; /* Increased padding */
    border-radius: 20px; /* Increased border radius */
    font-size: 14px; /* Increased font size */
    font-weight: 600;
    white-space: nowrap;
}

/* Switcher container - Larger spacing */
.fast-badge-container {
    min-width: 140px; /* Increased from default */
    height: 44px; /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mode description - Larger text */
#mode-desc-line {
    font-size: 14px; /* Increased from 12px */
    line-height: 1.5;
}

.fast-badge.active {
    display: inline-block;
}

/* Container untuk fast-badge agar layout tetap stabil */
.fast-badge-container {
    min-width: 80px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Document Table */
.doc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13px;
}

.doc-table th {
    background: var(--bg-section);
    padding: 10px 8px;
    text-align: left;
    font-weight: bold;
    border: 1px solid var(--border-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-table td {
    padding: 8px;
    border: 1px solid var(--border-color);
    vertical-align: top;
}

.doc-table tr:nth-child(even) {
    background: var(--bg-section);
}

.doc-table .desc {
    color: var(--text-secondary);
    font-size: 12px;
    max-width: 300px;
}

.doc-table .price {
    font-weight: bold;
    white-space: nowrap;
    text-align: right;
}

/* Info Button */
.info-btn {
    background: none;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    position: relative;
    margin-left: 8px;
    transition: all 0.2s ease;
    z-index: 1; /* keep low so popover overlays */
}

.info-btn:hover {
    color: var(--text-primary);
}

/* Flowbite Popover Styling */
[data-popover] {
    z-index: 2147483647 !important; /* max-safe z-index */
}

/* Ensure popover content is readable */
[data-popover] .p-4 {
    color: #374151;
}

[data-popover] .dark .p-4 {
    color: #d1d5db;
}

/* Table Layout Control */
.pricing-row table {
    table-layout: fixed;
    width: 100%;
}

/* Ensure consistent table layout */
table.table-fixed {
    table-layout: fixed;
    width: 100%;
}

/* Force table cells to respect their width */
table.table-fixed td {
    overflow: hidden;
    word-wrap: break-word;
}

/* Force text wrapping in description */
.pricing-row .mb-2 {
    white-space: normal;
    hyphens: auto;
}

/* Negative price styling - soft red with grayish tone */
.pricing-row td:last-child {
    position: relative;
}

/* Specific styling for Demo row negative price */
.demo-row td:nth-child(2) {
    color: #b91c1c !important; /* Soft red with grayish tone */
    font-weight: 600;
}

/* Special styling for Development 2 service fee row */
.dev2-service-fee {
    background-color: #fefce8 !important; /* More soft yellow */
    border-left: 4px solid #fbbf24 !important; /* More soft orange */
    padding-left: 12px !important;
}

.dev2-service-fee .font-semibold {
    color: #92400e !important;
    font-weight: 700 !important;
}

/* Alternative: Style any negative price */
.pricing-row td:nth-child(2):contains("-") {
    color: #b91c1c; /* Soft red with grayish tone */
}

/* Highlight Cards */
.highlight-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    background: var(--bg-page);
    transition: all 0.2s ease;
}

.highlight-card:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.highlight-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.project-description {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.project-description p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.project-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Timeline yang benar - memisahkan elements dari content */
.timeline-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Timeline Header - Fixed Position */
.timeline-header {
    position: relative;
    margin-bottom: 40px;
}

.timeline-line {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-marker {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    z-index: 10;
    flex-shrink: 0;
}

.timeline-connector {
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #e5e7eb 0,
        #e5e7eb 4px,
        transparent 4px,
        transparent 8px
    );
    flex: 1;
    margin: 0 8px;
}

/* Timeline Content - Below the line */
.timeline-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

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

.timeline-item h3 {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 640px) {
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .timeline-line {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-connector {
        display: none;
    }
}

/* Project Options Pills */
.project-option-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.project-option-pill:hover {
    background-color: #e5e7eb;
    border-color: #d1d5db;
}

.project-option-pill input[type="checkbox"] {
    display: none;
}

.pill-text {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

/* Selected state - menggunakan warna monokrom */
.project-option-pill input[type="checkbox"]:checked {
    background-color: #1f2937;
    border-color: #1f2937;
}

.project-option-pill input[type="checkbox"]:checked + .pill-text {
    color: white;
    font-weight: 600;
}

/* Responsive pills */
@media (max-width: 640px) {
    .project-option-pill {
        padding: 6px 12px;
    }
    
    .pill-text {
        font-size: 13px;
    }
}

/* Process Steps (old) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background: var(--bg-page);
    transition: all 0.2s ease;
}

.step-card:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: var(--bg-section);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

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

/* Role Grid */
.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.role-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background: var(--bg-page);
    transition: all 0.2s ease;
}

.role-card:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.role-name {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    font-size: 16px;
}

.action-chip {
    display: inline-block;
    background: var(--bg-section);
    padding: 6px 12px;
    margin: 3px;
    border-radius: 16px;
    font-size: 12px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.action-chip:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

/* FAQ Grid - Card-based Design like Role & Module */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.faq-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    background: var(--bg-page);
    transition: all 0.2s ease;
    overflow: hidden;
}

.faq-card:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 20px;
    background: var(--bg-section);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    flex: 1;
    margin-right: 12px;
}

.dark .faq-header {
    background: var(--bg-section);
    color: var(--text-primary);
}

.faq-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-page);
}

.faq-content.active {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    font-weight: 400;
}

.dark .faq-content p {
    color: #cbd5e1;
}

/* FAQ Content Structure */
.faq-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.faq-content .content-single {
    margin-bottom: 20px;
}

.faq-content .content-points {
    margin: 16px 0;
}

.faq-content .content-points ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.faq-content .content-points li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 24px;
}

.faq-content .content-points li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.faq-content .content-points li:last-child {
    border-bottom: none;
}

.dark .faq-content .content-points li {
    border-bottom-color: #374151;
}

.faq-content .content-highlight {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.dark .faq-content .content-highlight {
    background: #1e293b;
    border-color: #334155;
}

.faq-content .content-buttons {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.faq-content .content-btn {
    padding: 8px 16px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.faq-content .content-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.faq-content .content-btn.secondary {
    background: #6b7280;
}

.faq-content .content-btn.secondary:hover {
    background: #4b5563;
}

.faq-content .content-steps {
    counter-reset: step-counter;
}

.faq-content .content-steps .step {
    counter-increment: step-counter;
    margin: 12px 0;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    position: relative;
    padding-left: 48px;
}

.faq-content .content-steps .step:before {
    content: counter(step-counter);
    position: absolute;
    left: 16px;
    top: 12px;
    background: #3b82f6;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.dark .faq-content .content-steps .step {
    background: #1e293b;
    border-left-color: #2563eb;
}

.dark .faq-content .content-steps .step:before {
    background: #2563eb;
}

/* Responsive FAQ content */
@media (max-width: 768px) {
    .faq-content .content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-content .content-buttons {
        flex-direction: column;
    }
    
    .faq-content .content-btn {
        text-align: center;
    }
}

.faq-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    color: #64748b;
    background: #f1f5f9;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dark .faq-icon {
    color: #94a3b8;
    background: #374151;
}

.faq-icon.active {
    transform: rotate(180deg);
    background: #3b82f6;
    color: #ffffff;
}

.dark .faq-icon.active {
    background: #2563eb;
}

/* Contact Section */
.contact-info {
    background: var(--bg-section);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

/* Action Buttons */
.action-buttons {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-section);
    border-radius: 16px;
}

.btn {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-page);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 8px;
    display: inline-block;
}

.btn:hover {
    background: var(--bg-section);
    border-color: var(--text-secondary);
}

.btn-primary {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--text-secondary);
    border-color: var(--text-secondary);
}

/* Search highlight */
.search-hit {
    outline: 2px solid #2563eb; /* blue-600 */
    outline-offset: 2px;
    background: rgba(37, 99, 235, 0.08);
    transition: background 300ms ease;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
}

.notice-bar {
    background: var(--bg-section);
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin: 20px 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large tablets and small desktops (1024px and down) */
@media (max-width: 1024px) {
    .main-container {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .container-unified {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .timeline-container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .section {
        width: 100%;
        padding: 0 20px;
    }
}

/* Tablets (768px and down) */
@media (max-width: 768px) {
    .main-container {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .container-unified {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .timeline-container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    body {
        font-size: 14px;
    }

    .action-buttons {
        padding: 20px;
    }

    .section {
        width: 100%;
        padding: 0 15px;
        margin: 60px 0;
    }

    .section-title {
        font-size: 18px;
    }

    .process-steps,
    .role-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .timeline-toggle {
        flex-direction: column;
        gap: 12px;
    }

    .doc-table {
        font-size: 11px;
    }

    .doc-table th,
    .doc-table td {
        padding: 6px;
    }
    
    /* Hero section mobile */
    .py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-16 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Pricing table mobile */
    .overflow-x-auto {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Project options pills mobile */
    .project-option-pill {
        padding: 6px 12px;
        margin-bottom: 8px;
    }
    
    .pill-text {
        font-size: 13px;
    }
    
    /* Fast mode switcher mobile */
    .toggle {
        width: 60px;
        height: 34px;
    }
    
    .slider:before {
        height: 26px;
        width: 26px;
    }
    
    input:checked + .slider:before {
        transform: translateX(26px);
    }
    
    .fast-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .fast-badge-container {
        min-width: 100px;
        height: 34px;
    }
}

/* Mobile landscape (640px and down) */
@media (max-width: 640px) {
    .main-container {
        width: 100%;
        max-width: 100%;
        padding: 15px 10px;
    }
    
    .container-unified {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .timeline-container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .section {
        width: 100%;
        padding: 0 10px;
        margin: 40px 0;
    }
    
    .section-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    /* Hero section */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .text-lg {
        font-size: 1rem;
    }
    
    /* Search form mobile */
    .max-w-md {
        max-width: 100%;
    }
    
    /* Timeline mobile - vertical */
    .timeline-header { display: none; }
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
    }
    .timeline-content::before {
        content: "";
        position: absolute;
        left: 16px;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: #e5e7eb;
    }
    .dark .timeline-content::before { background-color: #374151; }
    .timeline-line { display: none; }
    .timeline-connector { display: none; }
    .timeline-item {
        position: relative;
        padding-left: 48px;
        margin: 12px 0 20px 0;
        text-align: left;
    }
    .timeline-item::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 6px;
        width: 14px;
        height: 14px;
        border-radius: 9999px;
        background-color: #f9fafb;
        border: 2px solid #e5e7eb;
        box-sizing: border-box;
    }
    .dark .timeline-item::before {
        background-color: #111827;
        border-color: #374151;
    }
    
    /* Pricing table mobile - horizontal scroll */
    .table-fixed {
        min-width: 600px;
    }
    
    .pricing-row td:first-child {
        width: 60%;
        min-width: 200px;
    }
    
    .pricing-row td:nth-child(2) {
        width: 25%;
        min-width: 100px;
    }
    
    .pricing-row td:last-child {
        width: 15%;
        min-width: 80px;
    }
    
    /* Project options pills - stack vertically */
    .flex-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    
    .project-option-pill {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }
    
    /* Fast mode switcher - stack vertically */
    .flex.items-center.justify-center {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Comparison grid mobile */
    .grid.grid-cols-1.md\\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* FAQ mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-header {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-content {
        padding: 0 20px;
    }
    
    .faq-content.active {
        padding: 20px;
    }

    .faq-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    /* White Paper mobile */
    .whitepaper-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .whitepaper-header {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .whitepaper-content {
        padding: 0 20px;
    }
    
    .whitepaper-content.active {
        padding: 20px;
    }

    .whitepaper-input-group {
        flex-direction: column;
    }

    .whitepaper-input {
        min-width: auto;
    }

    .whitepaper-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* Small mobile (480px and down) */
@media (max-width: 480px) {
    .main-container {
        width: 100%;
        max-width: 100%;
        padding: 10px 8px;
    }
    
    .container-unified {
        width: 100%;
        max-width: 100%;
        padding: 0 8px;
    }
    
    .timeline-container {
        width: 100%;
        max-width: 100%;
        padding: 0 8px;
    }
    
    .section {
        width: 100%;
        padding: 0 8px;
        margin: 30px 0;
    }
    
    /* Hero section small mobile */
    h1 {
        font-size: 1.75rem !important;
    }
    
    .text-lg {
        font-size: 0.9rem;
    }
    
    /* Search form small mobile */
    .p-4 {
        padding: 0.75rem;
    }
    
    .ps-10 {
        padding-left: 2.5rem;
    }
    
    /* Pricing table small mobile */
    .pricing-row td {
        padding: 8px 4px;
    }
    
    .pricing-row .mb-2 {
        max-width: 150px;
        font-size: 12px;
    }
    
    /* Project description mobile */
    .project-description {
        margin: 20px auto 0;
        padding: 0 10px;
    }
    
    .project-description p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Action buttons mobile */
    .action-buttons {
        padding: 15px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
        margin: 4px;
        display: block;
        width: 100%;
        margin-bottom: 8px;
    }
    
    /* Footer mobile */
    .footer {
        font-size: 11px;
        padding: 15px 10px;
    }
    
    /* Notice bar mobile */
    .notice-bar {
        font-size: 11px;
        padding: 8px;
    }
}

/* Extra small mobile (320px and down) */
@media (max-width: 320px) {
    .main-container {
        width: 100%;
        max-width: 100%;
        padding: 8px 5px;
    }
    
    .container-unified {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .timeline-container {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .section {
        width: 100%;
        padding: 0 5px;
        margin: 20px 0;
    }
    
    /* Hero section extra small */
    h1 {
        font-size: 1.5rem !important;
    }
    
    .text-lg {
        font-size: 0.85rem;
    }
    
    /* Search form extra small */
    .p-4 {
        padding: 0.5rem;
    }
    
    /* Pricing table extra small */
    .pricing-row td {
        padding: 6px 2px;
        font-size: 11px;
    }
    
    .pricing-row .mb-2 {
        max-width: 120px;
        font-size: 11px;
    }
    
    /* Project options pills extra small */
    .project-option-pill {
        padding: 4px 8px;
    }
    
    .pill-text {
        font-size: 12px;
    }
    
    /* Fast mode switcher extra small */
    .toggle {
        width: 50px;
        height: 28px;
    }
    
    .slider:before {
        height: 20px;
        width: 20px;
    }
    
    input:checked + .slider:before {
        transform: translateX(22px);
    }
    
    .fast-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* Print styles */
@media print {
    body {
        max-width: none;
        padding: 0;
        font-size: 12px;
    }

    .action-buttons,
    .info-btn,
    .toggle {
        display: none !important;
    }

    .section {
        break-inside: avoid;
        margin-bottom: 20px;
    }

    .faq-content {
        max-height: none !important;
        padding: 12px 16px !important;
    }


}

/* Focus styles for accessibility */
button:focus,
.btn:focus,
.info-btn:focus,
.faq-header:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Table Description - Multi-line support with width control */
.pricing-row .text-sm {
    word-wrap: break-word;
    max-width: 100%;
}

.pricing-row .mb-2 {
    line-height: 1.4;
    margin-bottom: 8px;
    max-width: 500px; /* Increased from 380px to 500px for wider layout */
    overflow-wrap: break-word;
    word-break: break-word;
    display: inline; /* Changed to inline for better text flow */
}

/* Description text styling */
.pricing-row .description-text {
    display: inline;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix icon alignment to be inline with text */
.pricing-row .mb-2 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    flex-wrap: wrap;
}

.pricing-row .mb-2 .description-text {
    display: inline;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-row .mb-2 .info-btn {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    vertical-align: baseline;
    white-space: nowrap;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Table row alignment - top and left */
.pricing-row td {
    vertical-align: top;
    text-align: left;
}

/* Ensure all content in table cells aligns to top-left */
.pricing-row td > div {
    text-align: left;
}

/* Specific column alignment */
.pricing-row td:first-child {
    text-align: left; /* Deskripsi: left */
}

.pricing-row td:nth-child(2) {
    text-align: right; /* Harga: right */
    vertical-align: middle; /* Center vertically to align with status */
}

.pricing-row td:last-child {
    text-align: center; /* Status: center */
    vertical-align: middle; /* Center vertically to align with price */
}

/* Icon container alignment */
.pricing-row .flex.items-start {
    align-items: flex-start;
    justify-content: flex-start;
}

/* Fix icon alignment to be inline with text */
.pricing-row .mb-2 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    flex-wrap: wrap;
}

.pricing-row .mb-2 .description-text {
    display: inline;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-row .mb-2 .info-btn {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    vertical-align: baseline;
    white-space: nowrap;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Ensure table cells don't expand beyond their intended width */
.pricing-row td:first-child {
    width: 65%; /* Deskripsi Item: 65% (dikurangi dari 70%) */
    max-width: none;
}

.pricing-row td:nth-child(2) {
    width: 20%; /* Harga: 20% */
    padding-right: 20px;
    white-space: nowrap; /* Prevent price from wrapping */
}

.pricing-row td:last-child {
    width: 15%; /* Status: 15% (ditambah dari 5%) */
    padding: 0 10px;
    white-space: nowrap; /* Prevent status from wrapping */
}

/* Responsive width control */
@media (max-width: 768px) {
    .pricing-row .mb-2 {
        max-width: 400px; /* Increased for mobile too */
    }

    .pricing-row td:first-child {
        width: 65%; /* Maintain 65% on mobile */
    }

    .pricing-row td:nth-child(2) {
        width: 20%; /* Maintain 20% on mobile */
        padding-right: 15px;
    }

    .pricing-row td:last-child {
        width: 15%; /* Maintain 15% on mobile */
        padding: 0 8px;
    }
}

/* Additional responsive improvements */
@media (max-width: 640px) {
    /* Hero label - keep inline on mobile */
    .inline-flex.justify-between {
        display: inline-flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        white-space: nowrap !important;
    }
    
    .inline-flex.justify-between span {
        display: inline !important;
        white-space: nowrap !important;
    }
    
    .inline-flex.justify-between svg {
        display: inline !important;
        flex-shrink: 0 !important;
    }
    
    /* Highlight cards mobile */
    .highlight-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .highlight-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .highlight-desc {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Role cards mobile */
    .role-card {
        padding: 16px;
    }
    
    .role-name {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .action-chip {
        padding: 4px 8px;
        margin: 2px;
        font-size: 11px;
    }
    
    /* Discount code input mobile */
    .w-48 {
        width: 100%;
        margin-bottom: 8px;
    }
    
    /* Summary section mobile */
    .bg-gray-50 {
        padding: 16px;
    }
    
    .space-y-2 > * + * {
        margin-top: 8px;
    }
    
    /* Popover mobile adjustments */
    [data-popover] {
        max-width: 90vw;
        width: 90vw !important;
    }
    
    .w-\\[28rem\\] {
        width: 90vw !important;
        max-width: 90vw !important;
    }
    
    .w-80 {
        width: 90vw !important;
        max-width: 90vw !important;
    }
}

@media (max-width: 480px) {
    /* Hero section adjustments - keep label inline */
    .inline-flex.justify-between {
        display: inline-flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        white-space: nowrap !important;
    }
    
    .text-xs {
        font-size: 10px;
    }
    
    /* Badge adjustments */
    .px-4 {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .py-1\\.5 {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    
    /* Search button mobile */
    .end-2\\.5 {
        right: 8px;
    }
    
    .bottom-2\\.5 {
        bottom: 8px;
    }
    
    /* Table mobile scroll indicator */
    .overflow-x-auto {
        position: relative;
    }
    
    .overflow-x-auto::after {
        content: "← Scroll untuk melihat lebih banyak →";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 10px;
        color: #6b7280;
        white-space: nowrap;
    }
}

/* Inline alignment fix for description + info icon */
.pricing-row .mb-2 {
    display: inline; /* keep in same text flow */
}

.pricing-row .mb-2 .description-text {
    display: inline;
    white-space: normal;
}

.pricing-row .mb-2 .info-btn {
    display: inline; /* inline element next to text */
    margin-left: 4px;
    vertical-align: baseline; /* align with last line baseline */
    white-space: nowrap;
}

/* Ensure popover overlays above everything */
[data-popover] {
    z-index: 9999;
}

/* Allow popover to overlap the trigger icon without leaving a gap */
.popover-overlap[data-popover] {
    margin-top: 0 !important;
}

/* Extra vertical spacing helper for sections that need more gap below */
.section--extra-gap {
    margin-bottom: 240px; /* add more space below the section */
}

/* Comparison section - uniform column widths */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.comparison-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.comparison-card .card-content {
    flex: 1;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Agentic AI Team gradient card (smooth navy → orange) */

.agentic-card {
    /* Base white canvas */
    background:
        /* Color blob at bottom-right (matches your example) */
        radial-gradient(105% 105% at 100% 100%,
            rgba(245, 158, 11, 0.85) 0%,      /* amber */
            rgba(249, 115, 22, 0.70) 18%,     /* orange */
            rgba(30, 58, 138, 0.40) 40%,      /* navy-blue (replace pink) */
            rgba(30, 58, 138, 0.15) 58%,
            rgba(255, 255, 255, 0.0) 70%
        ),
        linear-gradient(180deg,
            #ffffff 0%,
            #ffffff 70%,
            #fbfbfd 85%,
            #f9fafb 100%
        );
}

@media (prefers-color-scheme: dark) {
    .agentic-card {
        background:
            radial-gradient(110% 110% at 100% 100%,
                rgba(245, 158, 11, 0.75) 0%,   /* amber */
                rgba(249, 115, 22, 0.60) 20%,  /* orange */
                rgba(30, 58, 138, 0.35) 42%,   /* navy-blue */
                rgba(30, 58, 138, 0.14) 60%,
                rgba(2, 6, 23, 0.00) 76%
            ),
            linear-gradient(180deg,
                #0b1220 0%,    /* deep navy top */
                #0b1220 60%,
                #0e1726 78%,
                #111827 100%
            );
    }
}
