﻿/* Partners page styles - DUOPOS */
        /* ---- Partners page styles ---- */

        /* Hero */
        .pt-hero {
            padding: 130px 0 0;
            background: linear-gradient(145deg, #0d2b5e 0%, #1a4a8a 40%, #0e6baf 75%, #0a8fc4 100%);
            position: relative;
            overflow: hidden;
        }
        .pt-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 80% -10%, rgba(99,179,255,0.3) 0%, transparent 65%),
                        radial-gradient(ellipse 55% 50% at 5% 110%, rgba(14,165,233,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .pt-hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding-bottom: 0;
        }
        .pt-hero-left { padding-bottom: 80px; }
        .pt-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(63,133,255,0.15);
            border: 1px solid rgba(63,133,255,0.4);
            color: #93c5fd;
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        .pt-hero h1 {
            font-size: 52px;
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin: 0 0 24px;
        }
        .pt-hero h1 span {
            background: linear-gradient(135deg, #60a5fa, #38bdf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .pt-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.70);
            margin: 0 0 32px;
            line-height: 1.7;
        }
        .pt-hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #3f85ff, #0ea5e9);
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 999px;
            box-shadow: 0 8px 24px rgba(63,133,255,0.45);
            transition: all 0.25s;
        }
        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(63,133,255,0.55);
            color: white;
        }
        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 14px 28px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.25s;
        }
        .btn-hero-secondary:hover {
            background: rgba(255,255,255,0.14);
            color: white;
        }

        /* Hero stats bar */
        .pt-stats-bar {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 0;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-top: 60px;
            background: rgba(0,0,0,0.12);
            backdrop-filter: blur(8px);
        }
        .pt-stat {
            flex: 1;
            padding: 28px 24px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.12);
        }
        .pt-stat:last-child { border-right: none; }
        .pt-stat-num {
            font-size: 36px;
            font-weight: 800;
            color: white;
            line-height: 1;
        }
        .pt-stat-num span {
            background: linear-gradient(135deg, #60a5fa, #38bdf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .pt-stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-top: 6px;
        }

        /* Hero right visual */
        .pt-hero-visual {
            padding-bottom: 80px;
            position: relative;
        }
        .pt-income-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 28px;
            color: white;
        }
        .pt-income-card h4 {
            margin: 0 0 20px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.5);
            font-weight: 600;
        }
        .pt-income-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            font-size: 14px;
        }
        .pt-income-row:last-of-type { border-bottom: none; }
        .pt-income-label { color: rgba(255,255,255,0.65); }
        .pt-income-val {
            font-weight: 700;
            font-size: 16px;
            color: #60a5fa;
        }
        .pt-income-val.green { color: #34d399; }
        .pt-income-total {
            margin-top: 16px;
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(63,133,255,0.2), rgba(14,165,233,0.2));
            border: 1px solid rgba(63,133,255,0.35);
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .pt-income-total span:first-child {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }
        .pt-income-total span:last-child {
            color: white;
            font-size: 22px;
            font-weight: 800;
        }
        .pt-income-disclaimer {
            margin-top: 12px;
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            text-align: center;
        }
        .pt-floating-badge {
            position: absolute;
            top: -18px;
            right: -18px;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(245,158,11,0.45);
            font-weight: 800;
            color: white;
            font-size: 11px;
            line-height: 1.2;
            text-align: center;
        }

        /* Types section */
        .pt-section {
            padding: 96px 0;
        }
        .pt-section-alt {
            background: var(--landing-bg-alt);
        }
        .pt-section-dark {
            background: var(--landing-bg-dark);
        }
        .pt-label {
            display: inline-block;
            background: var(--landing-primary-light);
            color: var(--landing-primary-dark);
            border-radius: 999px;
            padding: 4px 14px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .pt-section-dark .pt-label {
            background: rgba(63,133,255,0.15);
            color: #93c5fd;
        }
        .pt-section-title {
            font-size: 40px;
            font-weight: 800;
            color: var(--landing-text);
            margin: 0 0 16px;
            line-height: 1.15;
        }
        .pt-section-dark .pt-section-title { color: white; }
        .pt-section-sub {
            font-size: 17px;
            color: var(--landing-text-secondary);
            margin: 0 0 56px;
            max-width: 560px;
        }
        .pt-section-dark .pt-section-sub { color: rgba(255,255,255,0.6); }

        /* Tier cards */
        .pt-tiers {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .pt-tier-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(15,23,42,0.07);
            border: 1px solid var(--landing-border);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .pt-tier-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(63,133,255,0.15);
        }
        .pt-tier-card.featured {
            border-color: var(--landing-primary);
            box-shadow: 0 8px 32px rgba(63,133,255,0.2);
            position: relative;
        }
        .pt-tier-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--landing-gradient);
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 999px;
        }
        .pt-tier-header {
            padding: 32px 32px 24px;
            background: var(--landing-gradient-soft);
        }
        .pt-tier-card.featured .pt-tier-header {
            background: var(--landing-gradient);
        }
        .pt-tier-icon {
            width: 52px;
            height: 52px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .pt-tier-icon i {
            font-size: 26px;
            color: var(--landing-primary);
        }
        .pt-tier-card.featured .pt-tier-icon i { color: var(--landing-primary); }
        .pt-tier-header h3 {
            margin: 0 0 6px;
            font-size: 22px;
            font-weight: 700;
            color: var(--landing-text);
        }
        .pt-tier-card.featured .pt-tier-header h3 { color: white; }
        .pt-tier-header p {
            margin: 0;
            font-size: 14px;
            color: var(--landing-text-secondary);
        }
        .pt-tier-card.featured .pt-tier-header p { color: rgba(255,255,255,0.8); }
        .pt-tier-body {
            padding: 28px 32px;
        }
        .pt-commission-big {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 20px;
        }
        .pt-commission-big .num {
            font-size: 56px;
            font-weight: 900;
            background: var(--landing-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        .pt-commission-big .detail {
            font-size: 14px;
            color: var(--landing-text-secondary);
            line-height: 1.4;
        }
        .pt-tier-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .pt-tier-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--landing-text-secondary);
        }
        .pt-tier-features li i {
            color: var(--landing-success);
            font-size: 18px;
            margin-top: 1px;
            flex-shrink: 0;
        }

        /* How it works */
        .pt-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
        }
        .pt-steps::before {
            content: '';
            position: absolute;
            top: 36px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--landing-primary), var(--landing-secondary));
            z-index: 0;
            opacity: 0.25;
        }
        .pt-step {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .pt-step-num {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--landing-gradient);
            color: white;
            font-size: 24px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(63,133,255,0.3);
        }
        .pt-step h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--landing-text);
            margin: 0 0 10px;
        }
        .pt-step p {
            font-size: 14px;
            color: var(--landing-text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* Benefits */
        .pt-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .pt-benefit {
            padding: 28px;
            background: white;
            border: 1px solid var(--landing-border);
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(15,23,42,0.05);
            transition: box-shadow 0.3s, transform 0.3s;
        }
        .pt-benefit:hover {
            box-shadow: 0 8px 28px rgba(63,133,255,0.12);
            transform: translateY(-4px);
        }
        .pt-benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--landing-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .pt-benefit-icon i {
            font-size: 24px;
            color: var(--landing-primary);
        }
        .pt-benefit h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--landing-text);
            margin: 0 0 8px;
        }
        .pt-benefit p {
            font-size: 14px;
            color: var(--landing-text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* Volume incentive */
        .pt-volume-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .pt-volume-card {
            background: white;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid var(--landing-border);
            display: flex;
            gap: 20px;
            align-items: flex-start;
            box-shadow: 0 4px 16px rgba(15,23,42,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .pt-volume-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(63, 133, 255, 0.12);
        }
        .pt-volume-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }
        .pt-volume-icon.orange { background: #fef3c7; color: #d97706; }
        .pt-volume-icon.purple { background: #ede9fe; color: #7c3aed; }
        .pt-volume-card h3 {
            margin: 0 0 6px;
            font-size: 18px;
            font-weight: 700;
            color: var(--landing-text);
        }
        .pt-volume-card p {
            margin: 0;
            font-size: 14px;
            color: var(--landing-text-secondary);
            line-height: 1.6;
        }

        /* CTA final */
        .pt-final-cta {
            padding: 100px 0;
            background: linear-gradient(145deg, #0d2b5e 0%, #1a4a8a 40%, #0e6baf 75%, #0a8fc4 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pt-final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(99,179,255,0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .pt-final-cta h2 {
            font-size: 44px;
            font-weight: 800;
            color: white;
            margin: 0 0 16px;
            position: relative;
        }
        .pt-final-cta p {
            font-size: 18px;
            color: rgba(255,255,255,0.6);
            margin: 0 0 40px;
            position: relative;
        }
        .pt-final-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
        }
        .pt-cta-note {
            margin-top: 20px;
            font-size: 13px;
            color: rgba(255,255,255,0.3);
            position: relative;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .pt-hero h1 { font-size: 40px; }
            .pt-section-title { font-size: 32px; }
        }
        @media (max-width: 768px) {
            .pt-hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .pt-hero-left { padding-bottom: 0; }
            .pt-hero-visual { padding-bottom: 0; }
            .pt-hero h1 { font-size: 34px; }
            .pt-stats-bar { flex-wrap: wrap; }
            .pt-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
            .pt-tiers { grid-template-columns: 1fr; }
            .pt-steps { grid-template-columns: 1fr; }
            .pt-steps::before { display: none; }
            .pt-benefits-grid { grid-template-columns: 1fr; }
            .pt-volume-row { grid-template-columns: 1fr; }
            .pt-final-cta h2 { font-size: 28px; }
            .pt-section { padding: 64px 0; }
        }

        /* Referidor multi-commission */
        .pt-commission-multi {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }
        .pt-comm-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 14px;
            background: var(--landing-gradient-soft);
            border-radius: 10px;
            border: 1px solid rgba(63,133,255,0.15);
        }
        .pt-comm-row.secondary {
            background: #f0fdf4;
            border-color: rgba(16,185,129,0.2);
        }
        .pt-comm-pct {
            font-size: 34px;
            font-weight: 900;
            background: var(--landing-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 56px;
            line-height: 1;
        }
        .pt-comm-row.secondary .pt-comm-pct {
            background: linear-gradient(135deg, #10b981, #059669);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .pt-comm-info { display: flex; flex-direction: column; gap: 2px; }
        .pt-comm-info strong { font-size: 13px; color: var(--landing-text); font-weight: 700; }
        .pt-comm-info span { font-size: 12px; color: var(--landing-text-muted); }

        /* Calculator */
        .pt-calc-wrapper {
            background: white;
            border-radius: 24px;
            box-shadow: 0 8px 40px rgba(15,23,42,0.1);
            border: 1px solid var(--landing-border);
            overflow: hidden;
        }
        .pt-calc-tabs {
            display: flex;
            border-bottom: 1px solid var(--landing-border);
        }
        .pt-calc-tab {
            flex: 1;
            padding: 18px 24px;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            margin-bottom: -1px;
            font-size: 15px;
            font-weight: 600;
            color: var(--landing-text-secondary);
            cursor: pointer;
            transition: all 0.2s;
        }
        .pt-calc-tab.active {
            color: var(--landing-primary);
            border-bottom-color: var(--landing-primary);
            background: var(--landing-primary-light);
        }
        .pt-calc-inputs {
            padding: 36px 40px 28px;
            display: flex;
            flex-direction: column;
            gap: 32px;
            border-bottom: 1px solid var(--landing-border);
        }
        .pt-calc-slider-group { display: flex; flex-direction: column; gap: 10px; }
        .pt-calc-slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .pt-calc-slider-label { font-size: 15px; font-weight: 600; color: var(--landing-text); }
        .pt-calc-slider-val {
            font-size: 20px;
            font-weight: 800;
            color: var(--landing-primary);
            min-width: 90px;
            text-align: right;
        }
        .pt-calc-range {
            width: 100%;
            height: 6px;
            -webkit-appearance: none;
            appearance: none;
            background: var(--landing-border);
            border-radius: 999px;
            outline: none;
            cursor: pointer;
        }
        .pt-calc-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px; height: 22px;
            border-radius: 50%;
            background: var(--landing-gradient);
            box-shadow: 0 2px 8px rgba(63,133,255,0.4);
            cursor: pointer;
            transition: transform 0.15s;
        }
        .pt-calc-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
        .pt-calc-range-marks {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--landing-text-muted);
            padding: 0 2px;
        }
        .pt-calc-results {
            padding: 32px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }
        .pt-calc-result-main { display: flex; flex-direction: column; }
        .pt-calc-badge-tier {
            display: inline-block;
            background: var(--landing-gradient);
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 999px;
            margin-bottom: 16px;
            align-self: flex-start;
        }
        .pt-calc-main-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--landing-text-muted);
            font-weight: 600;
            margin-bottom: 8px;
        }
        .pt-calc-main-val {
            font-size: 52px;
            font-weight: 900;
            background: var(--landing-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 10px;
            transition: all 0.25s;
        }
        .pt-calc-main-note { font-size: 13px; color: var(--landing-text-muted); line-height: 1.5; }
        .pt-calc-result-details { display: flex; flex-direction: column; gap: 10px; }
        .pt-calc-detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 16px;
            background: var(--landing-bg-alt);
            border-radius: 10px;
            font-size: 14px;
        }
        .pt-calc-detail-row.highlight {
            background: var(--landing-gradient-soft);
            border: 1px solid rgba(63,133,255,0.2);
        }
        .pt-calc-detail-label { color: var(--landing-text-secondary); }
        .pt-calc-detail-val { font-weight: 700; color: var(--landing-text); font-size: 16px; }
        .pt-calc-detail-row.highlight .pt-calc-detail-val { color: var(--landing-primary-dark); font-size: 18px; }
        .pt-calc-cta {
            padding: 24px 40px 36px;
            text-align: center;
            border-top: 1px solid var(--landing-border);
        }
        .pt-calc-disclaimer {
            margin-top: 14px;
            font-size: 12px;
            color: var(--landing-text-muted);
        }
        @media (max-width: 768px) {
            .pt-calc-inputs, .pt-calc-cta { padding: 24px 20px; }
            .pt-calc-results { grid-template-columns: 1fr; padding: 24px 20px; gap: 20px; }
            .pt-calc-main-val { font-size: 38px; }
            .pt-calc-tab { font-size: 13px; padding: 14px 12px; }
        }
