:root {
    /* Color Palette */
    /* Primary / Secondary */
    --color-primary-green: #409a78;
    --color-support-blue: #187fc3;

    /* Secondary Colors */
    --color-accent-orange: #ff4b00;
    --color-accent-lime: #aace36;
    --color-slate-gray: #83919e;
    --color-light-blue: #bfe3ff;
    --color-soft-pink: #ffcabf;

    /* Backgrounds */
    --bg-main: #eeece1;
    /* Beige */
    --bg-white: #ffffff;
    --bg-light-gray: #f8f9fa;

    /* Text */
    --text-main: #333333;
    --text-light: #ffffff;
    --text-muted: #666666;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Fonts */
    --font-heading: 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Star hidden */
}

.hero-content .hero-label {
    animation-delay: 0.1s;
}

.hero-content .hero-title {
    animation-delay: 0.3s;
}

.hero-content .hero-desc {
    animation-delay: 0.5s;
}

.hero-actions {
    animation-delay: 0.7s;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-primary {
    color: var(--color-primary-green);
}

.text-blue {
    color: var(--color-support-blue);
}

.text-orange {
    color: var(--color-accent-orange);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-accent-orange);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 75, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 0, 0.4);
    background-color: #e64400;
    color: white;
}

.btn-secondary {
    background-color: var(--color-primary-green);
    color: var(--text-light);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background-color: #368566;
    box-shadow: 0 4px 15px rgba(64, 154, 120, 0.3);
}

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

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

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    font-size: 24px;
    /* Matched with logo height */
}

.logo-divider {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.logo-image {
    height: 24px;
    /* Matched with text size */
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition-base);
}

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

/* Section Components */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: #e6f6ee;
    color: var(--color-primary-green);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Cards */
.card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-label {
    display: inline-block;
    color: var(--color-primary-green);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

/* Workstation Visual */
.workstation-visual {
    width: 600px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workstation-container {
    width: 100%;
    max-width: 550px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ws-header {
    background: #f5f5f7;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.ws-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ws-dot.red {
    background: #ff5f56;
}

.ws-dot.yellow {
    background: #ffbd2e;
}

.ws-dot.green {
    background: #27c93f;
}

.ws-title {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.ws-content {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.ws-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.ws-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-color);
    overflow: hidden;
    /* Ensure image stays inside circle */
    padding: 15px;
    /* Add padding so image doesn't touch edges */
}

.ws-icon .custom-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ws-icon span {
    font-size: 3.5rem;
    /* Larger Icons */
    color: var(--text-main);
}

.agent-node .ws-icon {
    background: rgba(64, 154, 120, 0.1);
    border-color: var(--color-primary-green);
    animation: pulse-border 3s infinite;
}


.ws-interaction {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-support-blue);
    position: relative;
    width: 200px;
    /* Wider for travel */
    height: 60px;
}

/* Connection Line */
.connection-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--color-support-blue) 0%,
            var(--color-support-blue) 50%,
            transparent 50%);
    background-size: 20px 100%;
    animation: dash-move 30s linear infinite;
    transform: translateY(-50%);
    z-index: 1;
    /* Below packets */
    opacity: 0.5;
}

@keyframes dash-move {
    to {
        background-position: -100% 0;
    }
}

/* Chat Badge on User */
.chat-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: var(--color-support-blue);
    border: 2px solid var(--color-support-blue);
    z-index: 10;
}

.chat-badge span {
    font-size: 1.2rem;
}

/* Data Icons on Agent */
.data-icon {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    color: var(--color-primary-green);
    border: 1px solid var(--color-primary-green);
    z-index: 5;
}

.data-icon span {
    font-size: 1.1rem;
}

/* Adjusted positions to avoid text overlap */
.icon-db1 {
    top: -10px;
    right: 0px;
}

/* Top Right */
.icon-db2 {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}

/* Middle Right */
.icon-db3 {
    top: -10px;
    left: 0px;
}

/* Top Left */

/* Flow Packets */
.flow-packet {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: var(--color-support-blue);
    opacity: 0;
    z-index: 2;
    /* Above line */
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.packet-request {
    left: 0;
    color: var(--color-support-blue);
    border: 1px solid var(--color-support-blue);
    animation: packet-right 3s infinite ease-in-out;
}

.packet-response {
    right: 0;
    color: var(--color-primary-green);
    border: 1px solid var(--color-primary-green);
    animation: packet-left 3s infinite ease-in-out;
    animation-delay: 1.5s;
}

.packet-request span {
    font-size: 1.4rem;
}

.packet-response span {
    font-size: 1.4rem;
}

@keyframes packet-right {
    0% {
        left: 0;
        opacity: 0;
        transform: scale(0.8) translateY(-50%);
    }

    10% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    80% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    100% {
        left: 100%;
        opacity: 0;
        transform: scale(0.8) translateY(-50%);
    }
}

@keyframes packet-left {
    0% {
        right: 0;
        opacity: 0;
        transform: scale(0.8) translateY(-50%);
    }

    10% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    80% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    100% {
        right: 100%;
        opacity: 0;
        transform: scale(0.8) translateY(-50%);
    }
}

/* Trust Section Updates */
.trust-text .mission {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #fff;
}

.latest-news-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.news-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: var(--color-support-blue);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.latest-news-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-main);
}

.company-details {
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

/* Badges removed */

.company-details {
    margin-top: 2rem;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.company-details dl {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 2rem;
    row-gap: 0.8rem;
    align-items: baseline;
}

.company-details dt {
    font-weight: 700;
    color: #fff;
    /* White for visibility on green bg */
    min-width: 100px;
    font-family: var(--font-body);
    /* Ensure consistent font */
    text-align: left;
}

.company-details dd {
    margin: 0;
    color: #eee;
    /* Off-white for values */
    font-family: var(--font-body);
    /* Ensure consistent font */
    text-align: left;
}

.interaction-icon span {
    font-size: 2.5rem;
    /* animation: bounce 2s infinite; Removed bounce for cleaner look */
    color: var(--color-support-blue);
}

.comm-flow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.flow-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-support-blue);
    opacity: 0;
}

.flow-dot.user-to-agent {
    top: 50%;
    left: -20px;
    /* Start from User side */
    animation: flow-right 2s infinite ease-in-out;
}

.flow-dot.agent-to-user {
    top: 50%;
    right: -20px;
    /* Start from Agent side */
    animation: flow-left 2s infinite ease-in-out;
    animation-delay: 1s;
    /* Offset */
}

@keyframes flow-right {
    0% {
        left: -20px;
        opacity: 0;
        transform: scale(0.5) translateY(-50%);
    }

    20% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    80% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    100% {
        left: 120%;
        opacity: 0;
        transform: scale(0.5) translateY(-50%);
    }
}

@keyframes flow-left {
    0% {
        right: -20px;
        opacity: 0;
        transform: scale(0.5) translateY(-50%);
    }

    20% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    80% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    100% {
        right: 120%;
        opacity: 0;
        transform: scale(0.5) translateY(-50%);
    }
}

.ws-footer {
    background: #333;
    color: #fff;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.ws-footer span.material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--color-accent-lime);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(64, 154, 120, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(64, 154, 120, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(64, 154, 120, 0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.icon-server span {
    font-size: 3.5rem;
    color: var(--color-primary-green);
}

.center-node .label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.satellite {
    position: absolute;
    z-index: 2;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #eee;
    /* animation: float 6s ease-in-out infinite; */
    min-width: 150px;
    justify-content: center;
}

.sat-icon span {
    font-size: 1.8rem;
    color: var(--color-support-blue);
}

/* Satellite Positioning (Based on 600x600 grid) 
   Center is around 300, 300
*/
.sat-1 {
    top: 110px;
    left: 80px;
    animation-delay: 0s;
}

.sat-2 {
    top: 140px;
    right: 50px;
    animation-delay: 2s;
}

.sat-3 {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.pulse-circle {
    fill: var(--color-primary-green);
    opacity: 0.2;
    animation: pulse 2s infinite;
    transform-origin: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

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

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

/* Problem Section */
.problem-card {
    background: var(--bg-light-gray);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--color-accent-orange);
}

.icon-box {
    margin-bottom: 1rem;
    color: var(--color-accent-orange);
}

.icon-box span {
    font-size: 2.5rem;
}

/* Merits Section */
.merit-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.merit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.image-box {
    width: 100%;
    height: 180px;
    background: var(--bg-light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.problem-card:hover .card-image {
    transform: scale(1.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.bg-green {
    background: var(--color-primary-green);
}

.bg-blue {
    background: var(--color-support-blue);
}

.bg-orange {
    background: var(--color-accent-orange);
}

.bg-lime {
    background: var(--color-accent-lime);
}

/* PoC Section */
.poc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.poc-content h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.arrow-down {
    text-align: center;
    color: var(--color-support-blue);
    margin: 1rem 0;
}

.result-box {
    background: #e6f6ee;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-primary-green);
}

.result-box ul {
    list-style: none;
    padding-left: 0;
}

.result-box li {
    margin-bottom: 0.5rem;
}

/* PoC Visual */
.server-rack {
    background: #2d3436;
    padding: 1rem;
    border-radius: 8px;
    width: 300px;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rack-unit {
    background: #444;
    color: #0f0;
    font-family: monospace;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #555;
    font-size: 0.9rem;
}

.client-feeds {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

/* Technical Features / Solutions Section */
.solution-grid {
    margin-top: 3rem;
}

.solution-card {
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-green);
}

.sol-icon {
    font-size: 3rem;
    color: var(--color-primary-green);
    margin-bottom: 1.5rem;
}

.sol-icon .material-symbols-outlined {
    font-size: 3.5rem;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary-green), #aace36);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.sol-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left;
}

/* System Configuration Section */
.config-visual {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.system-config-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
}


.client-node {
    background: var(--bg-white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #ccc;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
}

.connection-lines {
    height: 30px;
    border-left: 2px dashed #ccc;
    border-right: 2px dashed #ccc;
    width: 50%;
    margin: 0 auto;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--color-primary-green);
    color: white;
    padding: 4rem;
    border-radius: var(--radius-lg);
}

.trust-text h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
}

.wide-card {
    grid-column: span 2;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-num .unit {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-left: 2px;
}

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

.stat-sub {
    font-size: 0.8rem;
    font-weight: 400;
    display: block;
    margin-top: 2px;
    color: #888;
}

/* Action / Steps Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.step-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    z-index: 2;
    height: 100%;
}

.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-light-blue);
    opacity: 0.5;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.step-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary-green);
}

.step-card p {
    font-size: 0.9rem;
}

.step-connector {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #ddd, var(--color-primary-green), #ddd);
}

.cta-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-hover);
    border-top: 5px solid var(--color-accent-orange);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.cta-box p {
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: #2d3436;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    background: var(--bg-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--color-primary-green);
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Responsive */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .grid-2,
    .grid-4,
    .poc-layout,
    .trust-grid,
    .trust-stats,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        padding: 2rem;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Anxiety / Agent Section */
.section-anxiety {
    background-color: #fcfcfc;
    /* Very subtle gray */
    padding-bottom: 4rem;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.anxiety-stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.anxiety-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-orange);
}

.stat-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
    background: #f0f0f0;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.stat-value .unit {
    font-size: 1.5rem;
    color: #666;
    margin-left: 2px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
}

/* Attention Box */
.attention-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.attention-content {
    background: #fff;
    border: 2px solid #ff4b00;
    border-radius: 50px;
    /* Pill shape for attention */
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(255, 75, 0, 0.15);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

/* Subtle pulse bg effect */
.attention-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 75, 0, 0.03);
    z-index: 0;
}

.attention-icon {
    color: #ff4b00;
    font-size: 1.8rem;
    animation: flash 2s infinite;
    position: relative;
    z-index: 1;
}

.attention-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
}

.attention-value {
    color: #ff4b00;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0.1rem;
    font-family: var(--font-heading);
}

.source-ref {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    margin-left: 0.25rem;
}

.disclaimer-text {
    font-size: 0.6rem;
    color: #999;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-break {
    display: none;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .attention-content {
        flex-direction: column;
        border-radius: 16px;
        padding: 1.5rem;
        gap: 0.5rem;
        width: 100%;
    }

    .attention-text {
        flex-direction: column;
        align-items: center;
    }

    .mobile-break {
        display: block;
    }
}

/* Industry Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.uc-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.uc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary-green);
}

.uc-header {
    background: #f8fafc;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.uc-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-primary-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uc-header h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.uc-target {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: #eef2f6;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.uc-body {
    padding: 1.5rem;
    flex: 1;
}

.uc-body h4 {
    font-size: 0.95rem;
    color: var(--color-primary-green);
    margin-bottom: 0.8rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.4rem;
}

.uc-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.uc-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
    color: #444;
}

.uc-list li::before {
    content: "•";
    color: var(--color-primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.uc-effect {
    background: #fcfcfc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

.effect-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 0.3rem;
}

.effect-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.section-closing {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    background: #e6f6ee;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-container {
    margin-top: 5rem;
    overflow-x: auto;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.comp-table th,
.comp-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comp-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    text-align: center;
}

.comp-table th.th-aspect {
    width: 20%;
    text-align: left;
    color: #666;
    font-size: 0.95rem;
}

.comp-table th.th-cloud {
    width: 38%;
    color: #888;
}

.comp-table th.th-local {
    width: 42%;
    color: var(--color-primary-green);
    background: #e6f6ee;
}

.comp-table td.td-local {
    background: #fcffff;
    font-weight: 600;
    color: #2d3436;
    border-left: 2px solid var(--color-primary-green);
}

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

.table-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 900px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .comp-table th,
    .comp-table td {
        font-size: 0.85rem;
        padding: 0.8rem;
    }

    .th-aspect {
        width: 20%;
    }
}

/* Pressure Visual Flow */
.pressure-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pressure-step {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-external {
    border-top: 4px solid #aaa;
}

.step-internal {
    border-top: 4px solid #666;
}

.step-risk {
    border-top: 4px solid #ff4b00;
    background: #fffbfc;
}

.p-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.step-risk .p-icon {
    background: #ffebe6;
    color: #ff4b00;
}

.p-icon span {
    font-size: 2rem;
    color: #555;
}

.step-risk .p-icon span {
    color: #ff4b00;
}

.p-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.p-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.pressure-arrow {
    color: #ccc;
    display: flex;
    align-items: center;
}

.pressure-arrow span {
    font-size: 2rem;
}

@media (max-width: 900px) {
    .stats-row {
        grid-template-columns: 1fr;
    }

    .pressure-visual {
        flex-direction: column;
        gap: 2rem;
    }

    .pressure-arrow {
        transform: rotate(90deg);
    }
}