.product-hero {
    position: relative;
    min-height: 0;
    margin-top: 0;
    display: block;
    padding: 80px 0 90px;
    background: #f6f7fb;
    border-bottom: 1px solid #e6ebf3;
    overflow: hidden;
}

.product-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.product-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
}

.product-hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a202c;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.product-hero-title .accent {
    display: block;
    background: linear-gradient(90deg, #1565C0, #42A5F5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-hero-desc {
    font-size: 16.5px;
    line-height: 1.75;
    color: #64748b;
    margin: 0 0 32px;
    max-width: 520px;
}

.product-hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 34px;
}

.product-hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1565C0;
    line-height: 1;
    margin-bottom: 6px;
}

.product-hero-stat-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
}

.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.product-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-hero-btn.primary {
    background: #1565C0;
    color: #ffffff;
}

.product-hero-btn.primary:hover {
    background: #0d47a1;
}

.product-hero-btn.secondary {
    background: transparent;
    color: #1565C0;
    border: 1px solid #cdd9ec;
}

.product-hero-btn.secondary:hover {
    background: rgba(21, 101, 192, 0.06);
    border-color: #1565C0;
}

.product-hero-flow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
}

.flow-pipeline {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.flow-node {
    position: relative;
}

.flow-connector {
    position: relative;
    height: 26px;
    margin-left: 33px;
    width: 2px;
    background: #dbe3f0;
    overflow: visible;
}

.flow-node:first-child .flow-connector {
    display: none;
}

.flow-connector::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1565C0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.flow-node.done .flow-connector::before {
    transform: scaleY(1);
}

.flow-packet {
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #42A5F5;
    box-shadow: 0 0 10px rgba(66, 165, 245, 0.9);
    transform: translate(-50%, -4px);
    opacity: 0;
    z-index: 2;
}

.flow-node.active .flow-packet {
    animation: flowPacketMove 0.5s ease forwards;
}

@keyframes flowPacketMove {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.flow-node-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 16px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.flow-node.active .flow-node-inner {
    border-color: #1565C0;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.14);
    transform: translateX(4px);
}

.flow-node.done .flow-node-inner {
    border-color: #cdd9ec;
}

.flow-node-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 18px;
    transition: background 0.35s ease, color 0.35s ease;
}

.flow-node.active .flow-node-icon {
    background: #1565C0;
    color: #ffffff;
}

.flow-node.done .flow-node-icon {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.flow-node-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.flow-node-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
}

.flow-node-desc {
    font-size: 12.5px;
    color: #64748b;
}

.flow-node-status {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef1f7;
    color: #cbd5e1;
    font-size: 11px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.flow-node.active .flow-node-status {
    background: rgba(21, 101, 192, 0.12);
    color: #1565C0;
}

.flow-node.done .flow-node-status {
    background: #16a34a;
    color: #ffffff;
    transform: scale(1.05);
}

.flow-summary {
    width: 190px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 26px 20px;
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 20px;
}

.flow-summary-ring {
    position: relative;
    width: 130px;
    height: 130px;
}

.flow-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.flow-ring-track {
    fill: none;
    stroke: #eef1f7;
    stroke-width: 9;
}

.flow-ring-value {
    fill: none;
    stroke: #1565C0;
    stroke-width: 9;
    stroke-linecap: round;
    stroke-dasharray: 327;
    stroke-dashoffset: 327;
    transition: stroke-dashoffset 1.4s ease;
}

.flow-summary.done .flow-ring-value {
    stroke-dashoffset: 6;
}

.flow-ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.flow-ring-num {
    font-size: 26px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}

.flow-ring-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.flow-summary-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.flow-tag {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    background: #f6f8fc;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
}

.flow-tag i {
    color: #1565C0;
    font-size: 11px;
    width: 14px;
    text-align: center;
}

[data-theme="dark"] .product-hero {
    background: #14171f;
    border-bottom-color: #333949;
}

[data-theme="dark"] .product-hero-eyebrow {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .product-hero-title {
    color: #e6eaf2;
}

[data-theme="dark"] .product-hero-desc {
    color: #a2acc0;
}

[data-theme="dark"] .product-hero-stat-value {
    color: #6cb6f5;
}

[data-theme="dark"] .product-hero-stat-label {
    color: #a2acc0;
}

[data-theme="dark"] .product-hero-btn.primary:hover {
    background: #1e6fd0;
}

[data-theme="dark"] .product-hero-btn.secondary {
    color: #6cb6f5;
    border-color: #33507a;
}

[data-theme="dark"] .product-hero-btn.secondary:hover {
    background: rgba(66, 165, 245, 0.1);
    border-color: #6cb6f5;
}

[data-theme="dark"] .flow-connector {
    background: #333949;
}

[data-theme="dark"] .flow-node-inner {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .flow-node.active .flow-node-inner {
    border-color: #1565C0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .flow-node.done .flow-node-inner {
    border-color: #33507a;
}

[data-theme="dark"] .flow-node-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .flow-node.active .flow-node-icon {
    background: #1565C0;
    color: #ffffff;
}

[data-theme="dark"] .flow-node.done .flow-node-icon {
    background: rgba(74, 222, 128, 0.14);
    color: #4ade80;
}

[data-theme="dark"] .flow-node-title {
    color: #e6eaf2;
}

[data-theme="dark"] .flow-node-desc {
    color: #a2acc0;
}

[data-theme="dark"] .flow-node-status {
    background: #333949;
    color: #6b7488;
}

[data-theme="dark"] .flow-node.active .flow-node-status {
    background: rgba(66, 165, 245, 0.16);
    color: #6cb6f5;
}

[data-theme="dark"] .flow-node.done .flow-node-status {
    background: #16a34a;
    color: #ffffff;
}

[data-theme="dark"] .flow-summary {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .flow-ring-track {
    stroke: #333949;
}

[data-theme="dark"] .flow-ring-value {
    stroke: #42A5F5;
}

[data-theme="dark"] .flow-ring-num {
    color: #e6eaf2;
}

[data-theme="dark"] .flow-ring-label {
    color: #a2acc0;
}

[data-theme="dark"] .flow-tag {
    background: #1c2029;
    border-color: #333949;
    color: #a2acc0;
}

[data-theme="dark"] .flow-tag i {
    color: #6cb6f5;
}

@media (max-width: 1100px) {
    .product-hero-flow {
        gap: 22px;
    }

    .flow-summary {
        width: 168px;
        padding: 22px 16px;
    }

    .flow-node-inner {
        padding: 14px 16px;
        gap: 13px;
    }
}

@media (max-width: 991px) {
    .product-hero-container {
        grid-template-columns: 1fr;
        gap: 52px;
    }

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

    .product-hero-eyebrow {
        justify-content: center;
    }

    .product-hero-title .accent {
        display: inline;
    }

    .product-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .product-hero-stats {
        justify-content: center;
    }

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

    .product-hero-flow {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .product-hero-flow {
        flex-direction: column;
        gap: 26px;
    }

    .flow-summary {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 28px;
    }

    .flow-summary-tags {
        width: auto;
    }
}

@media (max-width: 560px) {
    .product-hero {
        padding: 56px 0 64px;
    }

    .product-hero-title {
        font-size: 32px;
    }

    .product-hero-stats {
        gap: 22px;
    }

    .flow-node-desc {
        display: none;
    }

    .flow-summary {
        flex-direction: column;
    }
}

.pcta-section {
    padding: 90px 0;
    background: #ffffff;
}

.pcta-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.pcta-inner {
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(160deg, #f6f8fc 0%, #eaf0f9 100%);
    border: 1px solid #e2e9f3;
    border-radius: 28px;
}

.pcta-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}

.pcta-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 auto 32px;
    max-width: 540px;
}

.pcta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.pcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pcta-btn.primary {
    background: #1565C0;
    color: #ffffff;
}

.pcta-btn.primary:hover {
    background: #0d47a1;
}

.pcta-btn.secondary {
    background: #ffffff;
    color: #1565C0;
    border: 1px solid #cdd9ec;
}

.pcta-btn.secondary:hover {
    background: rgba(21, 101, 192, 0.06);
    border-color: #1565C0;
}

[data-theme="dark"] .pcta-section {
    background: #1a1e29;
}

[data-theme="dark"] .pcta-inner {
    background: linear-gradient(160deg, #1e222e 0%, #1c2029 100%);
    border-color: #333949;
}

[data-theme="dark"] .pcta-title {
    color: #e6eaf2;
}

[data-theme="dark"] .pcta-desc {
    color: #a2acc0;
}

[data-theme="dark"] .pcta-btn.secondary {
    background: #242936;
    color: #6cb6f5;
    border-color: #33507a;
}

[data-theme="dark"] .pcta-btn.secondary:hover {
    background: rgba(66, 165, 245, 0.1);
    border-color: #6cb6f5;
}

@media (max-width: 560px) {
    .pcta-section {
        padding: 60px 0;
    }

    .pcta-inner {
        padding: 44px 24px;
    }

    .pcta-title {
        font-size: 26px;
    }

    .pcta-desc {
        font-size: 15px;
    }

    .pcta-btn {
        width: 100%;
        justify-content: center;
    }
}

.pf-section {
    padding: 90px 0;
    background: #ffffff;
}

.pf-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.pf-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.pf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.pf-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}

.pf-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pf-card {
    padding: 30px 26px;
    border-radius: 20px;
    background: #f6f8fc;
    border: 1px solid #eaeef5;
}

.pf-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 22px;
    margin-bottom: 20px;
}

.pf-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px;
}

.pf-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

[data-theme="dark"] .pf-section {
    background: #1a1e29;
}

[data-theme="dark"] .pf-eyebrow {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .pf-title {
    color: #e6eaf2;
}

[data-theme="dark"] .pf-sub {
    color: #a2acc0;
}

[data-theme="dark"] .pf-card {
    background: #1c2029;
    border-color: #333949;
}

[data-theme="dark"] .pf-card-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .pf-card-title {
    color: #e6eaf2;
}

[data-theme="dark"] .pf-card-desc {
    color: #a2acc0;
}

@media (max-width: 991px) {
    .pf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .pf-section {
        padding: 60px 0;
    }

    .pf-title {
        font-size: 26px;
    }

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

.pmod-section {
    padding: 90px 0;
    background: #ffffff;
}

.pmod-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.pmod-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.pmod-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.pmod-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}

.pmod-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.pmod-showcase {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 22px;
    align-items: start;
}

.pmod-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pmod-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    background: #f6f8fc;
    border: 1px solid #eaeef5;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pmod-tab:hover {
    border-color: #cdd9ec;
}

.pmod-tab.active {
    background: #ffffff;
    border-color: #1565C0;
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.1);
}

.pmod-tab-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 18px;
    transition: background 0.2s ease, color 0.2s ease;
}

.pmod-tab.active .pmod-tab-icon {
    background: #1565C0;
    color: #ffffff;
}

.pmod-tab-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.pmod-tab-label {
    font-size: 14.5px;
    font-weight: 700;
    color: #1a202c;
}

.pmod-tab-sub {
    font-size: 12px;
    color: #94a3b8;
}

.pmod-tab-arrow {
    color: #cbd5e1;
    font-size: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.pmod-tab.active .pmod-tab-arrow {
    color: #1565C0;
    transform: translateX(2px);
}

.pmod-display {
    position: relative;
    min-height: 300px;
}

.pmod-panel {
    display: none;
    flex-direction: column;
    padding: 36px 34px;
    background: #f6f8fc;
    border: 1px solid #eaeef5;
    border-radius: 20px;
}

.pmod-panel.active {
    display: flex;
}

.pmod-panel-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #1565C0;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 22px;
}

.pmod-panel-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}

.pmod-panel-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 26px;
    max-width: 560px;
}

.pmod-panel-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.pmod-stat {
    flex: 1;
    max-width: 200px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 14px;
}

.pmod-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1565C0;
    line-height: 1;
    margin-bottom: 6px;
}

.pmod-stat-label {
    display: block;
    font-size: 12.5px;
    color: #64748b;
}

.pmod-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pmod-panel-tag {
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(21, 101, 192, 0.07);
    color: #1565C0;
    font-size: 12.5px;
    font-weight: 600;
}

.pmod-integration {
    margin-top: 80px;
}

.pmod-integration-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 44px;
}

.pmod-integration-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 12px;
}

.pmod-integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pmod-int-card {
    padding: 30px 28px;
    background: #f6f8fc;
    border: 1px solid #eaeef5;
    border-radius: 20px;
}

.pmod-int-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pmod-int-num {
    font-size: 15px;
    font-weight: 800;
    color: #cbd5e1;
}

.pmod-int-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 17px;
}

.pmod-int-badge {
    margin-left: auto;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pmod-int-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px;
}

.pmod-int-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 18px;
}

.pmod-int-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pmod-int-tag {
    padding: 5px 12px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #eaeef5;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

[data-theme="dark"] .pmod-section {
    background: #1a1e29;
}

[data-theme="dark"] .pmod-eyebrow {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .pmod-title,
[data-theme="dark"] .pmod-integration-title {
    color: #e6eaf2;
}

[data-theme="dark"] .pmod-sub {
    color: #a2acc0;
}

[data-theme="dark"] .pmod-tab {
    background: #1c2029;
    border-color: #333949;
}

[data-theme="dark"] .pmod-tab.active {
    background: #1e222e;
    border-color: #1565C0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .pmod-tab-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .pmod-tab.active .pmod-tab-icon {
    background: #1565C0;
    color: #ffffff;
}

[data-theme="dark"] .pmod-tab-label {
    color: #e6eaf2;
}

[data-theme="dark"] .pmod-tab-sub {
    color: #8b93a5;
}

[data-theme="dark"] .pmod-panel {
    background: #1c2029;
    border-color: #333949;
}

[data-theme="dark"] .pmod-panel-title {
    color: #e6eaf2;
}

[data-theme="dark"] .pmod-panel-desc {
    color: #a2acc0;
}

[data-theme="dark"] .pmod-stat {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .pmod-stat-value {
    color: #6cb6f5;
}

[data-theme="dark"] .pmod-stat-label {
    color: #a2acc0;
}

[data-theme="dark"] .pmod-panel-tag {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .pmod-int-card {
    background: #1c2029;
    border-color: #333949;
}

[data-theme="dark"] .pmod-int-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .pmod-int-title {
    color: #e6eaf2;
}

[data-theme="dark"] .pmod-int-desc {
    color: #a2acc0;
}

[data-theme="dark"] .pmod-int-tag {
    background: #1e222e;
    border-color: #333949;
    color: #a2acc0;
}

@media (max-width: 991px) {
    .pmod-showcase {
        grid-template-columns: 1fr;
    }

    .pmod-tab-arrow {
        display: none;
    }

    .pmod-integration-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .pmod-section {
        padding: 60px 0;
    }

    .pmod-title {
        font-size: 26px;
    }

    .pmod-panel {
        padding: 28px 24px;
    }

    .pmod-panel-stats {
        flex-direction: column;
    }

    .pmod-stat {
        max-width: none;
    }
}

.ps-section {
    padding: 90px 0;
    background: #f6f7fb;
}

.ps-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.ps-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.ps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.ps-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

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

.ps-card {
    position: relative;
    padding: 34px 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e6ebf3;
    overflow: hidden;
}

.ps-card-num {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 44px;
    font-weight: 800;
    color: rgba(21, 101, 192, 0.08);
    line-height: 1;
}

.ps-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 22px;
    margin-bottom: 20px;
}

.ps-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px;
}

.ps-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

[data-theme="dark"] .ps-section {
    background: #141821;
}

[data-theme="dark"] .ps-eyebrow {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .ps-title {
    color: #e6eaf2;
}

[data-theme="dark"] .ps-card {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .ps-card-num {
    color: rgba(66, 165, 245, 0.12);
}

[data-theme="dark"] .ps-card-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .ps-card-title {
    color: #e6eaf2;
}

[data-theme="dark"] .ps-card-desc {
    color: #a2acc0;
}

@media (max-width: 768px) {
    .ps-section {
        padding: 60px 0;
    }

    .ps-title {
        font-size: 26px;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

.ptrust-section {
    padding: 90px 0;
    background: #eef2f8;
}

.ptrust-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.ptrust-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.ptrust-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.ptrust-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}

.ptrust-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.ptrust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 60px;
}

.ptrust-card {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 20px;
}

.ptrust-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 24px;
    margin: 0 auto 18px;
}

.ptrust-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px;
}

.ptrust-card-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.ptrust-metrics {
    padding: 44px 40px;
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 24px;
}

.ptrust-metrics-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 36px;
}

.ptrust-metrics-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 10px;
}

.ptrust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ptrust-metric {
    text-align: center;
    padding: 22px 16px;
    background: #f6f8fc;
    border: 1px solid #eaeef5;
    border-radius: 16px;
}

.ptrust-metric-value {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #1565C0;
    line-height: 1;
    margin-bottom: 8px;
}

.ptrust-metric-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

[data-theme="dark"] .ptrust-section {
    background: #161b26;
}

[data-theme="dark"] .ptrust-eyebrow {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .ptrust-title,
[data-theme="dark"] .ptrust-metrics-title {
    color: #e6eaf2;
}

[data-theme="dark"] .ptrust-sub {
    color: #a2acc0;
}

[data-theme="dark"] .ptrust-card {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .ptrust-card-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .ptrust-card-title {
    color: #e6eaf2;
}

[data-theme="dark"] .ptrust-card-desc {
    color: #a2acc0;
}

[data-theme="dark"] .ptrust-metrics {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .ptrust-metric {
    background: #1c2029;
    border-color: #333949;
}

[data-theme="dark"] .ptrust-metric-value {
    color: #6cb6f5;
}

[data-theme="dark"] .ptrust-metric-label {
    color: #a2acc0;
}

@media (max-width: 991px) {
    .ptrust-grid,
    .ptrust-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .ptrust-section {
        padding: 60px 0;
    }

    .ptrust-title {
        font-size: 26px;
    }

    .ptrust-metrics {
        padding: 32px 20px;
    }
}
