/* --- Design Tokens (Rippling-inspired Enterprise Theme) --- */
:root {
    --bg-primary: #090d16;
    --bg-secondary: #111827;
    --bg-card: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --accent-color: #ffb800; /* Warm Amber */
    --accent-green: #10b981; /* Compliance Green */
    --accent-blue: #3b82f6; /* Tech Blue */
    --accent-purple: #8b5cf6; /* Support Purple */
    --border-color: rgba(255, 255, 255, 0.08);
    --font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
}

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

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

/* --- Layout & Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Header / Navigation --- */
header {
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(9, 13, 22, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--accent-green)
    );
    border-radius: 6px;
}

nav > ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger::after {
    content: "";
    display: inline-block;
    margin-left: 0.35rem;
    border: 4px solid transparent;
    border-top-color: currentColor;
    vertical-align: middle;
    opacity: 0.65;
    transform: translateY(1px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 240px;
    padding: 0.5rem 0;
    list-style: none;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s,
        transform 0.2s,
        visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 1.25rem;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.cta-btn {
    background-color: var(--accent-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.cta-btn:hover {
    opacity: 0.9;
}

/* --- Hero Section --- */
.hero {
    padding: 8rem 0 6rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.badge {
    background-color: rgba(255, 184, 0, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

/* --- Institutional Stats --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* --- Section Styling --- */
.section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
}

#solutions,
#supply-chain,
#payment,
#engagement,
#compliance,
#blog {
    scroll-margin-top: 5rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Grid & Cards (Solutions) --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-cta {
    display: inline-block;
    margin-top: 1.5rem;
}

.solution-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.feature-list li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
}

/* --- Concept Graphs (Rippling Style CSS Diagrams) --- */
.concept-graph {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Graph 1: Sourcing & Logistics Flow */
.flow-container {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.flow-node {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.flow-node.active {
    border-color: var(--accent-color);
}

.flow-arrow {
    width: 40px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-color),
        var(--accent-green)
    );
    position: relative;
}

.flow-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--accent-green);
    border-right: 2px solid var(--accent-green);
    transform: rotate(45deg);
}

/* Graph 2: Payment & Compliance Shield */
.shield-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    border: 2px dashed rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 160px;
    height: 160px;
}
.ring-2 {
    width: 110px;
    height: 110px;
    border-color: rgba(255, 184, 0, 0.2);
    animation-direction: reverse;
}

.shield-core {
    width: 60px;
    height: 60px;
    background-color: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-green);
    z-index: 5;
}

/* Graph 3: AI Fraud Screening Matrix */
.matrix-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80%;
}

.matrix-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.matrix-label {
    color: var(--text-secondary);
    font-family: monospace;
}

.matrix-status {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
}

.status-passed {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-secured {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Graph 4: 24x7 Support Pulse */
.support-hub {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.support-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.15);
    animation: pulse 2s infinite ease-in-out;
}

.support-center {
    width: 64px;
    height: 64px;
    background-color: var(--bg-card);
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    color: var(--accent-purple);
    z-index: 2;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

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

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

.compliance-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    transition:
        transform 0.2s,
        border-color 0.2s;
}

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

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.compliance-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.compliance-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Footer --- */
footer {
    background-color: #05070b;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 3rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-brand p {
    margin-top: 1rem;
    max-width: 350px;
}

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    max-width: 720px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-corporate {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-contact {
    text-align: right;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--text-primary);
}

/* --- Blog Section --- */
.blog-featured-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    transition: border-color 0.2s;
}

.blog-featured-card:hover {
    border-color: rgba(255, 184, 0, 0.35);
    border-left-color: var(--accent-color);
}

.blog-featured-card .blog-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--text-primary);
}

.blog-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

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

.blog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition:
        transform 0.2s,
        border-color 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-card .blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    flex: 1;
}

.blog-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
}

.blog-tag-amber {
    background-color: rgba(255, 184, 0, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(255, 184, 0, 0.25);
}

.blog-tag-purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.blog-tag-blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.blog-tag-green {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.blog-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    flex-shrink: 0;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 10px;
}

/* --- Blog Post Page --- */
.post-hero {
    padding: 5rem 0 4rem;
    border-bottom: 1px solid var(--border-color);
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.post-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.post-breadcrumb a:hover {
    color: var(--text-primary);
}

.post-breadcrumb-sep {
    opacity: 0.4;
}

.post-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 820px;
    margin-bottom: 1.5rem;
}

.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.post-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 0 6rem;
}

.post-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-body h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 3rem 0 1rem;
    color: var(--text-primary);
}

.post-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--text-primary);
}

.post-body hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 3rem 0;
}

.post-body ul,
.post-body ol {
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.post-body ul {
    list-style: none;
}

.post-body ul li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.post-body ul li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.post-body ol {
    list-style: none;
    counter-reset: post-counter;
}

.post-body ol li {
    counter-increment: post-counter;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.post-body ol li::before {
    content: counter(post-counter) ".";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.post-body em {
    font-style: italic;
}

.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.88rem;
    display: block;
    overflow-x: auto;
}

.post-body th {
    background-color: var(--bg-card);
    color: var(--text-primary);
    text-align: left;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    font-weight: 600;
    white-space: nowrap;
}

.post-body td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    vertical-align: top;
}

.post-body tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

.post-back {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-back a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.post-back a:hover {
    color: var(--text-primary);
}

/* --- Supply Chain Page --- */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.cta-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.hero-svg-wrap {
    margin: 4rem auto 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 2rem 1rem;
    max-width: 920px;
}

.feature-tagline {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.metric-callout {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    background: rgba(255, 184, 0, 0.06);
    border: 1px solid rgba(255, 184, 0, 0.22);
}

.metric-callout .mval {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    white-space: nowrap;
}

.metric-callout .mdesc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.metric-callout.green {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.22);
}

.metric-callout.green .mval {
    color: var(--accent-green);
}

.metric-callout.blue {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.22);
}

.metric-callout.blue .mval {
    color: var(--accent-blue);
}

.metric-callout.purple {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.22);
}

.metric-callout.purple .mval {
    color: var(--accent-purple);
}

.sc-graphic {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.sc-graphic svg {
    display: block;
    width: 100%;
    height: auto;
}

.sc-cta-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.sc-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.sc-cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* --- Payment Page --- */
#payment-features .concept-graph svg {
    display: block;
    margin: auto;
    max-height: 282px;
    width: auto;
}

.payment-cta {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.07),
        rgba(59, 130, 246, 0.07)
    );
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 4.5rem 3rem;
    text-align: center;
}

.payment-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.6px;
    margin-bottom: 2rem;
}

.payment-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.tagline-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.tagline-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.45rem 1.1rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* --- Engagement Page --- */
.ge-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.ge-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    transition:
        border-color 0.2s,
        transform 0.2s;
}

.ge-summary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 184, 0, 0.28);
}

.ge-summary-card .ge-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.ge-summary-card .ge-card-tag.amber {
    background: rgba(255, 184, 0, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(255, 184, 0, 0.25);
}

.ge-summary-card .ge-card-tag.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.ge-summary-card .ge-card-tag.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.ge-summary-card .ge-card-tag.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.ge-summary-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.ge-summary-card .ge-card-audience {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.ge-summary-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 0.9rem;
}

.ge-summary-card .ge-standout {
    font-size: 0.82rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 0.55rem 0.85rem;
    line-height: 1.45;
}

.ge-summary-card .ge-standout strong {
    color: var(--accent-color);
}

.ge-advantage-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.ge-adv-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.ge-adv-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.15;
}

.ge-adv-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.ge-adv-svg-wrap {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1rem;
    overflow: hidden;
}

.ge-adv-svg-wrap svg {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Contact Page --- */
.contact-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.contact-simple {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.contact-email-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-reply-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-email-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .grid-2,
    .stats-grid,
    .compliance-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .grid-2-reverse-mobile .solution-content {
        order: 1;
    }
    .grid-2-reverse-mobile .concept-graph {
        order: 2;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        display: none;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-featured-card {
        padding: 1.75rem;
    }
    .blog-featured-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-info-row {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contact {
        text-align: left;
    }
    .post-hero h1 {
        font-size: 1.9rem;
    }
    .post-body {
        padding: 2.5rem 0 4rem;
    }
    .contact-email-link {
        font-size: 1.15rem;
    }
    .contact-email-btn {
        width: 100%;
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .metric-callout {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .ge-summary-grid {
        grid-template-columns: 1fr;
    }
    .ge-adv-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
