/*
Theme Name: Dataspeak Theme
Theme URI: http://dataspeak.co.kr
Author: Dataspeak
Description: Custom theme for Dataspeak homepage featuring Lightnin AI, Agent Madang, and SQL Genius.
Version: 1.0
*/

:root {
    /* Primary Colors */
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #e7f1ff;
    
    /* Neutral Colors */
    --text-color: #333333;
    --text-muted: #666666;
    --text-light: #888888;
    --text-inverse: #ffffff;
    
    /* Background Colors */
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #222222;
    --bg-darker: #1a1a1a;
    
    /* Border Colors */
    --border-color: #e0e0e0;
    --border-light: #eeeeee;
    
    /* Spacing */
    --section-padding: 60px 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.logo-text {
    vertical-align: middle;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: var(--bg-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
    position: relative;
    z-index: 1;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-color);
}

section p {
    color: var(--text-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-color);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.product-card.pliops-card::before {
    background: linear-gradient(90deg, #1e3a5f, #4ecdc4);
}

.product-card.agent-card::before {
    background: linear-gradient(90deg, #3498db, #9b59b6);
}

.product-card.sql-card::before {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.product-card.rapid-rag-card::before {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 24px;
}

.product-tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-item {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.pliops-card .highlight-item {
    background: linear-gradient(135deg, #e8f8f5, #d1f2eb);
    color: #1e3a5f;
}

.agent-card .highlight-item {
    background: linear-gradient(135deg, #ebf5fb, #d6eaf8);
    color: #2c3e50;
}

.sql-card .highlight-item {
    background: linear-gradient(135deg, #e8f6f3, #d5f5e3);
    color: #1e8449;
}

.rapid-rag-card .highlight-item {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #6366f1;
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: var(--primary-color);
    color: var(--text-inverse);
}

.pliops-card .product-link {
    color: #1e3a5f;
    border-color: #1e3a5f;
}

.pliops-card .product-link:hover {
    background: #1e3a5f;
    color: var(--text-inverse);
}

.agent-card .product-link {
    color: #3498db;
    border-color: #3498db;
}

.agent-card .product-link:hover {
    background: #3498db;
    color: var(--text-inverse);
}

.sql-card .product-link {
    color: #27ae60;
    border-color: #27ae60;
}

.sql-card .product-link:hover {
    background: #27ae60;
    color: var(--text-inverse);
}

.rapid-rag-card .product-link {
    color: #6366f1;
    border-color: #6366f1;
}

.rapid-rag-card .product-link:hover {
    background: #6366f1;
    color: var(--text-inverse);
}

.product-card p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    background: var(--bg-dark);
    color: var(--text-inverse);
    text-align: center;
}

.contact-section h2 {
    color: var(--text-inverse);
}

.contact-section p {
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Section Compact (Homepage) */
.contact-section-compact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-inverse);
    text-align: center;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.contact-section-compact .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-section-compact h3 {
    color: var(--text-inverse);
    font-size: 24px;
    margin: 0;
}

.contact-section-compact p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 16px;
}

.contact-btn {
    display: inline-block;
    background: var(--text-inverse);
    color: #000000;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: var(--text-inverse);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--bg-darker);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 30px 0;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

footer a {
    color: var(--primary-color);
}

/* Dropdown Menu */
nav ul li {
    position: relative;
    z-index: 9999;
}

nav ul li:hover {
    z-index: 10000;
}

nav ul ul,
nav ul .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 200px;
    flex-direction: column;
    border-radius: 4px;
    z-index: 9999;
}

nav ul li:hover>ul {
    display: flex;
}

nav ul ul li {
    margin: 0;
}

nav ul ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

nav ul ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Contact Form */
.contact-page {
    max-width: 700px;
    margin: 60px auto;
    padding: 50px 40px;
    background: var(--bg-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.1));
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.contact-page h1 {
    color: var(--text-color);
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group .label-text {
    color: var(--text-color);
}

.form-group .required {
    color: #e74c3c;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-color);
    background-color: var(--bg-light);
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-color);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Privacy Section */
.privacy-section {
    margin: 30px 0;
    padding: 0;
}

.privacy-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-text {
    font-size: 15px;
    color: var(--text-color);
}

.privacy-detail-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.privacy-detail-btn:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.privacy-detail-btn svg {
    transition: transform 0.2s ease;
}

.privacy-detail-btn.active svg {
    transform: rotate(90deg);
}

/* Privacy Detail */
.privacy-detail {
    display: none;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 28px;
    margin-top: 16px;
    animation: fadeIn 0.3s ease;
}

.privacy-detail.show {
    display: block;
}

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

.privacy-detail h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.privacy-intro {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.privacy-table th,
.privacy-table td {
    padding: 14px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.privacy-table th {
    background: var(--bg-color);
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.privacy-table td {
    background: var(--bg-color);
    color: var(--text-muted);
    line-height: 1.6;
}

.privacy-notice {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-inverse);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 18px 20px;
    margin-bottom: 24px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #155724;
    color: white;
    border-radius: 50%;
    font-size: 12px;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    padding: 18px 20px;
    margin-bottom: 24px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #721c24;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-page {
        margin: 20px auto;
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
    }
    
    .contact-page h1 {
        font-size: 28px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    .privacy-checkbox-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .privacy-detail-btn {
        margin-left: 34px;
    }
    
    .privacy-table {
        font-size: 12px;
    }
    
    .privacy-table th,
    .privacy-table td {
        padding: 10px 12px;
    }
}

/* Blog/News */
.post-list {
    padding: 40px 0;
}

.post-list article {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 40px;
    background: var(--bg-color);
}

.post-list article h2 {
    margin-top: 0;
}

.post-list article h2 a {
    color: var(--text-color);
    text-decoration: none;
}

.post-list article h2 a:hover {
    color: var(--primary-color);
}

.post-list article p {
    color: var(--text-muted);
}

.post-meta {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.post-meta .author {
    color: var(--text-muted);
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Single Post */
.single-post {
    padding: 40px 0;
}

.single-post h1 {
    color: var(--text-color);
}

.single-post .post-content {
    color: var(--text-color);
    line-height: 1.8;
}

.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4 {
    color: var(--text-color);
    margin-top: 30px;
}

.single-post .post-content p {
    color: var(--text-color);
}

.single-post .post-content ul,
.single-post .post-content ol {
    color: var(--text-color);
}

/* Product Detail Pages */
.product-detail {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.product-detail h1 {
    color: var(--text-color);
    font-size: 42px;
    margin-bottom: 10px;
}

.product-detail .subtitle {
    color: var(--text-muted);
    font-size: 20px;
    margin-bottom: 40px;
}

.product-detail h2 {
    color: var(--text-color);
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.product-detail h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 30px;
}

.product-detail h4 {
    color: var(--text-color);
    font-size: 18px;
    margin-top: 20px;
}

.product-detail p {
    color: var(--text-color);
    line-height: 1.8;
}

.product-detail ul,
.product-detail ol {
    color: var(--text-color);
    line-height: 1.8;
}

.product-detail li {
    margin-bottom: 8px;
}

.product-content {
    background: var(--bg-color);
}

/* Card Styles */
.card {
    background: var(--bg-color);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card h3,
.card h4 {
    color: var(--primary-color);
    margin-top: 0;
}

.card p {
    color: var(--text-muted);
}

.card ul {
    color: var(--text-color);
    padding-left: 20px;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

/* Section Styles */
.fusionx-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
}

.fusionx-section:last-child {
    border-bottom: none;
}

.highlight-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

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

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

.highlight-box ul {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    color: var(--text-color);
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.arch-col {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.arch-col h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.arch-col h4 {
    color: var(--text-color);
    margin-top: 20px;
}

.arch-col ul {
    color: var(--text-color);
}

.process-steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.process-steps li {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-color);
}

.process-steps li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.scenarios-list {
    display: grid;
    gap: 30px;
}

.scenario-item {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.scenario-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.scenario-item p {
    color: var(--text-color);
    margin-bottom: 10px;
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.roadmap li {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-color);
}

.roadmap li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.final-message {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 40px;
    background: var(--primary-color);
    color: var(--text-inverse);
    border-radius: 12px;
}

.final-message h3 {
    color: var(--text-inverse);
    margin-top: 0;
}

.final-message p {
    color: var(--text-inverse);
    font-size: 18px;
    line-height: 1.8;
}

/* Conclusion Section */
.conclusion {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.conclusion h2 {
    border-bottom: none;
}

.conclusion ul {
    color: var(--text-color);
}

/* Margin Utilities */
.mt-4 {
    margin-top: 30px;
}

/* ================================================
   Agent Madang Page Styles
   ================================================ */

.agent-madang-page {
    background: var(--bg-color);
}

/* Hero Section */
.am-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-inverse);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.am-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-inverse);
    line-height: 1.2;
}

.am-hero .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-inverse);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-inverse);
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Stats Section */
.am-stats {
    background: var(--bg-light);
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* Introduction Section */
.am-intro {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.am-intro h2,
.am-features h2,
.am-marketplace h2,
.am-architecture h2,
.am-performance h2,
.am-contact h2 {
    text-align: center;
    font-size: 40px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.am-intro h3 {
    text-align: center;
    font-size: 28px;
    color: var(--text-color);
    margin: 50px 0 30px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.intro-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h4 {
    color: var(--text-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.intro-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.intro-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--text-inverse);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-icon {
    font-size: 64px;
}

.highlight-content h4 {
    color: var(--text-inverse);
    font-size: 24px;
    margin-bottom: 10px;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Features Section */
.am-features {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--text-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    color: var(--text-color);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.feature-card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Marketplace Section */
.am-marketplace {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.marketplace-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--text-inverse);
    border-color: var(--primary-color);
}

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

.agent-card {
    background: var(--bg-color);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.agent-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.agent-badge.popular {
    background: #fff3cd;
    color: #856404;
}

.agent-badge.new {
    background: #d4edda;
    color: #155724;
}

.agent-badge.recommended {
    background: #cce5ff;
    color: #004085;
}

.agent-card h3 {
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0;
}

.agent-card > p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.agent-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.btn-install {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--text-inverse);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-install:hover {
    background: var(--primary-dark);
}

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

.marketplace-cta .btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Architecture Section */
.am-architecture {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.arch-layers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.arch-layer {
    background: var(--bg-color);
    padding: 30px 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.arch-layer h3 {
    color: var(--text-color);
    font-size: 20px;
    margin: 0 0 10px;
}

.arch-layer > p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

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

.tech-tag {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.arch-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.arch-detail-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.arch-detail-card h4 {
    color: var(--text-color);
    font-size: 20px;
    margin: 0 0 20px;
}

.arch-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arch-detail-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
}

.arch-detail-card ul li:last-child {
    border-bottom: none;
}

.arch-detail-card ul li strong {
    color: var(--text-color);
}

/* Performance Section */
.am-performance {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-inverse);
    position: relative;
    z-index: 1;
}

.am-performance h2 {
    color: var(--text-inverse);
}

.am-performance .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.perf-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.perf-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 10px;
}

.perf-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-inverse);
}

/* Contact Section */
.am-contact {
    padding: 80px 0;
    background: var(--bg-color);
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.contact-card {
    padding: 30px;
}

.contact-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.contact-card h4 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--primary-color);
    font-size: 16px;
    margin: 0;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn-primary {
    background: var(--primary-color);
}

.contact-buttons .btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Responsive Styles for Agent Madang */
@media (max-width: 992px) {
    .am-hero h1 {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-grid,
    .features-grid,
    .agent-grid,
    .arch-details,
    .performance-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .am-hero h1 {
        font-size: 32px;
    }
    
    .am-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid,
    .intro-grid,
    .features-grid,
    .agent-grid,
    .arch-details,
    .performance-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .am-intro h2,
    .am-features h2,
    .am-marketplace h2,
    .am-architecture h2,
    .am-performance h2,
    .am-contact h2 {
        font-size: 32px;
    }
}

/* ================================================
   SQL Genius Page Styles
   ================================================ */

.sql-genius-page {
    background: var(--bg-color);
}

/* Hero Section */
.sg-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--text-inverse);
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}

.sg-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.sg-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-inverse);
}

.sg-hero h1 .highlight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.sg-hero .hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.sg-hero .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
}

.sg-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.sg-hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.hero-stat .stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #6366f1;
}

.hero-stat .stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Demo Card */
.demo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-icon {
    font-size: 24px;
}

.demo-title {
    font-weight: 600;
    font-size: 18px;
}

.demo-question,
.demo-result {
    margin-bottom: 20px;
}

.demo-question .label,
.demo-result .label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-question p {
    color: var(--text-inverse);
    font-size: 16px;
    margin: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.demo-result pre {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    margin: 0;
    overflow-x: auto;
}

.demo-result code {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.demo-result code .keyword {
    color: #569cd6;
}

.demo-result code .function {
    color: #dcdcaa;
}

.demo-result code .string {
    color: #ce9178;
}

.demo-result code .number {
    color: #b5cea8;
}

.demo-footer {
    display: flex;
    gap: 15px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.status-badge.verified {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

/* Solutions Section */
.sg-solutions {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.sg-solutions h2,
.sg-features h2,
.sg-market h2,
.sg-cta h2 {
    text-align: center;
    font-size: 40px;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.solution-card {
    background: var(--bg-color);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.solution-card.healthcare {
    border-top-color: #10b981;
}

.solution-card.finance {
    border-top-color: #6366f1;
}

.solution-card.education {
    border-top-color: #f59e0b;
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-card h3 {
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.solution-card > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.solution-card ul li {
    color: var(--text-color);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.solution-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
}

.solution-price {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

/* Features Section */
.sg-features {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.features-left h3,
.features-right h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.feature-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-item h4 {
    color: var(--text-color);
    font-size: 18px;
    margin: 0 0 10px;
}

.feature-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Pipeline */
.pipeline {
    position: relative;
}

.pipeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, #6366f1, #8b5cf6);
}

.pipeline-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: var(--text-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
}

.step-content h4 {
    color: var(--text-color);
    font-size: 16px;
    margin: 0 0 8px;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

/* Tech Specs */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 50px;
    border-radius: 20px;
}

.spec-card {
    text-align: center;
    color: var(--text-inverse);
}

.spec-value {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 8px;
}

.spec-label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.spec-note {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Market Section */
.sg-market {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

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

.market-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.market-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.market-card h4 {
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.market-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

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

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-inverse);
}

/* CTA Section */
.sg-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

.sg-cta h2 {
    color: var(--text-inverse);
}

.sg-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.sg-cta .btn-primary {
    background: var(--text-inverse);
    color: #6366f1;
}

.sg-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sg-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-inverse);
}

.sg-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles for SQL Genius */
@media (max-width: 992px) {
    .sg-hero .container {
        grid-template-columns: 1fr;
    }
    
    .sg-hero h1 {
        font-size: 36px;
    }
    
    .hero-demo {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .solutions-grid,
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
    }
    
    .tech-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sg-hero {
        padding: 80px 0 60px;
    }
    
    .sg-hero h1 {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .sg-hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tech-specs {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .spec-value {
        font-size: 32px;
    }
    
    .sg-solutions h2,
    .sg-features h2,
    .sg-market h2,
    .sg-cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ================================================
   Pliops FusIOnX Page Styles
   ================================================ */

.pliops-fusionx-page {
    background: var(--bg-color);
}

.pliops-fusionx-page h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 50px;
}

.pliops-fusionx-page .subsection-title {
    text-align: center;
    font-size: 28px;
    color: var(--text-color);
    margin: 50px 0 30px;
}

/* PF Hero */
.pf-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    color: var(--text-inverse);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pf-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-inverse);
}

.pf-hero .hero-tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.5;
}

.pf-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.pf-hero .hero-stat {
    text-align: center;
}

.pf-hero .stat-value {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #4ecdc4;
}

.pf-hero .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* PF Company */
.pf-company {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.company-info h3,
.company-vision h3 {
    color: var(--text-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.company-details {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.company-details li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
}

.company-stats {
    display: flex;
    gap: 40px;
}

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

.cs-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.cs-label {
    color: var(--text-muted);
    font-size: 14px;
}

.company-vision blockquote {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    color: var(--text-inverse);
    padding: 40px;
    border-radius: 16px;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* PF Problem */
.pf-problem {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid #e74c3c;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: var(--text-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.limitations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.limitation-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.limitation-card h4 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.limitation-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.limitation-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.limitation-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* PF Solution */
.pf-solution {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    color: var(--text-inverse);
    position: relative;
    z-index: 1;
}

.pf-solution h2 {
    color: var(--text-inverse);
}

.solution-highlight {
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.solution-highlight h3 {
    color: #4ecdc4;
    font-size: 24px;
    margin-bottom: 15px;
}

.solution-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.feature-column h3 {
    color: var(--text-inverse);
    font-size: 22px;
    margin-bottom: 25px;
}

.feature-column .feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-column .feature-item strong {
    color: #4ecdc4;
}

/* PF Architecture */
.pf-architecture {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.arch-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.arch-card h3 {
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.arch-subsection {
    margin-bottom: 25px;
}

.arch-subsection h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.arch-subsection ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arch-subsection ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
}

.arch-subsection ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.dataflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.flow-step {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.flow-num {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--text-inverse);
    border-radius: 50%;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.flow-step h4 {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 8px;
}

.flow-step p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

.flow-arrow {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

/* PF Benchmark */
.pf-benchmark {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.benchmark-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bm-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: var(--text-inverse);
}

.bm-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.bm-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.benchmark-table {
    overflow-x: auto;
}

.benchmark-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benchmark-table th,
.benchmark-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.benchmark-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-color);
}

.benchmark-table td {
    color: var(--text-color);
}

.benchmark-table td.highlight {
    color: #4ecdc4;
    font-weight: 700;
}

/* PF TCO */
.pf-tco {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.tco-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.tco-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tco-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.tco-label {
    color: var(--text-muted);
    font-size: 16px;
}

.tco-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tco-column {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.tco-column h4 {
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.tco-column.old {
    border-top: 4px solid #e74c3c;
}

.tco-column.new {
    border-top: 4px solid #27ae60;
}

.tco-column.savings {
    border-top: 4px solid #3498db;
    background: linear-gradient(135deg, #e8f4f8 0%, #fff 100%);
}

.tco-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.tco-item:last-child {
    border-bottom: none;
}

.tco-item-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.tco-column.savings .tco-item-value {
    color: #27ae60;
}

.tco-item-label {
    color: var(--text-muted);
    font-size: 14px;
}

/* PF Comparison */
.pf-comparison {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 50px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-color);
}

.comparison-table td {
    color: var(--text-color);
}

.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
    background: linear-gradient(135deg, #e8f8f5 0%, #fff 100%);
    color: #1e3a5f;
    font-weight: 600;
}

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

.advantage-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
}

.advantage-card h4 {
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.advantage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-card ul li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-color);
}

.advantage-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
}

/* PF Use Cases */
.pf-usecases {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.usecase-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.usecase-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.usecase-section {
    margin-bottom: 20px;
}

.usecase-section h4 {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.usecase-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usecase-section ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
}

.usecase-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.roadmap-step {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.roadmap-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    color: var(--text-inverse);
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.roadmap-step h4 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.roadmap-step p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* PF Validation */
.pf-validation {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.award-card {
    background: linear-gradient(135deg, #fef9e7 0%, #fff 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f1c40f;
}

.award-badge {
    font-size: 48px;
    margin-bottom: 20px;
}

.award-card h3 {
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.award-card h4 {
    color: #c9a227;
    font-size: 18px;
    margin-bottom: 15px;
}

.award-card p {
    color: var(--text-muted);
    margin: 0;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.press-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.press-card h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.press-card p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.press-note {
    color: var(--text-muted);
    font-size: 14px;
}

.verified-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.verified-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.verified-item h4 {
    color: #27ae60;
    font-size: 18px;
    margin-bottom: 10px;
}

.verified-item p {
    color: var(--text-color);
    margin: 0;
}

/* PF Conclusion */
.pf-conclusion {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    color: var(--text-inverse);
    position: relative;
    z-index: 1;
}

.pf-conclusion h2 {
    color: var(--text-inverse);
}

.conclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.conclusion-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
}

.conclusion-card h3 {
    color: #4ecdc4;
    font-size: 24px;
    margin-bottom: 20px;
}

.conclusion-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conclusion-card ul li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.conclusion-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
}

.conclusion-message {
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.conclusion-message h3 {
    color: #4ecdc4;
    font-size: 24px;
    margin-bottom: 20px;
}

.conclusion-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.conclusion-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.conclusion-stats .cs-item {
    text-align: center;
}

.conclusion-stats .cs-value {
    font-size: 48px;
    color: #4ecdc4;
}

.conclusion-stats .cs-label {
    color: rgba(255, 255, 255, 0.7);
}

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

.pf-conclusion .btn-primary {
    background: #4ecdc4;
    color: #0d1b2a;
    padding: 16px 40px;
    font-size: 18px;
}

.pf-conclusion .btn-primary:hover {
    background: #3dbdb5;
}

/* Responsive Styles for Pliops FusIOnX */
@media (max-width: 992px) {
    .pf-hero h1 {
        font-size: 42px;
    }
    
    .pf-hero .hero-stats {
        gap: 30px;
    }
    
    .company-grid,
    .solution-features,
    .arch-grid,
    .conclusion-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid,
    .benchmark-highlights,
    .tco-highlights,
    .tco-comparison,
    .advantage-grid,
    .usecase-grid,
    .roadmap-timeline,
    .awards-grid,
    .press-grid,
    .verified-results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pf-hero {
        padding: 80px 0 60px;
    }
    
    .pf-hero h1 {
        font-size: 32px;
    }
    
    .pf-hero .hero-tagline {
        font-size: 18px;
    }
    
    .pf-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .problem-grid,
    .limitations-grid,
    .benchmark-highlights,
    .tco-highlights,
    .tco-comparison,
    .advantage-grid,
    .usecase-grid,
    .roadmap-timeline,
    .awards-grid,
    .press-grid,
    .verified-results {
        grid-template-columns: 1fr;
    }
    
    .dataflow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .conclusion-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .pliops-fusionx-page h2 {
        font-size: 28px;
    }
}