/* ============================================
   SavvySpot Company Registration — Styles
   ============================================ */

/* ============ HERO ============ */
.cp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.cp-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 141, 157, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: cpFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.cp-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83, 89, 154, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    animation: cpFloat 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes cpFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.cp-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.cp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(83, 89, 154, 0.15);
    border: 1px solid rgba(83, 89, 154, 0.25);
    color: #a8adde;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    width: fit-content;
    letter-spacing: 0.02em;
}

.cp-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
}

.cp-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 520px;
}

.cp-hero-stats {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

/* ---- Hero stat cards ---- */
.cp-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 18px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    flex: 1;
    min-width: 0;
}

.cp-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 141, 157, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cp-stat-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(6, 141, 157, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cp-stat-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(6, 141, 157, 0.12);
    color: #068D9D;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cp-stat-icon.accent {
    background: rgba(128, 222, 217, 0.12);
    color: #80DED9;
}

.cp-stat-icon.purple {
    background: rgba(83, 89, 154, 0.15);
    color: #a8adde;
}

.cp-stat-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.cp-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cp-stat-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.cp-stat-desc {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1px;
}

.cp-stat-trend {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.cp-stat-trend.up {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

.cp-stat-trend.down {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.cp-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.cp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.cp-btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 141, 157, 0.35);
}

.cp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.cp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============ PARTNER APP PHONE MOCKUP ============ */
.cp-hero-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}

.cp-phone {
    width: 270px;
    background: #1c1c1e;
    border-radius: 44px;
    border: 2.5px solid #3a3a3c;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 100px rgba(6, 141, 157, 0.06);
}

/* iPhone 16 Dynamic Island */
.cp-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 26px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

.cp-notch-cam {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #1a2744 40%, #0d1520 100%);
    border-radius: 50%;
    border: 1px solid #2a3a52;
    box-shadow: inset 0 0 2px rgba(100,140,255,0.15);
}

.cp-phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 22px 4px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 5;
}

.cp-status-icons {
    display: flex;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
}

.cp-phone-screens {
    width: 100%;
    overflow: hidden;
}

.cp-screen-track {
    display: flex;
    width: 400%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-app-screen {
    width: 100%;
    min-height: 420px;
    padding: 8px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #0f1729;
}

.cp-app-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

/* Dashboard stats */
.cp-stats-row {
    display: flex;
    gap: 8px;
}

.cp-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cp-stat-box strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.cp-stat-box small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
}

/* Mock cards */
.cp-mock-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
}

.cp-mock-title {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mini chart bars */
.cp-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
}

.cp-bar {
    flex: 1;
    background: rgba(6, 141, 157, 0.25);
    border-radius: 3px 3px 0 0;
    transition: background 0.3s;
}

.cp-bar.active {
    background: #068D9D;
}

/* Activity list */
.cp-activity {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cp-activity-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
}

.cp-activity-item small {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3);
    font-size: 8px;
}

.cp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
}

.cp-dot.green { background: #22C55E; }
.cp-dot.blue { background: #068D9D; }

/* Scanner screen */
.cp-scan-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
}

.cp-scan-frame {
    width: 140px;
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-scan-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #068D9D;
    border-style: solid;
    border-width: 0;
}

.cp-scan-corner.tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-radius: 4px 0 0 0; }
.cp-scan-corner.tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-radius: 0 4px 0 0; }
.cp-scan-corner.bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 4px; }
.cp-scan-corner.br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 4px 0; }

.cp-scan-line {
    position: absolute;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #068D9D, transparent);
    top: 50%;
    animation: cpScanLine 2s ease-in-out infinite;
}

@keyframes cpScanLine {
    0%, 100% { top: 20%; opacity: 0.4; }
    50% { top: 80%; opacity: 1; }
}

.cp-scan-hint {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

.cp-scan-result {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}

.cp-scan-result strong {
    font-size: 11px;
    color: #fff;
}

.cp-scan-result small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.cp-scan-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

/* Discounts screen */
.cp-discount-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cp-discount-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
}

.cp-discount-pct {
    background: rgba(6, 141, 157, 0.15);
    color: #068D9D;
    font-size: 14px;
    font-weight: 800;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cp-discount-pct.off {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.25);
}

.cp-discount-info {
    flex: 1;
    min-width: 0;
}

.cp-discount-info strong {
    display: block;
    font-size: 11px;
    color: #fff;
}

.cp-discount-info small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.35);
}

.cp-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.cp-status-dot.on {
    background: #22C55E;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

/* Token bar */
.cp-token-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.cp-token-fill {
    height: 100%;
    background: linear-gradient(90deg, #F59E0B, #068D9D);
    border-radius: 3px;
}

.cp-token-info small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.35);
}

/* Stats screen — period tabs */
.cp-stats-period {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.cp-period-btn {
    flex: 1;
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    padding: 5px 0;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s;
}

.cp-period-btn.active {
    background: rgba(6, 141, 157, 0.15);
    border-color: rgba(6, 141, 157, 0.25);
    color: #068D9D;
}

/* Stats screen — area chart */
.cp-area-chart {
    width: 100%;
    height: 55px;
    margin-top: 4px;
}

.cp-chart-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Stats screen — top list */
.cp-top-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cp-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
}

.cp-top-rank {
    font-weight: 800;
    color: #F59E0B;
    font-size: 10px;
    width: 18px;
}

.cp-top-name {
    flex: 1;
}

.cp-top-count {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
}

/* Phone nav */
.cp-phone-nav {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 4px 6px;
}

.cp-nav-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.cp-nav-tab i { font-size: 12px; }

.cp-nav-tab.active {
    color: #068D9D;
}

.cp-phone-indicator {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 4px auto 8px;
}

/* Dots and label */
.cp-phone-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.cp-dot-ind {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.cp-dot-ind.active {
    width: 20px;
    border-radius: 4px;
    background: var(--primary);
}

.cp-phone-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============ DASHBOARD PREVIEW ============ */
.cp-preview {
    padding: 120px 0;
    background: var(--gray-50);
}

.cp-dashboard-showcase {
    margin-top: 48px;
    margin-bottom: 56px;
}

.cp-browser-frame {
    background: #111827;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cp-browser-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #1a2035;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cp-browser-dots {
    display: flex;
    gap: 6px;
}

.cp-browser-dots .dot-red { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.cp-browser-dots .dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; }
.cp-browser-dots .dot-green { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; }

.cp-browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cp-browser-url i {
    color: #22c55e;
    font-size: 0.7rem;
}

.cp-browser-content {
    display: flex;
    min-height: 380px;
}

/* Dashboard sidebar mock */
.cp-dash-sidebar {
    width: 200px;
    background: #0a1628;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px 0;
    flex-shrink: 0;
}

.cp-dash-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.cp-dash-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 8px;
}

.cp-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
}

.cp-dash-nav-item i {
    width: 16px;
    text-align: center;
    font-size: 0.7rem;
}

.cp-dash-nav-item.active {
    background: rgba(6, 141, 157, 0.12);
    color: #80DED9;
}

/* Dashboard main mock */
.cp-dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cp-dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
}

.cp-dash-page-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.cp-dash-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cp-dash-token-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(6, 141, 157, 0.08);
    border: 1px solid rgba(6, 141, 157, 0.12);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #068D9D;
}

.cp-dash-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

.cp-online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

.cp-dash-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Stat cards row */
.cp-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.cp-dash-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
}

.cp-dash-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.cp-dash-stat-icon.primary { background: rgba(6, 141, 157, 0.12); color: #068D9D; }
.cp-dash-stat-icon.green { background: rgba(34, 197, 94, 0.12); color: #22C55E; }
.cp-dash-stat-icon.blue { background: rgba(109, 157, 197, 0.12); color: #6D9DC5; }
.cp-dash-stat-icon.purple { background: rgba(83, 89, 154, 0.12); color: #53599A; }

.cp-dash-stat div:last-child {
    display: flex;
    flex-direction: column;
}

.cp-dash-stat strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.cp-dash-stat small {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Cards row */
.cp-dash-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cp-dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cp-dash-card-head {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cp-dash-card-body {
    padding: 12px 14px;
}

.cp-dash-activity-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cp-dash-activity-row:last-child { border-bottom: none; }

.cp-dash-activity-row small {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.25);
}

.cp-dash-act-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cp-dash-act-dot.green { background: #22C55E; }
.cp-dash-act-dot.blue { background: #068D9D; }

.cp-dash-qr-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cp-dash-qr-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.8rem;
}

.cp-dash-qr-preview small {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Feature highlights */
.cp-dash-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cp-dash-feat {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.cp-dash-feat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 141, 157, 0.2);
}

.cp-dash-feat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 141, 157, 0.1), rgba(128, 222, 217, 0.1));
    border-radius: var(--radius-md);
    margin: 0 auto 14px;
    font-size: 1.1rem;
    color: var(--primary);
}

.cp-dash-feat h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.cp-dash-feat p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============ BENEFITS ============ */
.cp-benefits {
    padding: 120px 0;
    background: var(--white);
}

.cp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============ PROCESS / HOW IT WORKS ============ */
.cp-process {
    padding: 120px 0;
    background: var(--gray-50);
}

.cp-steps {
    display: flex;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.cp-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 36px;
    right: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    border-radius: 2px;
    z-index: 0;
}

.cp-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cp-step-num {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 24px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 8px rgba(6, 141, 157, 0.08);
    transition: var(--transition);
}

.cp-step:hover .cp-step-num {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 8px rgba(6, 141, 157, 0.15), 0 0 40px rgba(6, 141, 157, 0.3);
    transform: scale(1.08);
}

.cp-step-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.cp-step-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ============ REGISTRATION FORM ============ */
.cp-registration {
    padding: 120px 0;
    background: var(--white);
}

.cp-reg-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cp-reg-header {
    text-align: center;
    margin-bottom: 48px;
}

.cp-reg-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.cp-reg-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

.cp-reg-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.cp-form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.cp-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cp-form-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cp-form-section h3 i {
    color: var(--primary);
    font-size: 0.9rem;
}

.cp-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.cp-form-row.three {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

.cp-form-group {
    flex: 1;
    margin-bottom: 0;
}

.cp-form-group.full {
    flex: 0 0 100%;
    margin-bottom: 16px;
}

.cp-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.cp-form-group input,
.cp-form-group select,
.cp-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-900);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.cp-form-group input:focus,
.cp-form-group select:focus,
.cp-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 141, 157, 0.1);
}

.cp-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.cp-checkbox {
    margin-bottom: 12px;
}

.cp-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
}

.cp-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.cp-checkbox a {
    color: var(--primary);
    font-weight: 500;
}

.cp-checkbox a:hover {
    text-decoration: underline;
}

.cp-form-submit {
    text-align: center;
    margin-top: 32px;
}

.cp-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 141, 157, 0.35);
}

.cp-submit-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 12px;
}

/* ============ CTA ============ */
.cp-cta {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cp-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 141, 157, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cp-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cp-cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cp-cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cp-contact-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.cp-contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cp-contact-btn i {
    color: var(--primary);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .cp-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .cp-hero-content {
        align-items: center;
    }

    .cp-hero-desc {
        margin: 0 auto;
    }

    .cp-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cp-stat-card {
        min-width: 220px;
    }

    .cp-hero-actions {
        justify-content: center;
    }

    .cp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-steps {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .cp-steps::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
    }

    .cp-step {
        max-width: 400px;
    }

    .cp-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-dash-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-browser-content .cp-dash-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .cp-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .cp-hero-title {
        font-size: 2.2rem;
    }

    .cp-hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cp-stat-card {
        width: 100%;
        max-width: 340px;
        min-width: 0;
    }

    .cp-hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cp-btn-primary, .cp-btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .cp-preview,
    .cp-benefits,
    .cp-process,
    .cp-registration {
        padding: 80px 0;
    }

    .cp-dash-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cp-dash-cards {
        grid-template-columns: 1fr;
    }

    .cp-dash-features {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cp-reg-form {
        padding: 28px 20px;
    }

    .cp-form-row,
    .cp-form-row.three {
        flex-direction: column;
        display: flex;
        gap: 0;
    }

    .cp-form-group {
        margin-bottom: 16px;
    }

    .cp-form-group.full {
        flex: none;
    }
}

@media (max-width: 480px) {
    .cp-hero-title {
        font-size: 1.8rem;
    }

    .cp-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cp-stat-card {
        max-width: 300px;
        padding: 12px 14px;
    }

    .cp-stat-value {
        font-size: 1.15rem;
    }

    .cp-phone {
        width: 240px;
        border-radius: 38px;
    }

    .cp-app-screen {
        min-height: 370px;
    }

    .cp-dash-stats {
        grid-template-columns: 1fr;
    }

    .cp-dash-features {
        grid-template-columns: 1fr;
    }

    .cp-step-num {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
}
