/* funidc v164: shared product-page system for cloud, bare metal, and multi-IP pages. */
.product-page {
    --product-orange: #ff7a1a;
    --product-orange-dark: #e7650a;
    --product-ink: #07162f;
    --product-muted: #607086;
    --product-soft: #f5f7fb;
    --product-line: #dfe7f2;
    --product-panel: #ffffff;
    --product-blue: #285f9e;
    --product-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    color: var(--product-ink);
    background: #ffffff;
    font-family: Inter, "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

.product-page *,
.product-page *::before,
.product-page *::after {
    box-sizing: border-box;
    max-width: 100%;
}

.product-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.product-section {
    padding: 82px 0;
}

.product-section.is-compact {
    padding: 76px 0;
}

.product-section.is-soft {
    background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.product-section-header {
    display: block;
    width: min(840px, 100%);
    margin: 0 auto 46px;
    text-align: center;
}

.product-section-header h2 {
    margin: 0;
    color: var(--product-ink);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.18;
}

.product-section-header p {
    max-width: 780px;
    margin: 14px auto 0;
    color: var(--product-muted);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.75;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    color: var(--product-ink);
    background: #ffffff;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    white-space: normal;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-btn:hover {
    border-color: rgba(255, 122, 26, 0.55);
    color: var(--product-orange-dark);
    transform: translateY(-1px);
}

.product-btn.is-primary {
    border-color: transparent;
    color: #ffffff;
    background: var(--product-orange);
    box-shadow: 0 16px 32px rgba(255, 122, 26, 0.2);
}

.product-btn.is-primary:hover {
    color: #ffffff;
    background: var(--product-orange-dark);
}

.product-hero {
    position: relative;
    overflow: hidden;
    min-height: 585px;
    color: var(--product-ink);
    border-bottom: 1px solid #e5edf6;
    background:
        radial-gradient(circle at 78% 46%, rgba(255, 122, 26, 0.11), transparent 24%),
        radial-gradient(circle at 62% 20%, rgba(40, 95, 158, 0.08), transparent 28%),
        linear-gradient(105deg, #ffffff 0%, #f8fbff 49%, #edf5ff 100%);
}

.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.82;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 52%, rgba(255, 255, 255, 0.28) 100%),
        radial-gradient(circle at 83% 68%, rgba(255, 122, 26, 0.16), transparent 17%);
    pointer-events: none;
}

.product-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    align-items: center;
    gap: 54px;
    min-height: 585px;
}

.product-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 122, 26, 0.22);
    border-radius: 999px;
    color: var(--product-orange-dark);
    background: rgba(255, 122, 26, 0.08);
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.product-hero h1 {
    max-width: 540px;
    margin: 22px 0 0;
    color: var(--product-ink);
    font-size: clamp(38px, 3.35vw, 52px);
    font-weight: 950;
    line-height: 1.08;
}

.product-hero h1 span {
    display: block;
    color: var(--product-orange);
}

.product-hero-copy {
    max-width: 520px;
    margin: 20px 0 0;
    color: #52657d;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.8;
}

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

.product-hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    width: min(520px, 100%);
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.product-hero-facts li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #435770;
    font-size: 13px;
    font-weight: 780;
}

.product-hero-facts i {
    color: var(--product-blue);
    font-size: 16px;
}

.product-hero .product-btn {
    border-color: var(--product-line);
    color: var(--product-ink);
    background: #ffffff;
}

.product-hero .product-btn.is-primary {
    border-color: transparent;
    color: #ffffff;
    background: var(--product-orange);
    box-shadow: 0 16px 32px rgba(255, 122, 26, 0.2);
}

.product-hero .product-btn:hover {
    color: var(--product-orange-dark);
    background: #ffffff;
}

.product-hero .product-btn.is-primary:hover {
    color: #ffffff;
    background: var(--product-orange-dark);
}

.product-hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    overflow: visible;
}

.product-hero-media::before {
    display: none;
}

.product-hero-media img {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: min(640px, 100%);
    max-width: 100%;
    filter: drop-shadow(0 28px 44px rgba(15, 23, 42, 0.11));
}

.product-page-cloud .product-hero-media img {
    width: min(650px, 100%);
}

.product-page-metal .product-hero-media img {
    width: min(620px, 100%);
}

.product-page-seo .product-hero-media img {
    width: min(650px, 100%);
}

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

.product-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 318px;
    padding: 22px 18px 18px;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.product-plan-card.is-featured {
    border-color: rgba(255, 122, 26, 0.72);
    box-shadow: 0 16px 36px rgba(255, 122, 26, 0.12);
}

.product-plan-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    min-width: 116px;
    padding: 5px 14px 6px;
    border-radius: 0 0 8px 8px;
    color: #ffffff;
    background: var(--product-orange);
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    text-align: center;
    transform: translateX(-50%);
}

.product-plan-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
}

.product-plan-head h3 {
    margin: 0;
    color: var(--product-ink);
    font-size: 21px;
    font-weight: 950;
    line-height: 1.2;
}

.product-plan-head p {
    margin: 8px 0 0;
    color: var(--product-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
}

.product-plan-head > span {
    flex: 0 0 auto;
    max-width: 92px;
    padding: 4px 8px;
    border-radius: 999px;
    color: #a95408;
    background: rgba(255, 122, 26, 0.11);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
}

.product-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    margin: 22px 0 18px;
}

.product-plan-price strong {
    color: var(--product-ink);
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
}

.product-plan-card.is-featured .product-plan-price strong,
.product-plan-price.is-custom strong {
    color: var(--product-orange);
}

.product-plan-price em {
    margin-bottom: 4px;
    color: var(--product-muted);
    font-style: normal;
    font-size: 13px;
    font-weight: 780;
}

.product-plan-specs {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.product-plan-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #53667e;
    font-size: 13px;
    font-weight: 700;
}

.product-plan-specs span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.product-plan-specs i {
    color: #435770;
    font-size: 15px;
}

.product-plan-specs strong {
    color: var(--product-ink);
    font-size: 13px;
    font-weight: 850;
    text-align: right;
    white-space: nowrap;
}

.product-plan-action {
    width: 100%;
    margin-top: auto;
}

.product-pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 20px;
    align-items: start;
}

.product-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--product-shadow);
    -webkit-overflow-scrolling: touch;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--product-ink);
    font-size: 14px;
}

.product-table th,
.product-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #e7edf5;
    text-align: left;
    vertical-align: middle;
}

.product-table th {
    color: #6c7b8e;
    background: #f7f9fc;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-table tr:last-child td {
    border-bottom: 0;
}

.product-table strong {
    display: block;
    font-weight: 930;
}

.product-table small {
    display: block;
    margin-top: 4px;
    color: #718095;
    font-size: 12px;
    font-weight: 650;
}

.product-price {
    color: var(--product-orange);
    font-size: 20px;
    font-weight: 950;
    white-space: nowrap;
}

.product-table .product-btn {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
}

.product-recommend {
    display: grid;
    gap: 14px;
}

.product-recommend-card {
    padding: 20px;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.product-recommend-card.is-featured {
    border-color: rgba(255, 122, 26, 0.48);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--product-orange-dark);
    background: rgba(255, 122, 26, 0.1);
    font-size: 12px;
    font-weight: 900;
}

.product-recommend-card h3 {
    margin: 12px 0 0;
    color: var(--product-ink);
    font-size: 20px;
    font-weight: 930;
}

.product-recommend-card p {
    margin: 8px 0 16px;
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.65;
}

.product-recommend-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    color: #435770;
    font-size: 13px;
    font-weight: 760;
}

.product-recommend-card li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-recommend-card li i {
    color: var(--product-orange);
}

.product-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 54px;
    align-items: start;
}

.product-info-block {
    padding-top: 24px;
    border-top: 2px solid var(--product-ink);
}

.product-info-block h3 {
    margin: 0;
    color: var(--product-ink);
    font-size: 22px;
    font-weight: 930;
}

.product-info-block > p {
    margin: 10px 0 22px;
    color: var(--product-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.72;
}

.product-line-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-line-row {
    display: grid;
    gap: 7px;
    min-height: 116px;
    padding: 16px;
    border: 1px solid #e5edf6;
    border-radius: 8px;
    background: #ffffff;
}

.product-line-row strong {
    color: var(--product-ink);
    font-size: 15px;
    font-weight: 920;
}

.product-line-row span,
.product-line-row em {
    color: var(--product-muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 680;
    line-height: 1.55;
}

.product-line-row em {
    color: var(--product-orange-dark);
    font-weight: 900;
}

.product-check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-check-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid #e5edf6;
    border-radius: 8px;
    background: #ffffff;
}

.product-check-list li:last-child {
    padding-bottom: 14px;
}

.product-check-list i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--product-orange);
    background: rgba(255, 122, 26, 0.1);
    font-size: 18px;
}

.product-check-list strong {
    display: block;
    color: var(--product-ink);
    font-size: 15px;
    font-weight: 920;
}

.product-check-list span {
    display: block;
    margin-top: 4px;
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.6;
}

.product-split-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 58px;
    align-items: center;
    padding: 58px;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(255, 122, 26, 0.06), transparent 34%),
        #ffffff;
}

.product-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255, 122, 26, 0.26);
    border-radius: 999px;
    color: var(--product-orange-dark);
    background: rgba(255, 122, 26, 0.08);
    font-size: 12px;
    font-weight: 900;
}

.product-split-panel h2 {
    margin: 16px 0 0;
    color: var(--product-ink);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 950;
    line-height: 1.16;
}

.product-split-panel p {
    margin: 16px 0 0;
    color: var(--product-muted);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.75;
}

.product-os-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-os-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 108px;
    padding: 22px;
    border: 1px solid #e4ebf5;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.035);
}

.product-os-item:nth-child(2n) {
    border-right: 1px solid #e4ebf5;
}

.product-os-item:nth-last-child(-n+2) {
    border-bottom: 1px solid #e4ebf5;
}

.product-os-logo {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.product-os-item strong {
    display: block;
    color: var(--product-ink);
    font-size: 15px;
    font-weight: 920;
}

.product-os-item span {
    display: block;
    margin-top: 6px;
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 650;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 164px;
    padding: 30px;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #ffffff;
}

.product-feature i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--product-orange);
    background: rgba(255, 122, 26, 0.1);
    font-size: 24px;
}

.product-feature:nth-child(2) i {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.product-feature:nth-child(3) i {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
}

.product-feature:nth-child(4) i {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.product-feature:nth-child(5) i {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}

.product-feature:nth-child(6) i {
    color: #0891b2;
    background: rgba(8, 145, 178, 0.1);
}

.product-feature h3 {
    margin: 0;
    color: var(--product-ink);
    font-size: 17px;
    font-weight: 930;
}

.product-feature p {
    margin: 8px 0 0;
    color: var(--product-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.65;
}

.product-network-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 26px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--product-shadow);
}

.product-network-map {
    min-height: 280px;
    background:
        radial-gradient(circle at 72% 42%, rgba(255, 122, 26, 0.22), transparent 5%),
        radial-gradient(circle at 46% 52%, rgba(255, 122, 26, 0.18), transparent 5%),
        url("/web/funidc/static/images/world-map-robinson-v88.svg") center / contain no-repeat;
}

.product-region-list {
    display: grid;
    gap: 12px;
}

.product-region {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e9eef5;
}

.product-region:last-child {
    border-bottom: 0;
}

.product-region strong {
    color: var(--product-ink);
    font-size: 15px;
    font-weight: 900;
}

.product-region span {
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 650;
}

.product-region em {
    color: var(--product-orange-dark);
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
}

.product-workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    counter-reset: product-step;
}

.product-step {
    position: relative;
    padding: 24px;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #ffffff;
}

.product-step::before {
    counter-increment: product-step;
    content: counter(product-step, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--product-ink);
    font-size: 12px;
    font-weight: 900;
}

.product-step h3 {
    margin: 0;
    color: var(--product-ink);
    font-size: 17px;
    font-weight: 930;
}

.product-step p {
    margin: 9px 0 0;
    color: var(--product-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.65;
}

.product-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-faq {
    padding: 22px 24px;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #ffffff;
}

.product-faq h3 {
    margin: 0;
    color: var(--product-ink);
    font-size: 16px;
    font-weight: 930;
}

.product-faq p {
    margin: 9px 0 0;
    color: var(--product-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.65;
}

.product-cta {
    padding: 0;
    border-top: 1px solid #e5edf6;
    border-bottom: 1px solid #e5edf6;
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 56%, #f7fafd 100%);
}

.product-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 42px;
    min-height: 152px;
    padding: 34px 0;
}

.product-cta-inner::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 50%;
    width: 4px;
    height: 54px;
    border-radius: 999px;
    background: var(--product-orange);
    transform: translateY(-50%);
}

.product-cta h2 {
    margin: 0;
    color: var(--product-ink);
    font-size: clamp(26px, 2.45vw, 34px);
    font-weight: 950;
    line-height: 1.18;
}

.product-cta p {
    margin: 9px 0 0;
    max-width: 760px;
    color: var(--product-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.72;
}

.product-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.product-cta .product-btn {
    min-width: 126px;
    min-height: 42px;
    box-shadow: none;
}

.product-cta .product-btn.is-primary {
    box-shadow: 0 12px 24px rgba(255, 122, 26, 0.16);
}

@media (max-width: 1180px) {
    .product-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding: 58px 0 76px;
    }

    .product-hero-media {
        min-height: 330px;
    }

    .product-hero-media img {
        width: min(680px, 100%);
        transform: none;
    }

    .product-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-pricing-layout,
    .product-network-panel,
    .product-info-grid,
    .product-split-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .product-container {
        width: min(100% - 32px, 1180px);
    }

    .product-section {
        padding: 58px 0;
    }

    .product-section-header {
        display: block;
    }

    .product-section-header p {
        margin-top: 12px;
    }

    .product-cta-actions {
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .product-cta-inner {
        display: block;
        min-height: 0;
        padding: 34px 0;
    }

    .product-cta-inner::before {
        left: 0;
        top: 22px;
        width: 46px;
        height: 3px;
        transform: none;
    }

    .product-table {
        min-width: 760px;
    }

    .product-feature-grid,
    .product-workflow,
    .product-faq-grid {
        grid-template-columns: 1fr;
    }

    .product-split-panel {
        padding: 34px;
    }

    .product-line-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 560px) {
    .product-hero {
        min-height: 0;
    }

    .product-hero-inner {
        padding: 42px 0 62px;
    }

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

    .product-hero-facts {
        grid-template-columns: 1fr;
    }

    .product-hero-media {
        min-height: 230px;
    }

    .product-hero-media img {
        width: 100%;
        transform: none;
    }

    .product-btn {
        width: 100%;
    }

    .product-plan-grid {
        grid-template-columns: 1fr;
    }

    .product-feature {
        grid-template-columns: 1fr;
    }

    .product-region {
        grid-template-columns: 1fr;
    }

    .product-line-table {
        grid-template-columns: 1fr;
    }

    .product-split-panel {
        padding: 24px;
    }

    .product-os-grid {
        grid-template-columns: 1fr;
    }

    .product-os-item,
    .product-os-item:nth-child(2n),
    .product-os-item:nth-last-child(-n+2) {
        border-right: 1px solid #e4ebf5;
        border-bottom: 1px solid #e4ebf5;
    }

    .product-os-item:last-child {
        border-bottom: 0;
    }
}

/* v165: reduce generated-illustration feel with real IDC photo banners and flatter content blocks. */
.product-page-cloud .product-hero {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0.32) 62%, rgba(255, 255, 255, 0.04) 100%),
        url("/web/funidc/static/images/home-hero-cloud-v165.webp");
    background-size: cover;
    background-position: center center;
}

.product-page-metal .product-hero {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0.3) 62%, rgba(255, 255, 255, 0.04) 100%),
        url("/web/funidc/static/images/home-hero-metal-v165.webp");
    background-size: cover;
    background-position: center center;
}

.product-page-seo .product-hero {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0.3) 62%, rgba(255, 255, 255, 0.04) 100%),
        url("/web/funidc/static/images/home-hero-seo-v165.webp");
    background-size: cover;
    background-position: center center;
}

.product-page .product-hero {
    min-height: 560px;
}

.product-page .product-hero::before {
    opacity: 1;
    background:
        radial-gradient(circle at 22% 28%, rgba(255, 122, 26, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(245, 249, 253, 0.16) 100%);
}

.product-page .product-hero-inner {
    grid-template-columns: minmax(0, 620px);
    min-height: 560px;
    gap: 0;
}

.product-page .product-hero-media {
    display: none;
}

.product-page .product-eyebrow {
    background: rgba(255, 122, 26, 0.09);
    box-shadow: none;
}

.product-page .product-hero h1 {
    max-width: 600px;
    font-size: clamp(42px, 4vw, 58px);
}

.product-page .product-hero-copy {
    max-width: 590px;
    color: #4e6077;
}

.product-page .product-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    width: min(640px, 100%);
}

.product-page .product-hero-facts i {
    color: var(--product-orange);
}

.product-page .product-section {
    padding: 78px 0;
}

.product-page .product-section.is-soft {
    background: #f6f8fb;
}

.product-page .product-plan-card,
.product-page .product-recommend-card,
.product-page .product-table-wrap,
.product-page .product-network-panel,
.product-page .product-step,
.product-page .product-faq,
.product-page .product-os-card,
.product-page .product-split-panel {
    box-shadow: none;
}

.product-page .product-plan-card {
    border-color: #dfe7f2;
}

.product-page .product-plan-card.is-featured {
    border-color: rgba(255, 122, 26, 0.72);
    box-shadow: 0 14px 34px rgba(255, 122, 26, 0.08);
}

.product-page .product-feature-grid {
    gap: 18px;
}

.product-page .product-feature {
    min-height: 0;
    padding: 26px 24px;
    border-color: #e2e9f3;
    background: #ffffff;
    box-shadow: none;
}

.product-page .product-feature i,
.product-page .product-feature:nth-child(2) i,
.product-page .product-feature:nth-child(3) i,
.product-page .product-feature:nth-child(4) i,
.product-page .product-feature:nth-child(5) i,
.product-page .product-feature:nth-child(6) i {
    color: var(--product-orange);
    background: #fff3ea;
}

.product-page .product-cta {
    background:
        linear-gradient(90deg, #f7f9fc 0%, #ffffff 52%, #fff7ef 100%);
}

.product-page .product-cta-inner::before {
    height: 42px;
}

@media (max-width: 1180px) {
    .product-page .product-hero-inner {
        padding: 70px 0 74px;
    }
}

@media (max-width: 760px) {
    .product-page-cloud .product-hero,
    .product-page-metal .product-hero,
    .product-page-seo .product-hero {
        background-position: 70% center;
    }

    .product-page .product-hero {
        min-height: 0;
    }

    .product-page .product-hero-inner {
        min-height: 0;
        padding: 50px 0 58px;
    }

    .product-page .product-hero h1 {
        font-size: 34px;
    }

    .product-page .product-feature {
        grid-template-columns: 42px 1fr;
        padding: 22px;
    }

    .product-page .product-feature i {
        width: 42px;
        height: 42px;
    }
}

