/* Product marketing surfaces */
.programs-grid.product-tabs-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}

.product-tab-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1.08fr);
    gap: 24px;
    min-height: 390px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-tab-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.product-tab-card.builook:hover {
    border-color: rgba(21, 128, 61, 0.32);
}

.product-tab-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
}

.product-tab-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.product-app-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.product-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-tab-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-tab-card.builook .product-tab-eyebrow {
    color: #15803d;
}

.product-tab-card h3 {
    margin: 0;
    color: #111827;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.14;
    white-space: nowrap;
}

.product-tab-card p {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    word-break: keep-all;
}

.product-tab-points {
    display: grid;
    gap: 9px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.product-tab-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
}

.product-tab-points li::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: #2563eb;
    border-radius: 50%;
}

.product-tab-card.builook .product-tab-points li::before {
    background: #16a34a;
}

.product-tab-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 180px;
    margin-top: auto;
}

.product-action-primary,
.product-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.product-action-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.product-tab-card.builook .product-action-primary {
    background: #15803d;
    box-shadow: 0 10px 22px rgba(21, 128, 61, 0.22);
}

.product-action-primary:hover {
    transform: translateY(-2px);
}

.product-action-primary:focus-visible,
.product-action-secondary[href]:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 3px;
}

.product-tab-card.builook .product-action-primary:focus-visible {
    outline-color: rgba(21, 128, 61, 0.32);
}

.product-action-secondary {
    background: #f8fafc;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.product-action-secondary[href]:hover {
    transform: translateY(-1px);
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.product-tab-media {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
}

.product-browser-frame {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.browser-bar {
    display: flex;
    gap: 6px;
    height: 34px;
    align-items: center;
    padding: 0 13px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.browser-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.browser-bar span:nth-child(1) { background: #ef4444; }
.browser-bar span:nth-child(2) { background: #f59e0b; }
.browser-bar span:nth-child(3) { background: #22c55e; }

.product-browser-frame img {
    width: 100%;
    height: 238px;
    object-fit: cover;
    object-position: top center;
}

.product-detail {
    background: #fff;
}

.product-detail .page-hero {
    margin-top: 96px;
    padding: 68px 24px 76px;
    background: #eef5ff;
    color: #0f172a;
}

.product-detail.builook-page .page-hero {
    background: #edf8f0;
}

.product-detail .page-hero::before {
    content: none;
}

.product-hero-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 56px;
    align-items: center;
}

.product-identity {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.product-identity .product-app-icon {
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.product-identity strong {
    display: block;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.product-identity span {
    display: block;
    margin-top: 4px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.product-detail .breadcrumb {
    margin-bottom: 22px;
    color: #64748b;
}

.product-detail .breadcrumb a,
.product-detail .breadcrumb .current {
    color: #334155;
}

.product-detail .page-hero h1 {
    max-width: 620px;
    margin-bottom: 18px;
    color: #08111f;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0;
    word-break: keep-all;
}

.product-detail .page-hero p {
    max-width: 620px;
    color: #334155;
    font-size: 19px;
    line-height: 1.78;
    word-break: keep-all;
}

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

.product-primary-button,
.product-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
}

.product-primary-button svg,
.product-download-button svg {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin-right: 9px;
}

.product-primary-button {
    background: #111827;
    color: #fff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

.product-secondary-button {
    background: #fff;
    color: #111827;
    border: 1px solid #cbd5e1;
}

.product-primary-button.is-disabled {
    opacity: 0.78;
    cursor: not-allowed;
    pointer-events: none;
}

.product-release-summary.is-unavailable .product-release-dot {
    background: #94a3b8;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.14);
}

.product-release-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    margin-top: 14px;
    color: #475569;
    font-size: 13px !important;
    font-weight: 800;
    line-height: 1.5 !important;
}

.product-release-dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    background: #16a34a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.product-hero-visual {
    min-width: 0;
}

.product-screen-frame {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.18);
}

.product-screen-frame img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top center;
}

.product-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.product-metric {
    min-height: 82px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 8px;
}

.product-metric strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    font-weight: 950;
}

.product-metric span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.product-section {
    padding: 84px 24px;
}

.product-section.alt {
    background: #f8fafc;
}

.product-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.product-section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.product-section-heading .badge {
    margin-bottom: 13px;
}

.product-section-heading h2 {
    color: #0f172a;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: 0;
}

.product-section-heading p {
    margin-top: 12px;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
}

.product-download-section {
    scroll-margin-top: 84px;
    background: #f4fbf6;
    border-top: 1px solid #dcfce7;
    border-bottom: 1px solid #dcfce7;
}

.product-download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(22, 101, 52, 0.09);
}

.product-download-primary,
.product-install-guide {
    min-width: 0;
    padding: 40px;
}

.product-download-primary {
    border-right: 1px solid #dcfce7;
}

.product-download-primary h2 {
    max-width: 620px;
    margin: 16px 0 14px;
    color: #0f172a;
    font-size: 34px;
    font-weight: 950;
    line-height: 1.22;
    letter-spacing: 0;
    word-break: keep-all;
}

.product-download-primary > p {
    max-width: 650px;
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    word-break: keep-all;
}

.product-download-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 28px 0 24px;
    padding: 18px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.product-download-meta div {
    min-width: 0;
    padding: 0 18px;
}

.product-download-meta div:first-child {
    padding-left: 0;
}

.product-download-meta div + div {
    border-left: 1px solid #e2e8f0;
}

.product-download-meta dt {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.product-download-meta dd {
    margin: 6px 0 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.35;
}

.product-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    background: #166534;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(22, 101, 52, 0.2);
    font-size: 15px;
    font-weight: 900;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-download-button:hover {
    background: #14532d;
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(22, 101, 52, 0.24);
}

[data-builook-download-link][aria-busy="true"] {
    cursor: wait;
    opacity: 0.72;
    pointer-events: none;
}

.product-download-button.is-disabled {
    background: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.product-release-hash {
    display: grid;
    gap: 5px;
    margin-top: 18px;
}

.product-release-hash span {
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
}

.product-release-hash code {
    color: #334155;
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.product-download-status {
    min-height: 21px;
    margin-top: 12px;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 750;
    line-height: 1.6 !important;
}

.product-install-guide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-install-label {
    display: block;
    margin-bottom: 8px;
    color: #15803d;
    font-size: 12px;
    font-weight: 900;
}

.product-install-guide h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0;
}

.product-install-heading p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
    word-break: keep-all;
}

.product-requirements-table {
    width: 100%;
    margin-top: 22px;
    border-collapse: collapse;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
}

.product-requirements-table th,
.product-requirements-table td {
    padding: 12px 0;
    border-top: 1px solid #e2e8f0;
    vertical-align: top;
    text-align: left;
    line-height: 1.55;
}

.product-requirements-table tr:first-child th,
.product-requirements-table tr:first-child td {
    border-top: 0;
}

.product-requirements-table th {
    width: 104px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.product-requirements-table td {
    padding-left: 20px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 750;
    word-break: keep-all;
}

.product-install-note,
.product-install-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 6px;
}

.product-install-note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.product-install-alert {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.product-install-note strong,
.product-install-alert strong {
    display: block;
    color: #334155;
    font-size: 12px;
    font-weight: 900;
}

.product-install-note p,
.product-install-alert p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.65;
    word-break: keep-all;
}

.product-workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 16px 0 0;
    list-style: none;
}

.product-workflow-step {
    position: relative;
    min-width: 0;
    padding: 0 28px;
    text-align: center;
}

.product-workflow-step:not(:last-child)::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 31px;
    left: calc(50% + 42px);
    width: calc(100% - 84px);
    height: 1px;
    background: #bfdbfe;
}

.product-workflow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    right: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #60a5fa;
    border-right: 2px solid #60a5fa;
    transform: rotate(45deg);
}

.builook-page .product-workflow-step:not(:last-child)::before {
    background: #bbf7d0;
}

.builook-page .product-workflow-step:not(:last-child)::after {
    border-color: #4ade80;
}

.product-workflow-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.1);
}

.builook-page .product-workflow-icon {
    background: #ecfdf3;
    color: #15803d;
    border-color: #bbf7d0;
    box-shadow: 0 8px 22px rgba(21, 128, 61, 0.1);
}

.product-workflow-icon svg {
    width: 28px;
    height: 28px;
}

.product-workflow-index {
    display: block;
    margin-bottom: 7px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.builook-page .product-workflow-index {
    color: #15803d;
}

.product-workflow-step h3 {
    margin: 0 0 9px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    word-break: keep-all;
}

.product-workflow-step p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    word-break: keep-all;
}

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

.product-feature-card {
    min-height: 220px;
    padding: 26px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.product-feature-card .feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 950;
}

.builook-page .product-feature-card .feature-number {
    background: #ecfdf3;
    color: #15803d;
}

.product-feature-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
}

.product-feature-card p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.72;
    word-break: keep-all;
}

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

.product-mode-card {
    min-height: 390px;
    padding: 32px;
    background: #fff;
    border: 1px solid #dbe3ee;
    border-top: 3px solid #2563eb;
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.product-mode-card.eco2 {
    border-top-color: #15803d;
}

.product-mode-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.product-mode-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 8px;
}

.product-mode-card.eco2 .product-mode-icon {
    background: #ecfdf3;
    color: #15803d;
}

.product-mode-icon svg {
    width: 24px;
    height: 24px;
}

.product-mode-label {
    display: block;
    margin-bottom: 4px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.product-mode-card.eco2 .product-mode-label {
    color: #15803d;
}

.product-mode-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.2;
}

.product-mode-card > p {
    margin: 0 0 22px;
    color: #475569;
    font-size: 15px;
    line-height: 1.78;
    word-break: keep-all;
}

.product-mode-points {
    display: grid;
    gap: 11px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.product-mode-points li {
    display: flex;
    gap: 9px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.5;
}

.product-mode-points li::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    margin-top: 7px;
    background: #2563eb;
    border-radius: 50%;
}

.product-mode-card.eco2 .product-mode-points li::before {
    background: #16a34a;
}

.product-mode-source {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 850;
}

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

.product-plan-card {
    min-height: 250px;
    padding: 30px;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
}

.product-plan-card.highlight {
    background: #eff6ff;
}

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

.builook-page .product-plan-card.highlight {
    background: #ecfdf3;
}

.product-plan-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 950;
}

.product-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 16px;
}

.product-plan-price strong {
    color: #0f172a;
    font-size: 38px;
    font-weight: 950;
    line-height: 1;
}

.product-plan-price span {
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.product-plan-card p {
    margin: 0 0 18px;
    color: #475569;
    font-size: 15px;
    line-height: 1.72;
}

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

.product-plan-list li {
    display: flex;
    gap: 8px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
}

.product-plan-list li::before {
    content: "✓";
    color: #2563eb;
    font-weight: 950;
}

.product-plan-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 24px;
    padding: 0 16px;
    color: #166534;
    border: 1px solid #86efac;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 900;
}

.product-plan-action:hover {
    background: #dcfce7;
}

.builook-page .product-plan-list li::before {
    color: #16a34a;
}

@media (max-width: 1180px) {
    .product-tab-card {
        grid-template-columns: 1fr;
    }

    .product-tab-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 320px;
    }

    .product-browser-frame img {
        height: 280px;
    }
}

@media (max-width: 1100px) {
    .product-hero-layout {
        grid-template-columns: 1fr;
    }

    .product-screen-frame img {
        height: 360px;
    }
}

@media (max-width: 900px) {
    .product-section-heading.pv-workflow-heading h2 {
        font-size: 38px;
    }

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

    .product-download-primary {
        border-right: 0;
        border-bottom: 1px solid #dcfce7;
    }

    .product-workflow {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 640px;
        margin: 0 auto;
        padding-top: 8px;
    }

    .product-workflow-step {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 16px;
        min-height: 124px;
        padding: 0 0 28px;
        text-align: left;
    }

    .product-workflow-step:not(:last-child)::before {
        top: 62px;
        bottom: 8px;
        left: 27px;
        width: 1px;
        height: auto;
    }

    .product-workflow-step:not(:last-child)::after {
        display: none;
    }

    .product-workflow-icon {
        width: 56px;
        height: 56px;
        margin: 0;
    }

    .product-workflow-icon svg {
        width: 24px;
        height: 24px;
    }

    .product-workflow-copy {
        padding-top: 3px;
    }
}

@media (max-width: 768px) {
    .programs-grid.product-tabs-grid,
    .product-feature-grid,
    .product-mode-grid,
    .product-plan-grid {
        grid-template-columns: 1fr;
    }

    .product-tab-card {
        min-height: 0;
        padding: 22px;
    }

    .product-tab-top {
        align-items: flex-start;
    }

    .product-tab-card h3 {
        font-size: 23px;
    }

    .product-detail .page-hero {
        margin-top: 72px;
        padding: 48px 20px 56px;
    }

    .product-detail .page-hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .product-detail .page-hero p {
        font-size: 16px;
    }

    .product-hero-layout {
        gap: 34px;
    }

    .product-screen-frame img {
        height: 260px;
    }

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

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

    .product-download-primary,
    .product-install-guide {
        padding: 30px;
    }

    .product-download-primary h2 {
        font-size: 28px;
    }

    .product-mode-card {
        min-height: 0;
        padding: 26px;
    }

}

@media (max-width: 700px) {
    .product-section-heading.pv-workflow-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .product-section-heading.pv-workflow-heading h2 {
        font-size: 27px;
    }
}

@media (max-width: 480px) {
    .product-detail .page-hero {
        margin-top: 60px;
    }

    .product-tab-actions,
    .product-hero-actions {
        width: 100%;
    }

    .product-tab-actions {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .product-action-primary,
    .product-action-secondary,
    .product-primary-button,
    .product-secondary-button,
    .product-download-button {
        width: 100%;
    }

    .product-download-primary,
    .product-install-guide {
        padding: 24px 20px;
    }

    .product-download-meta {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-download-meta div,
    .product-download-meta div:first-child {
        padding: 0;
    }

    .product-download-meta div + div {
        padding-top: 14px;
        border-top: 1px solid #e2e8f0;
        border-left: 0;
    }
}

.footer-policy-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    margin-top: 10px;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    text-decoration: none;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
