.pm-top-utility {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 700;
}

.pm-top-utility a {
    color: #1d2a26;
    text-decoration: none;
}

.pm-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    padding: 0;
    border: 1px solid rgba(23, 34, 31, 0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    color: inherit;
    text-decoration: none;
}

.pm-cart-link svg {
    width: 1.1rem;
    height: 1.1rem;
}

.pm-cart-count {
    position: absolute;
    top: -0.35rem;
    right: -0.2rem;
    display: inline-grid;
    place-items: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.15rem;
    border-radius: 999px;
    background: #e55432;
    color: #fff;
    font-size: 0.68rem;
    line-height: 1;
    border: 2px solid #fff;
}

.pm-atc-button,
.pm-secondary-button,
.pm-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 12px;
    background: #e55432;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 12px 24px rgba(229, 84, 50, 0.18);
}

.pm-atc-button:hover,
.pm-secondary-button:hover,
.pm-primary-button:hover {
    transform: translateY(-1px);
}

.pm-atc-button {
    padding: 0.75rem 1.1rem;
    width: auto;
    min-width: 170px;
    margin-top: 0.5rem;
    font-size: 0.94rem;
}

.pm-secondary-button {
    background: #1b2e2a;
    padding: 0.7rem 1rem;
}

.pm-primary-button {
    padding: 0.8rem 1.2rem;
}

.pm-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pm-cart-toast {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    transform: translateY(16px);
    opacity: 0;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: #10231d;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    z-index: 2000;
    transition: all 0.2s ease;
    font-weight: 600;
}

.pm-cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-hero-banner {
    background: #12181f;
    color: #ffffff;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.75rem, 3.5vw, 2.5rem);
}

.contact-hero-banner .store-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-hero-banner .kicker {
    color: #ff5a1f;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.contact-hero-banner h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
    max-width: 760px;
    color: #ffffff;
}

.contact-hero-banner .hero-subtext {
    color: #a9b2bd;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 640px;
    margin: 0;
    line-height: 1.6;
}

.pm-contact-section {
    background: #f8fafc;
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.pm-contact-layout {
    width: min(1100px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
}

.pm-contact-card,
.pm-contact-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    padding: clamp(1.25rem, 2.5vw, 2.25rem);
}

.card-header-group {
    margin-bottom: 1.75rem;
}

.badge-tag {
    display: inline-block;
    background: rgba(255, 90, 31, 0.1);
    color: #ff5a1f;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.pm-contact-card h2,
.pm-contact-form h3 {
    margin: 0 0 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 700;
    color: #0f172a;
}

.pm-contact-card p {
    margin: 0 0 1rem;
    color: #64748b;
    line-height: 1.6;
}

.contact-info-list {
    display: grid;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid rgba(255, 90, 31, 0.2);
    color: #ff5a1f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-item strong {
    display: block;
    color: #0f172a;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.info-item span,
.info-item a {
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.phone-link {
    color: #ff5a1f;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.05rem;
    text-decoration: none;
}

.email-link {
    color: #0f172a;
    font-weight: 600;
    text-decoration: underline;
}

.pm-contact-form {
    display: block;
}

.pm-field-group {
    display: block;
    margin-bottom: 1.15rem;
}

.pm-contact-form label,
.pm-field-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.pm-contact-form input,
.pm-contact-form textarea,
.pm-field-group input,
.pm-field-group textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    padding: 0.75rem 1rem;
    font: inherit;
    font-size: 1rem;
    color: #0f172a;
    box-sizing: border-box;
}

.pm-contact-form input:focus,
.pm-contact-form textarea:focus,
.pm-field-group input:focus,
.pm-field-group textarea:focus {
    outline: none;
    border-color: #ff5a1f;
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15);
}

.pm-contact-form textarea,
.pm-field-group textarea {
    resize: vertical;
    min-height: 130px;
}

.pm-contact-form .button,
.pm-contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: #ff5a1f;
    color: #fff;
    font: 700 1.05rem/1 "IBM Plex Sans", sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 90, 31, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.pm-contact-form .button:hover,
.pm-contact-form button[type="submit"]:hover {
    background: #e04810;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 90, 31, 0.4);
}

.form-result {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #16a34a;
    font-weight: 600;
    text-align: center;
}

.pm-services-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
}

.pm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.pm-service-feature {
    background: #fff;
    border: 1px solid rgba(23,34,31,0.08);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 16px 32px rgba(17,26,22,0.04);
}

.pm-services-cta {
    background: #0f1b1a;
    color: #fff;
    border-radius: 18px;
    padding: 2rem;
}

.pm-cart-shell,
.pm-account-shell {
    padding: 4rem 0 5rem;
}

@media (max-width: 900px) {
    .pm-services-layout,
    .pm-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .pm-services-grid {
        grid-template-columns: 1fr;
    }
}

.pm-cart-wrapper,
.pm-account-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 1.5rem;
    width: min(1100px, 90%);
    margin: 0 auto;
}

.pm-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(23,34,31,0.08);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 45px rgba(17, 26, 22, 0.06);
}

.pm-cart-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.65);
}

.pm-cart-table th,
.pm-cart-table td {
    padding: 1rem 0.8rem;
    border-bottom: 1px solid rgba(23,34,31,0.08);
    text-align: left;
    vertical-align: middle;
}

.pm-cart-table thead th {
    color: #71807a;
    font-size: 0.77rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pm-cart-product {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.pm-product-thumb {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(23,34,31,0.06);
}

.pm-cart-product div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pm-cart-product span {
    color: #66756d;
    font-size: 0.8rem;
}

.pm-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(23,34,31,0.1);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.pm-qty-box button {
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    color: #17221f;
}

.pm-qty-box span {
    min-width: 2.1rem;
    text-align: center;
    font-weight: 700;
}

.pm-remove-button {
    background: none;
    border: none;
    color: #b4462a;
    font-weight: 700;
    cursor: pointer;
}

.pm-cart-summary {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: #f1efe8;
    border: 1px solid rgba(23,34,31,0.06);
    border-radius: 18px;
    height: fit-content;
}

.pm-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #364740;
    font-weight: 600;
}

.pm-cart-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: #465b55;
}

.pm-kicker {
    margin: 0 0 .5rem;
    color: #e55432;
    font: 500 11px 'DM Mono', monospace;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pm-account-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pm-account-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pm-stat-card {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1rem 1.1rem;
    background: #f6f3ed;
    border: 1px solid rgba(23,34,31,0.08);
    border-radius: 14px;
}

.pm-stat-card span {
    color: #5e6963;
    font-size: .79rem;
}

.pm-stat-card strong {
    font-size: 1.8rem;
    line-height: 1.1;
}

.pm-auth-form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.pm-reset-link {
    display: inline-block;
    margin-top: 0.2rem;
    color: #e55432;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
}

.pm-reset-form {
    margin-top: 0.75rem;
}

.pm-hidden {
    display: none;
}

.pm-auth-form .pm-field {
    display: grid;
    gap: 0.45rem;
}

.pm-auth-form label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #233730;
}

.pm-auth-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(23,34,31,0.12);
    border-radius: 12px;
    font: inherit;
    background: #fff;
    color: #10231d;
    box-shadow: inset 0 1px 2px rgba(16,35,29,0.02);
}

.pm-auth-form input:focus {
    outline: 2px solid rgba(229, 84, 50, 0.18);
    border-color: rgba(229, 84, 50, 0.45);
}

.pm-card h3 {
    margin: 0;
    font-size: 1.35rem;
    color: #162521;
}

.pm-order-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(23,34,31,0.08);
}

.pm-order-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pm-order-item span {
    color: #607067;
    font-size: 0.8rem;
}

@media (max-width: 820px) {
    .pm-top-utility {
        margin-left: 0;
    }

    .pm-cart-wrapper,
    .pm-account-grid,
    .pm-checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .pm-account-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   FULL E-COMMERCE CHECKOUT & TRACKING STYLES
   ============================================================ */
.pm-checkout-shell {
    padding: 2.5rem 0 5rem;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.pm-checkout-breadcrumb-bar {
    width: min(1100px, 92%);
    margin: 0 auto 1.5rem;
}

.pm-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.pm-bc-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pm-bc-link:hover {
    color: #0f172a;
}

.pm-bc-cart {
    color: #ff5a1f;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 90, 31, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 90, 31, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.pm-bc-cart:hover {
    background: rgba(255, 90, 31, 0.15);
    border-color: rgba(255, 90, 31, 0.35);
    color: #e04810;
    transform: translateX(-2px);
}

.pm-bc-sep {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.pm-bc-current {
    color: #0f172a;
    font-weight: 700;
}

.pm-checkout-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
    gap: 2rem;
    width: min(1180px, 92%);
    margin: 0 auto;
    align-items: start;
}

.pm-checkout-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.pm-checkout-step {
    margin-bottom: 2.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.pm-checkout-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pm-step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.pm-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ff5a1f;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.pm-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
}

.pm-form-grid .full-span {
    grid-column: 1 / -1;
}

.pm-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pm-form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.pm-form-field input,
.pm-form-field select,
.pm-form-field textarea {
    padding: 0.85rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pm-form-field input:focus,
.pm-form-field select:focus,
.pm-form-field textarea:focus {
    outline: none;
    border-color: #ff5a1f;
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15);
}

/* Option Selectors (Shipping & Payment) */
.pm-option-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pm-option-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
    background: #ffffff;
}

.pm-option-card:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.pm-option-card.is-selected {
    border-color: #ff5a1f;
    background: rgba(255, 90, 31, 0.03);
}

.pm-option-card input[type="radio"] {
    accent-color: #ff5a1f;
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.pm-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.pm-option-info strong {
    font-size: 0.95rem;
    color: #0f172a;
}

.pm-option-info span {
    font-size: 0.82rem;
    color: #64748b;
}

.pm-option-price {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

/* Payment Input Sub-panel */
.pm-payment-panel {
    margin-top: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

/* Order Summary Sticky Card */
.pm-summary-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    position: sticky;
    top: 90px;
}

.pm-summary-card h3 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;

    padding-bottom: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
}

.pm-summary-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 1.25rem;
}

.pm-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-summary-item-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.pm-summary-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.pm-summary-item-info strong {
    font-size: 0.88rem;
    color: #0f172a;
    line-height: 1.25;
}

.pm-summary-item-info span {
    font-size: 0.8rem;
    color: #64748b;
}

.pm-summary-item-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
}

.pm-summary-totals {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.pm-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #475569;
}

.pm-summary-row.total {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    padding-top: 0.65rem;
    border-top: 1.5px solid #0f172a;
    margin-top: 0.25rem;
}

.pm-checkout-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
}

.pm-trust-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.78rem;
}

/* Confirmation & Receipt */
.pm-receipt-card {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.pm-receipt-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pm-receipt-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
}

.pm-receipt-icon svg {
    width: 32px;
    height: 32px;
}

.pm-receipt-header h1 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pm-order-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;

    margin-top: 0.5rem;
}

.pm-receipt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.pm-receipt-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.pm-receipt-col p {
    font-size: 0.92rem;
    color: #0f172a;
    line-height: 1.5;
    margin: 0;
}

.pm-receipt-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 2rem;
}

/* Order Tracking Timeline */
.pm-track-card {
    max-width: 840px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.pm-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 2rem 0 2.5rem;
    position: relative;
}

.pm-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pm-timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    font-weight: 700;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #e2e8f0;
}

.pm-timeline-step.is-complete .pm-timeline-dot {
    background: #ff5a1f;
    color: #ffffff;
    box-shadow: 0 0 0 2px #ff5a1f;
}

.pm-timeline-step.is-current .pm-timeline-dot {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 0 0 3px #ff5a1f;
}

.pm-timeline-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0f172a;
}

.pm-timeline-sub {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

/* ============================================================
   ABOUT US PAGE MODERN LAYOUT STYLES
   ============================================================ */
.pm-about-shell {
    background: #f8fafc;
    color: #0f172a;
}

.pm-about-hero {
    background: #12181f;
    color: #ffffff;
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pm-about-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pm-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 90, 31, 0.12);
    color: #ff5a1f;
    border: 1px solid rgba(255, 90, 31, 0.3);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.pm-about-hero h1 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.18;
    color: #ffffff;
    max-width: 820px;
    margin: 0 0 1.25rem;
}

.pm-about-hero p {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: #94a3b8;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 0 2.5rem;
}

.pm-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.pm-stat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pm-stat-box:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 90, 31, 0.4);
}

.pm-stat-num {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ff5a1f;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pm-stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.2rem;
}

.pm-stat-sub {
    font-size: 0.78rem;
    color: #64748b;
}

/* Story Split Section */
.pm-about-section {
    padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}

.pm-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pm-story-content .pm-section-kicker {
    color: #ff5a1f;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.pm-story-content h2 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 1.25rem;
}

.pm-story-content p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.pm-story-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.pm-story-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pm-story-feature:last-child {
    margin-bottom: 0;
}

.pm-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid rgba(255, 90, 31, 0.2);
    color: #ff5a1f;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.pm-feature-icon svg {
    width: 22px;
    height: 22px;
}

.pm-feature-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem;
}

.pm-feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Values Grid */
.pm-values-section {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}

.pm-values-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.pm-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.pm-section-header .pm-section-kicker {
    color: #ff5a1f;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.pm-section-header h2 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 1rem;
}

.pm-section-header p {
    color: #64748b;
    font-size: 1.02rem;
    margin: 0;
}

.pm-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.pm-value-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pm-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.pm-value-card .pm-feature-icon {
    margin-bottom: 1.25rem;
}

.pm-value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.pm-value-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Workflow Section */
.pm-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.pm-workflow-step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
}

.pm-wf-num {
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff5a1f;
    background: rgba(255, 90, 31, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1rem;
}

.pm-workflow-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.pm-workflow-step p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* About CTA Section */
.pm-about-cta-section {
    background: #0f172a;
    color: #ffffff;
    padding: clamp(3rem, 5vw, 4.5rem) 1.5rem;
    text-align: center;
    border-radius: 24px;
    max-width: 1140px;
    margin: 3rem auto;
}

.pm-about-cta-section h2 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
}

.pm-about-cta-section p {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.pm-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .pm-about-stats-grid,
    .pm-workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pm-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pm-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pm-about-stats-grid,
    .pm-values-grid,
    .pm-workflow-grid {
        grid-template-columns: 1fr;
    }
    .pm-about-cta-section {
        border-radius: 16px;
        margin: 2rem 1rem;
        padding: 2.5rem 1.25rem;
    }
}



