@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --pto-primary: #2563eb;
    --pto-primary-dark: #1d4ed8;
    --pto-primary-soft: #eff6ff;
    --pto-accent: #38bdf8;
    --pto-success: #059669;
    --pto-dark: #1e293b;
    --pto-gray: #64748b;
    --pto-light: #f8fafc;
    --pto-white: #ffffff;
    --pto-radius: 12px;
    --pto-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --pto-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.08);
}

/* Reset & base */
body.pto-landing {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--pto-dark);
    font-size: 16px;
    line-height: 1.6;
    background: var(--pto-white);
    padding-top: 72px;
}

.pto-landing main {
    overflow-x: hidden;
}

.pto-landing h1,
.pto-landing h2,
.pto-landing h3,
.pto-landing h4,
.pto-landing h5 {
    font-weight: 700;
    line-height: 1.25;
}

.pto-landing .section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--pto-dark);
}

.pto-landing .section-subtitle {
    font-size: 1.125rem;
    color: var(--pto-gray);
    max-width: 640px;
    margin: 0 auto 3rem;
}

/* Navbar */
.pto-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
    min-height: 72px;
}

.pto-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    flex-wrap: wrap;
    gap: 8px;
}

.pto-navbar .pto-nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pto-navbar .pto-logo img {
    height: 36px;
    width: auto;
}

.pto-navbar .pto-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pto-navbar .pto-nav-links a {
    color: var(--pto-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.pto-navbar .pto-nav-links a:hover {
    background: var(--pto-light);
    color: var(--pto-primary);
    text-decoration: none;
}

.pto-nav-user {
    font-size: 13px;
    font-weight: 600;
    color: var(--pto-gray);
    padding: 8px 12px;
}

.pto-nav-logout-form {
    margin: 0;
    display: inline;
}

.pto-nav-logout-btn {
    border: none;
    background: transparent;
    color: var(--pto-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
}

.pto-nav-logout-btn:hover {
    color: var(--pto-primary);
    background: var(--pto-primary-soft);
}

.pto-navbar .pto-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pto-navbar .pto-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.pto-navbar .pto-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pto-dark);
    margin: 5px 0;
    border-radius: 2px;
}

/* Buttons */
.pto-btn {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 10px;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
}

.pto-btn:hover,
.pto-btn:focus {
    text-decoration: none;
    transform: translateY(-1px);
}

.pto-btn-primary {
    background: var(--pto-primary);
    color: var(--pto-white);
    border-color: var(--pto-primary);
}

.pto-btn-primary:hover {
    background: var(--pto-primary-dark);
    border-color: var(--pto-primary-dark);
    color: var(--pto-white);
}

.pto-btn-outline {
    background: transparent;
    color: var(--pto-primary);
    border-color: rgba(37, 99, 235, 0.35);
}

.pto-btn-outline:hover {
    background: var(--pto-primary-soft);
    color: var(--pto-primary-dark);
    border-color: var(--pto-primary);
}

.pto-hero .pto-btn-outline,
.pto-cta .pto-btn-outline {
    color: var(--pto-primary);
    border-color: rgba(37, 99, 235, 0.4);
}

.pto-hero .pto-btn-outline:hover,
.pto-cta .pto-btn-outline:hover {
    background: var(--pto-white);
    color: var(--pto-primary-dark);
    border-color: var(--pto-primary);
}

.pto-btn-light {
    background: var(--pto-white);
    color: var(--pto-primary);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--pto-shadow);
}

.pto-btn-light:hover {
    background: var(--pto-primary-soft);
    color: var(--pto-primary-dark);
    border-color: rgba(37, 99, 235, 0.3);
}

.pto-btn-success {
    background: var(--pto-success);
    color: var(--pto-white);
    border-color: var(--pto-success);
}

.pto-btn-success:hover {
    background: #047857;
    color: var(--pto-white);
}

.pto-btn-warning {
    background: #fffbeb;
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.35);
}

.pto-btn-warning:hover {
    background: #fef3c7;
    color: #92400e;
}

.pto-btn-sm {
    font-size: 13px;
    padding: 8px 18px;
}

.pto-btn-lg {
    font-size: 16px;
    padding: 14px 32px;
}

.pto-btn-block {
    display: block;
    width: 100%;
}

/* Hero */
.pto-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #eef6ff 100%);
    color: var(--pto-dark);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.pto-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: 8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pto-hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -40px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pto-hero .container {
    position: relative;
    z-index: 1;
}

.pto-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pto-hero-badge {
    display: inline-block;
    background: var(--pto-primary-soft);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: var(--pto-primary);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pto-hero-badge-muted {
    background: #f1f5f9;
    border-color: rgba(148, 163, 184, 0.25);
    color: #64748b;
}

.pto-hero h1 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    color: var(--pto-dark);
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 14em;
}

.pto-hero-accent {
    display: block;
    color: var(--pto-primary);
    font-weight: 800;
}

.pto-hero-lead {
    font-size: 1.125rem;
    max-width: 480px;
    margin: 0 0 22px;
    line-height: 1.65;
    color: var(--pto-gray);
}

.pto-hero-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.pto-hero-format {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
}

.pto-hero-format i {
    font-size: 1rem;
}

.pto-hero-format-cloud {
    background: #eff6ff;
    border-color: rgba(37, 99, 235, 0.15);
    color: #1d4ed8;
}

.pto-hero-format-box {
    background: #ecfdf5;
    border-color: rgba(5, 150, 105, 0.15);
    color: #047857;
}

.pto-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.pto-hero-footnote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
}

.pto-hero-footnote a {
    color: var(--pto-gray);
    text-decoration: none;
    font-weight: 500;
}

.pto-hero-footnote a:hover {
    color: var(--pto-primary);
}

.pto-hero-footnote a .bi {
    margin-right: 4px;
}

.pto-hero-footnote-sep {
    color: #cbd5e1;
}

/* Hero visual panel */
.pto-hero-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    padding: 20px;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.04),
        0 20px 40px -12px rgba(37, 99, 235, 0.12);
}

.pto-hero-panel-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.pto-hero-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.pto-hero-panel-dot:first-child { background: #fca5a5; }
.pto-hero-panel-dot:nth-child(2) { background: #fcd34d; }
.pto-hero-panel-dot:nth-child(3) { background: #86efac; }

.pto-hero-panel-title {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.01em;
}

.pto-hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pto-hero-panel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid transparent;
}

.pto-hero-panel-item i {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pto-hero-panel-item-blue { background: #eff6ff; color: #1d4ed8; border-color: rgba(37, 99, 235, 0.1); }
.pto-hero-panel-item-purple { background: #f5f3ff; color: #6d28d9; border-color: rgba(109, 40, 217, 0.1); }
.pto-hero-panel-item-green { background: #ecfdf5; color: #047857; border-color: rgba(4, 120, 87, 0.1); }
.pto-hero-panel-item-sky { background: #f0f9ff; color: #0369a1; border-color: rgba(3, 105, 161, 0.1); }
.pto-hero-panel-item-rose { background: #fff1f2; color: #be123c; border-color: rgba(190, 18, 60, 0.1); }
.pto-hero-panel-item-amber { background: #fffbeb; color: #b45309; border-color: rgba(180, 83, 9, 0.1); }

.pto-hero-panel-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.pto-hero-panel-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pto-primary);
    line-height: 1;
}

.pto-hero-panel-stat span {
    font-size: 13px;
    color: var(--pto-gray);
}

/* Sections */
.pto-section {
    padding: 80px 0;
}

.pto-section-light {
    background: var(--pto-light);
}

.pto-section-white {
    background: var(--pto-white);
}

/* Benefit cards */
.pto-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.pto-benefits-grid > [class*="col-"] {
    padding: 0 12px;
    margin-bottom: 24px;
}

.pto-card {
    background: var(--pto-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--pto-radius);
    box-shadow: var(--pto-shadow);
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

.pto-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pto-shadow-lg);
}

.pto-card-body {
    padding: 32px 24px;
    text-align: center;
}

.pto-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    line-height: 1;
}

.pto-card-icon i {
    font-size: 22px;
    line-height: 1;
}

.pto-card-icon-blue { background: #eff6ff; color: #2563eb; }
.pto-card-icon-sky { background: #f0f9ff; color: #0284c7; }
.pto-card-icon-green { background: #ecfdf5; color: #059669; }
.pto-card-icon-amber { background: #fffbeb; color: #d97706; }
.pto-card-icon-purple { background: #f5f3ff; color: #7c3aed; }
.pto-card-icon-rose { background: #fff1f2; color: #e11d48; }

.pto-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--pto-dark);
}

.pto-card p {
    color: var(--pto-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Video */
.pto-video-card {
    background: var(--pto-white);
    border-radius: var(--pto-radius);
    box-shadow: var(--pto-shadow-lg);
    padding: 40px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.pto-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--pto-radius);
    background: var(--pto-dark);
}

.pto-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Features */
.pto-features-grid > [class*="col-"] {
    margin-bottom: 24px;
}

.pto-feature-card {
    background: var(--pto-white);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--pto-radius);
    box-shadow: var(--pto-shadow);
    padding: 28px 24px;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pto-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pto-shadow-lg);
}

.pto-feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1;
}

.pto-feature-card-icon i {
    font-size: 22px;
    line-height: 1;
}

.pto-feature-card-icon-blue { background: #eff6ff; color: #2563eb; }
.pto-feature-card-icon-green { background: #ecfdf5; color: #059669; }
.pto-feature-card-icon-purple { background: #f5f3ff; color: #7c3aed; }
.pto-feature-card-icon-sky { background: #f0f9ff; color: #0284c7; }
.pto-feature-card-icon-amber { background: #fffbeb; color: #d97706; }
.pto-feature-card-icon-rose { background: #fff1f2; color: #e11d48; }

.pto-feature-card h3 {
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: var(--pto-dark);
}

.pto-feature-card p {
    color: var(--pto-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pto-feature-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--pto-light);
    padding-top: 14px;
}

.pto-feature-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--pto-dark);
    margin-bottom: 8px;
    line-height: 1.45;
}

.pto-feature-card-list li:last-child {
    margin-bottom: 0;
}

.pto-feature-card-list .bi-check2 {
    color: var(--pto-success);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Audience */
.pto-audience-card .pto-card-body {
    text-align: left;
    padding: 28px;
}

.pto-audience-card h5 {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--pto-light);
}

.pto-audience-card ul {
    padding-left: 20px;
    margin: 0;
    color: var(--pto-gray);
}

.pto-audience-card li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Pricing */
.pto-pricing-grid > [class*="col-"] {
    margin-bottom: 24px;
}

.pto-pricing-card {
    background: var(--pto-white);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--pto-radius);
    box-shadow: var(--pto-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pto-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pto-shadow-lg);
}

.pto-pricing-card--cloud,
.pto-pricing-card--saas {
    border-top: 3px solid var(--pto-primary);
}

.pto-pricing-card--box {
    border-top: 3px solid var(--pto-success);
}

.pto-pricing-card-head {
    margin-bottom: 20px;
}

.pto-pricing-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1;
}

.pto-pricing-card-icon i {
    font-size: 22px;
    line-height: 1;
}

.pto-pricing-card-icon-blue { background: #eff6ff; color: #2563eb; }
.pto-pricing-card-icon-green { background: #ecfdf5; color: #059669; }

.pto-pricing-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--pto-gray);
    background: var(--pto-light);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 12px;
}

.pto-pricing-card--cloud .pto-pricing-badge,
.pto-pricing-card--saas .pto-pricing-badge {
    color: var(--pto-primary);
    background: var(--pto-primary-soft);
    border-color: rgba(37, 99, 235, 0.15);
}

.pto-pricing-card--box .pto-pricing-badge {
    color: var(--pto-success);
    background: #ecfdf5;
    border-color: rgba(5, 150, 105, 0.15);
}

.pto-pricing-card-head h3 {
    font-size: 1.35rem;
    margin: 0 0 10px;
    color: var(--pto-dark);
}

.pto-pricing-card-head p {
    color: var(--pto-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.pto-pricing-list {
    list-style: none;
    padding: 16px 0 0;
    margin: 0 0 24px;
    flex: 1;
    border-top: 1px solid var(--pto-light);
}

.pto-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--pto-dark);
    margin-bottom: 10px;
    line-height: 1.45;
}

.pto-pricing-list li:last-child {
    margin-bottom: 0;
}

.pto-pricing-list .bi-check2 {
    color: var(--pto-success);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pto-pricing-card-foot {
    margin-top: auto;
}

.pto-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    padding: 14px 16px;
    background: var(--pto-light);
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.pto-pricing-price-label {
    font-size: 14px;
    color: var(--pto-gray);
}

.pto-pricing-price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pto-dark);
    line-height: 1;
}

.pto-pricing-price-period {
    font-size: 14px;
    color: var(--pto-gray);
}

.pto-pricing-note {
    font-size: 13px;
    color: var(--pto-gray);
    text-align: center;
    margin-top: 8px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pto-pricing-note a {
    color: var(--pto-primary);
}

.pto-pricing-its-link {
    margin: 12px 0 0;
    font-size: 13px;
    text-align: center;
}

.pto-pricing-its-link a {
    color: var(--pto-gray);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pto-order-success {
    padding: 48px 32px;
}

.pto-order-success-icon {
    font-size: 3.5rem;
    color: #059669;
    margin-bottom: 16px;
}

.pto-order-success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.pto-audience-note {
    margin-top: 28px;
    font-size: 15px;
    color: var(--pto-gray);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

    margin-top: 28px;
    font-size: 15px;
    color: var(--pto-gray);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA */
.pto-cta {
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    color: var(--pto-dark);
    padding: 72px 0;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.pto-cta h2 {
    color: var(--pto-dark);
    font-size: 2rem;
    margin-bottom: 16px;
}

.pto-cta-lead {
    font-size: 1.1rem;
    color: var(--pto-gray);
    margin-bottom: 32px;
}

.pto-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.pto-cta-phone {
    font-size: 1rem;
    color: var(--pto-gray);
}

.pto-cta-phone .bi {
    margin-right: 6px;
    color: var(--pto-primary);
}
    color: var(--pto-primary);
    font-weight: 700;
    text-decoration: none;
}

.pto-cta-phone a:hover {
    color: var(--pto-primary-dark);
    text-decoration: underline;
}

/* Footer */
.pto-footer {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 30px;
}

.pto-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    text-decoration: none;
}

.pto-footer-brand:hover {
    text-decoration: none;
}

.pto-footer-brand-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--pto-white);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pto-footer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pto-footer-brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pto-white);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.pto-footer-brand-product {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.pto-footer h3 {
    color: var(--pto-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pto-footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.8;
}

.pto-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.pto-footer a:hover {
    color: var(--pto-white);
    text-decoration: underline;
}

.pto-footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.pto-footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie consent override */
#cookieConsent {
    z-index: 1040;
}

.pto-features-cta {
    margin-top: 40px;
}

/* Order page */
.pto-order-section {
    padding: 48px 0 72px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pto-order-aside {
    position: sticky;
    top: 96px;
}

.pto-order-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--pto-primary);
    margin-bottom: 10px;
}

.pto-order-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pto-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.pto-order-lead {
    color: var(--pto-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pto-order-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pto-order-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--pto-dark);
    margin-bottom: 12px;
}

.pto-order-benefits .bi {
    color: var(--pto-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.pto-order-contact {
    padding: 16px 18px;
    background: var(--pto-primary-soft);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 10px;
}

.pto-order-contact p {
    margin: 0 0 6px;
    font-size: 13px;
    color: var(--pto-gray);
}

.pto-order-contact a {
    font-weight: 700;
    color: var(--pto-primary);
    text-decoration: none;
}

.pto-order-contact a:hover {
    color: var(--pto-primary-dark);
}

.pto-order-card {
    background: var(--pto-white);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--pto-radius);
    box-shadow: var(--pto-shadow-lg);
    padding: 32px 28px;
}

.pto-order-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 28px;
}

.pto-order-fieldset legend {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pto-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--pto-light);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pto-order-fieldset legend .bi {
    color: var(--pto-primary);
}

.pto-order-form .form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--pto-dark);
}

.pto-order-form .form-control,
.pto-order-form .form-select {
    border-radius: 8px;
    border-color: rgba(148, 163, 184, 0.35);
    padding: 10px 14px;
    font-size: 15px;
}

.pto-order-form .form-control:focus,
.pto-order-form .form-select:focus {
    border-color: var(--pto-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.pto-order-form .hint-block {
    font-size: 12px;
    color: var(--pto-gray);
    margin-top: 4px;
}

.pto-order-submit {
    padding-top: 8px;
    border-top: 1px solid var(--pto-light);
}

.pto-order-agreement {
    font-size: 13px;
    color: var(--pto-gray);
    line-height: 1.5;
    margin-bottom: 18px;
}

.pto-order-agreement a {
    color: var(--pto-primary);
}

/* Orders list & view */
.pto-orders-list-section {
    padding-top: 32px;
}

.pto-orders-list-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pto-orders-list-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pto-orders-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pto-gray);
}

.pto-orders-list-card {
    padding: 0;
    overflow: hidden;
}

.pto-orders-grid {
    overflow-x: auto;
}

.pto-orders-table {
    margin-bottom: 0;
    font-size: 14px;
    --bs-table-bg: transparent;
}

.pto-orders-table > thead > tr > th {
    background: #f8fafc;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--pto-gray);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 14px;
    white-space: nowrap;
}

.pto-orders-table > tbody > tr > td {
    padding: 14px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.pto-orders-table > tbody > tr:hover > td {
    background: #f8fafc;
}

.pto-orders-table > tbody > tr:last-child > td {
    border-bottom: none;
}

.pto-orders-link {
    font-weight: 700;
    color: var(--pto-primary);
    text-decoration: none;
}

.pto-orders-link:hover {
    text-decoration: underline;
}

.pto-orders-name {
    max-width: 220px;
    font-weight: 500;
}

.pto-orders-email {
    font-size: 13px;
    color: var(--pto-gray);
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pto-orders-date {
    white-space: nowrap;
    font-size: 13px;
    color: var(--pto-gray);
}

.pto-orders-actions {
    width: 48px;
    text-align: center;
}

.pto-orders-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: var(--pto-primary);
    background: var(--pto-primary-soft);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.pto-orders-action-btn:hover {
    background: var(--pto-primary);
    color: #fff;
}

.pto-orders-grid-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: #f8fafc;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.pto-orders-summary {
    font-size: 13px;
    color: var(--pto-gray);
}

.pto-orders-pagination {
    margin: 0;
    gap: 4px;
}

.pto-orders-pagination .page-link {
    border-radius: 8px;
    border-color: rgba(148, 163, 184, 0.25);
    color: var(--pto-dark);
    font-size: 13px;
    padding: 6px 12px;
}

.pto-orders-pagination .page-item.active .page-link {
    background: var(--pto-primary);
    border-color: var(--pto-primary);
}

.pto-orders-table .form-select-sm {
    min-width: 130px;
    font-size: 13px;
    border-radius: 8px;
}

.pto-orders-empty {
    text-align: center;
    padding: 56px 24px;
}

.pto-orders-empty > .bi {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.pto-orders-empty h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pto-orders-empty p {
    color: var(--pto-gray);
    margin-bottom: 20px;
}

.pto-order-update-card {
    max-width: 820px;
}

.pto-order-fieldset--admin {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
}

.pto-order-fieldset--admin legend {
    border-bottom-color: rgba(148, 163, 184, 0.25);
}

.pto-order-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--pto-light);
}

.pto-order-view-section {
    padding-top: 32px;
}

.pto-order-view-header {
    margin-bottom: 24px;
}

.pto-order-view-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pto-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.pto-order-view-back:hover {
    color: var(--pto-primary);
}

.pto-order-view-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pto-order-view-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.pto-order-view-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pto-dark);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.pto-order-view-card-title .bi {
    color: var(--pto-primary);
}

.pto-detail-list {
    margin: 0;
}

.pto-detail-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 8px 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.pto-detail-item:last-child {
    border-bottom: none;
}

.pto-detail-item dt {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--pto-gray);
}

.pto-detail-item dd {
    margin: 0;
    font-size: 14px;
    color: var(--pto-dark);
    word-break: break-word;
}

.pto-detail-item dd a {
    color: var(--pto-primary);
    text-decoration: none;
}

.pto-detail-item dd a:hover {
    text-decoration: underline;
}

.pto-detail-item dd code {
    font-size: 13px;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
}

.pto-status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.pto-status-badge--new {
    background: #f1f5f9;
    color: #475569;
}

.pto-status-badge--progress {
    background: #fffbeb;
    color: #b45309;
}

.pto-status-badge--done {
    background: #ecfdf5;
    color: #047857;
}

.pto-status-badge--rejected {
    background: #fef2f2;
    color: #b91c1c;
}

.pto-order-view-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pto-order-view-pending {
    text-align: center;
    padding: 32px 16px;
}

.pto-order-view-pending-icon {
    font-size: 2.5rem;
    color: #d97706;
    margin-bottom: 12px;
}

.pto-order-view-pending h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pto-order-view-pending p {
    color: var(--pto-gray);
    max-width: 420px;
    margin: 0 auto 20px;
}

/* Connection instruction panel */
.pto-instruction {
    font-size: 14px;
    line-height: 1.6;
}

.pto-instruction-steps {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    counter-reset: pto-step;
}

.pto-instruction-step {
    position: relative;
    padding: 0 0 20px 44px;
    border-left: 2px solid rgba(37, 99, 235, 0.15);
    margin-left: 14px;
}

.pto-instruction-step:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.pto-instruction-step::before {
    counter-increment: pto-step;
    content: counter(pto-step);
    position: absolute;
    left: -15px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pto-primary-soft);
    color: var(--pto-primary);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pto-instruction-step h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--pto-dark);
}

.pto-instruction-step ul {
    margin: 0;
    padding-left: 18px;
    color: var(--pto-gray);
}

.pto-instruction-step li + li {
    margin-top: 4px;
}

.pto-instruction-note {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--pto-gray);
}

.pto-instruction-url {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
}

.pto-instruction-url code {
    flex: 1;
    min-width: 200px;
    word-break: break-all;
    font-size: 13px;
    color: var(--pto-dark);
}

.pto-instruction-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.pto-instruction-credential {
    padding: 14px 16px;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
}

.pto-instruction-credential span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--pto-gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.pto-instruction-credential strong {
    font-size: 16px;
    color: var(--pto-dark);
    word-break: break-all;
}

.pto-instruction-links {
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin-bottom: 16px;
}

.pto-instruction-links a {
    color: var(--pto-primary);
    text-decoration: none;
    font-weight: 500;
}

.pto-instruction-links a:hover {
    text-decoration: underline;
}

.pto-instruction-footer {
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 13px;
    color: var(--pto-gray);
}

.pto-instruction-footer p {
    margin: 0 0 6px;
}

.pto-instruction-footer p:last-child {
    margin-bottom: 0;
}

.pto-instruction-footer a {
    color: var(--pto-primary);
}

@media (max-width: 767px) {
    .pto-detail-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .pto-instruction-credentials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .pto-order-aside {
        position: static;
        margin-bottom: 8px;
    }

    .pto-legal-toc {
        position: static;
    }
}

/* Legal / agreement page */
.pto-legal-page {
    padding: 40px 0 72px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pto-legal-header {
    margin-bottom: 32px;
    max-width: 720px;
}

.pto-legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--pto-primary);
    text-decoration: none;
    margin-bottom: 16px;
}

.pto-legal-back:hover {
    color: var(--pto-primary-dark);
    text-decoration: none;
}

.pto-legal-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--pto-primary);
    margin-bottom: 8px;
}

.pto-legal-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pto-dark);
    margin-bottom: 8px;
}

.pto-legal-subtitle {
    font-size: 1.1rem;
    color: var(--pto-gray);
    margin-bottom: 16px;
}

.pto-legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--pto-gray);
}

.pto-legal-meta .bi {
    color: var(--pto-primary);
    margin-right: 4px;
}

.pto-legal-toc {
    position: sticky;
    top: 96px;
    background: var(--pto-white);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--pto-radius);
    padding: 20px 18px;
    box-shadow: var(--pto-shadow);
}

.pto-legal-toc-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--pto-gray);
    margin-bottom: 12px;
}

.pto-legal-toc ol {
    padding-left: 18px;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
}

.pto-legal-toc li {
    margin-bottom: 8px;
}

.pto-legal-toc a {
    color: var(--pto-dark);
    text-decoration: none;
}

.pto-legal-toc a:hover {
    color: var(--pto-primary);
}

.pto-legal-toc-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pto-legal-card {
    background: var(--pto-white);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--pto-radius);
    box-shadow: var(--pto-shadow);
    padding: 36px 32px;
}

.pto-legal-intro {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--pto-light);
}

.pto-legal-intro p {
    color: var(--pto-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.pto-legal-intro p:last-child {
    margin-bottom: 0;
}

.pto-legal-section {
    margin-bottom: 32px;
    padding-bottom: 8px;
}

.pto-legal-section:last-child {
    margin-bottom: 0;
}

.pto-legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pto-dark);
    margin-bottom: 16px;
    padding-top: 8px;
    scroll-margin-top: 96px;
}

.pto-legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pto-dark);
    margin: 20px 0 10px;
}

.pto-legal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--pto-gray);
    margin-bottom: 12px;
    text-align: justify;
}

.pto-legal-section ul {
    padding-left: 20px;
    margin: 0 0 16px;
}

.pto-legal-section li {
    font-size: 15px;
    line-height: 1.65;
    color: var(--pto-gray);
    margin-bottom: 8px;
}

.pto-legal-section a {
    color: var(--pto-primary);
}

@media print {
    .pto-navbar,
    .pto-footer,
    .pto-legal-toc,
    .pto-legal-back,
    #cookieConsent {
        display: none !important;
    }

    body.pto-landing {
        padding-top: 0;
    }

    .pto-legal-card {
        box-shadow: none;
        border: none;
        padding: 0;
    }
}

@media (max-width: 991px) {
    .pto-hero {
        padding: 56px 0 48px;
    }

    .pto-hero h1 {
        max-width: none;
    }

    .pto-hero-lead {
        max-width: none;
    }

    .pto-hero-panel {
        max-width: 520px;
        margin: 8px auto 0;
    }
}

@media (max-width: 767px) {
    body.pto-landing {
        padding-top: 64px;
    }

    .pto-navbar .pto-nav-toggle {
        display: block;
    }

    .pto-navbar .pto-nav-menu {
        display: none;
        width: 100%;
        order: 3;
        padding: 12px 0;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        flex: none;
        justify-content: flex-start;
    }

    .pto-navbar.pto-nav-open .pto-nav-menu {
        display: block;
    }

    .pto-navbar .pto-nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .pto-navbar .pto-nav-links a {
        padding: 10px 14px;
    }

    .pto-navbar .pto-nav-actions {
        margin-left: auto;
    }

    .pto-hero {
        padding: 70px 0 60px;
    }

    .pto-hero h1 {
        font-size: 1.75rem;
    }

    .pto-hero-lead {
        font-size: 1rem;
    }

    .pto-section {
        padding: 56px 0;
    }

    .pto-section-title {
        font-size: 1.5rem;
    }

    .pto-video-card {
        padding: 24px 16px;
    }

    .pto-hero-actions,
    .pto-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pto-hero-actions .pto-btn,
    .pto-cta-actions .pto-btn {
        width: 100%;
    }
}
